/* ============================================================
   BunnyOrder — Landing Page Stylesheet
   Color: #E8604A (Terracotta Coral)
   ============================================================ */

/* --- Reset & Variables ------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand */
  --coral:       #E8604A;
  --coral-light: #F07B62;
  --coral-dark:  #D14E3A;
  --coral-100:   #fef2f0;
  --coral-200:   #fcd5cd;
  --coral-50:    rgba(232, 96, 74, 0.06);

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  /* Accent */
  --blue:        #3b82f6;
  --green:       #22c55e;
  --amber:       #f59e0b;
  --purple:      #8b5cf6;

  /* Typography */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Spacing */
  --section-py: 7rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.12);
  --shadow-coral: 0 8px 30px rgba(232, 96, 74, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 300ms;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Container ------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* --- Utility ---------------------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--coral-100);
  color: var(--coral);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Scroll animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.nav-logo img {
  height: 2.25rem;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
  transition: width var(--duration) var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--coral);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-coral);
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(232, 96, 74, 0.35);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--coral-100) 0%, var(--white) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 96, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 123, 98, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--white);
  border: 1px solid var(--coral-200);
  color: var(--coral);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 96, 74, 0.35);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration) var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-50);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Desktop hero mockup: 3D perspective wrapper */
.hero-desktop-only {
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
}

.device-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}

.hero-desktop-only .device-frame {
  border-radius: 0;
  max-width: 100%;
}

.hero-desktop-only {
  max-width: 480px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
}

.hero-desktop-only:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.device-dot:nth-child(1) { background: #ff5f57; }
.device-dot:nth-child(2) { background: #ffbd2e; }
.device-dot:nth-child(3) { background: #28c840; }

.device-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--gray-400);
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  margin-left: 1rem;
}

.device-screen {
  padding: 1.5rem;
  min-height: 340px;
}

/* App mockup: Sidebar + content */
.mock-app {
  display: flex;
  gap: 0;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.mock-sidebar {
  width: 110px;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  padding: 0.75rem 0.5rem;
  flex-shrink: 0;
}

.mock-sidebar-header {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--coral);
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.55rem;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
  transition: all 0.2s;
}

.mock-sidebar-item.active-item {
  background: rgba(232, 96, 74, 0.08);
  color: var(--coral);
  font-weight: 600;
}

.mock-sidebar-item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.mock-main {
  flex: 1;
  background: var(--white);
  padding: 0.75rem;
  overflow: hidden;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.mock-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
}

.mock-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.mock-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.625rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.mock-card-text {
  flex: 1;
  min-width: 0;
}

.mock-card-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-800);
}

.mock-card-sub {
  font-size: 0.5rem;
  color: var(--gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-badge {
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  font-size: 0.45rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Floating elements around device */
.float-element {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  z-index: 5;
  border: 1px solid var(--gray-100);
}

.float-1 {
  top: 10%;
  right: -20px;
  color: var(--green);
  animation-delay: 0s;
}

.float-2 {
  bottom: 20%;
  left: -30px;
  color: var(--coral);
  animation-delay: 1.5s;
}

.float-3 {
  bottom: 5%;
  right: 10%;
  color: var(--blue);
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   TRUST BANNER
   ============================================================ */
.trust-banner {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-200);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--coral-100);
  color: var(--coral);
  transition: all var(--duration) var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   PRODUCT SHOWCASE (CSS Screens)
   ============================================================ */
.showcase {
  padding: var(--section-py) 0;
  background: var(--white);
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-text {
  max-width: 480px;
}

.showcase-text .section-badge {
  margin-bottom: 1rem;
}

.showcase-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.showcase-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.showcase-list li svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Screen mockup for showcase */
.screen-frame {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.screen-dot:nth-child(1) { background: #ff5f57; }
.screen-dot:nth-child(2) { background: #ffbd2e; }
.screen-dot:nth-child(3) { background: #28c840; }

.screen-content {
  padding: 1.25rem;
  background: var(--gray-50);
}

/* Login screen mockup */
.mock-login {
  max-width: 280px;
  margin: 1rem auto;
  text-align: center;
}

.mock-login-logo {
  width: 56px;
  height: auto;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.mock-login-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.mock-login-sub {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.mock-login-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.mock-login-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  text-align: left;
}

.mock-login-card .sub {
  font-size: 0.6rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
  text-align: left;
}

.mock-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  background: var(--white);
  text-align: left;
}

.mock-submit {
  width: 100%;
  padding: 0.5rem;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.25rem;
  text-align: center;
}

/* Order form mockup */
.mock-order-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mock-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.mock-order-header h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
}

.mock-order-header .status {
  font-size: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}

.mock-product-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.6rem;
}

.mock-product-row:last-child {
  border-bottom: none;
}

.mock-product-name {
  flex: 1;
  font-weight: 500;
  color: var(--gray-700);
}

.mock-product-qty {
  padding: 0.2rem 0.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--gray-600);
}

.mock-product-unit {
  color: var(--gray-400);
  font-size: 0.55rem;
}

.mock-order-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.mock-order-footer button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-features li svg.check {
  color: var(--coral);
}

.pricing-features li svg.cross {
  color: var(--gray-300);
}

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
}

.pricing-btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.pricing-btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 96, 74, 0.35);
}

.pricing-btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}

.pricing-btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-50);
}

/* Enterprise / Chaîne banner */
.pricing-enterprise {
  margin-top: 2rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.pricing-enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.pricing-enterprise:hover {
  border-color: var(--coral-200);
  box-shadow: var(--shadow-lg);
}

.pricing-enterprise-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pricing-enterprise-text {
  flex: 1;
}

.pricing-enterprise-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.pricing-enterprise-text p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.pricing-enterprise .pricing-btn {
  flex-shrink: 0;
  width: auto;
}

@media (max-width: 768px) {
  .pricing-enterprise-content {
    flex-direction: column;
    text-align: center;
  }

  .pricing-enterprise .pricing-btn {
    width: 100%;
  }
}

/* ============================================================
   BILLING TOGGLE
   ============================================================ */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.billing-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
  cursor: pointer;
}

.billing-label.active {
  color: var(--gray-900);
}

.billing-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  padding: 3px;
  transition: background var(--duration) var(--ease);
  cursor: pointer;
}

.billing-switch.active {
  background: var(--coral);
}

.billing-switch-thumb {
  display: block;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease);
}

.billing-switch.active .billing-switch-thumb {
  transform: translateX(24px);
}

.billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.2);
  animation: pulse-glow-green 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Pricing no-card badge */
.pricing-no-card {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Annual note */
.pricing-annual-note {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: -1.25rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi-calculator {
  padding: var(--section-py) 0;
  background: var(--white);
}

.roi-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.roi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--amber));
}

.roi-inputs {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.roi-input-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.roi-input-group label {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  min-width: 0;
}

.roi-slider {
  flex: 1.5;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  transition: background var(--duration) var(--ease);
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 96, 74, 0.3);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(232, 96, 74, 0.4);
}

.roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(232, 96, 74, 0.3);
}

.roi-input-value {
  min-width: 48px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--coral);
  background: var(--coral-100);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.roi-result-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}

.roi-result-item:last-child {
  border-right: none;
}

.roi-result-item.highlight {
  background: linear-gradient(135deg, rgba(232, 96, 74, 0.04), rgba(232, 96, 74, 0.08));
}

.roi-result-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.roi-result-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.375rem;
  transition: all 0.3s var(--ease);
}

.roi-result-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.roi-footer {
  text-align: center;
  padding: 1.75rem 2.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.roi-footer p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
}

.roi-footer strong {
  color: var(--coral);
  font-weight: 800;
}

/* ============================================================
   WHY BUNNYORDER (vs free)
   ============================================================ */
.why-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card-them {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
}

.why-card-us {
  background: var(--white);
  border: 1.5px solid var(--coral);
  box-shadow: var(--shadow-coral);
}

.why-card-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.why-card-header-them h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-500);
}

.why-card-header-us h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--coral);
}

.why-icon {
  font-size: 1.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-negative {
  color: var(--gray-500);
}

.why-negative svg {
  color: #ef4444;
}

.why-positive {
  color: var(--gray-700);
  font-weight: 500;
}

.why-positive svg {
  color: var(--coral);
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .roi-input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .roi-results {
    grid-template-columns: 1fr;
  }

  .roi-result-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
  }

  .roi-result-item:last-child {
    border-bottom: none;
  }

  .roi-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-200);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  fill: var(--amber);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--coral-200);
}

.faq-item.open {
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(232, 96, 74, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.faq-item.open .faq-question {
  color: var(--coral);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--coral);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-white svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration) var(--ease);
}

.btn-white:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-400);
  padding: 0.3rem 0;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--duration) var(--ease);
}

.footer-socials a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.5rem;
  transition: color var(--duration) var(--ease);
}

.mobile-menu a:hover {
  color: var(--coral);
}

/* Hero desktop/mobile mockup toggle */
.hero-mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .hero-desktop-only {
    display: none;
  }
  .hero-mobile-only {
    display: block;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-item.reverse {
    direction: ltr;
  }

  .showcase-text {
    max-width: 100%;
    text-align: center;
  }

  .showcase-list {
    align-items: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.popular {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-element {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
    overflow: hidden;
  }

  .hero-visual {
    overflow: hidden;
    max-width: 100%;
  }

  .device-frame {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-number {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    grid-column: span 1;
    max-width: 100%;
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .device-frame {
    transform: none;
  }

  .device-frame:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 96, 74, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(232, 96, 74, 0); }
}

.pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ============================================================
   BUNNY MASCOTS
   ============================================================ */

/* Hero bunny — floating bottom-left of hero visual */
.hero-bunny {
  position: absolute;
  bottom: -30px;
  left: -60px;
  width: 160px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  animation: bunny-bob 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bunny-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* FAQ bunny — absolute positioned near the header text */
.faq-header-wrap {
  position: relative;
}

.faq-bunny {
  position: absolute;
  right: 20px;
  top: -10px;
  width: 160px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.1));
  pointer-events: none;
  animation: bunny-think 8s ease-in-out infinite;
}

@keyframes bunny-think {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
}

/* CTA bunny — centered above heading */
.cta-bunny {
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.15));
  animation: bunny-celebrate 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bunny-celebrate {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-6px); }
}

/* Hide bunnies on small screens to keep it clean */
@media (max-width: 768px) {
  .hero-bunny {
    width: 110px;
    left: -30px;
    bottom: -15px;
  }

  .faq-bunny {
    width: 90px;
    right: -10px;
    top: -10px;
  }

  .cta-bunny {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .hero-bunny {
    display: none;
  }
}
