/* ============================================================
   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;
  margin-bottom: 2rem;
}

/* Hero social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -8px;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-social-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.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 */
.hero-desktop-only {
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  max-width: 520px;
  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);
}

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

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

.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: 0;
  min-height: 340px;
}

/* ============================================================
   MOCK APP — SHARED
   ============================================================ */
.mock-app {
  display: flex;
  gap: 0;
  height: 340px;
  overflow: hidden;
}

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

.mock-sidebar-header {
  font-size: 0.6rem;
  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.4rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.55rem;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
  transition: all 0.2s;
  position: relative;
}

.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-notif-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 0.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-sidebar-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: var(--coral);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.5rem;
  font-weight: 600;
}

.mock-sidebar-cta svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

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

/* Dashboard hero greeting */
.mock-dashboard-hero {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.mock-dashboard-hero::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.mock-greeting-emoji { font-size: 1rem; }

.mock-greeting-text { position: relative; z-index: 1; }

.mock-greeting-sub {
  font-size: 0.45rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.mock-greeting-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.mock-greeting-info {
  font-size: 0.4rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

/* Mock section headers */
.mock-section-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

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

.mock-section-count {
  font-size: 0.4rem;
  font-weight: 600;
  background: var(--gray-200);
  color: var(--gray-500);
  padding: 0.1rem 0.3rem;
  border-radius: var(--radius-full);
}

.mock-section-unread {
  font-size: 0.4rem;
  font-weight: 600;
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  padding: 0.1rem 0.3rem;
  border-radius: var(--radius-full);
}

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

.mock-title {
  font-size: 0.85rem;
  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.5rem;
  margin-bottom: 0.35rem;
  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.45rem;
  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;
}

/* Mock notification card in dashboard */
.mock-notif-card {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 0.3rem;
}

.mock-notif-card.unread {
  border-left: 2px solid #10b981;
  background: rgba(16,185,129,0.03);
}

.mock-notif-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  flex-shrink: 0;
}

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

.mock-notif-title {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

.mock-notif-sub {
  font-size: 0.4rem;
  color: var(--gray-400);
}

.mock-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

/* Supplier notification badge */
.mock-supplier-notif {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 0.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Orders page mockup */
.mock-orders-page, .mock-suppliers-page {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mock-suppliers-page .mock-header,
.mock-orders-page .mock-header {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.mock-suppliers-page .mock-card {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin-bottom: 0;
}

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

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

.mock-order-info { flex: 1; min-width: 0; }

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

.mock-order-supplier {
  font-size: 0.45rem;
  color: var(--gray-400);
}

.mock-email-tracker {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.mock-email-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mock-email-dot.delivered { background: var(--green); }
.mock-email-dot.read { background: var(--blue); }
.mock-email-dot.clicked { background: var(--purple); }

.mock-email-label {
  font-size: 0.4rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Floating elements */
.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; }

@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;
}

/* ============================================================
   HOW IT WORKS (Steps)
   ============================================================ */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  max-width: 280px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: white;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-coral);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--coral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--duration) var(--ease);
}

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

.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
  transition: color var(--duration) var(--ease);
}

.step-card:hover .step-icon svg { color: white; }

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

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

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  width: 48px;
  flex-shrink: 0;
  color: var(--gray-300);
}

.step-connector svg { width: 48px; height: 24px; }

/* ============================================================
   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
   ============================================================ */
.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 */
.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: 0.75rem;
  background: var(--gray-50);
}

/* ============================================================
   PWA / MOBILE SECTION
   ============================================================ */
.pwa-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.pwa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pwa-text .section-title { text-align: left; }
.pwa-text .section-subtitle { text-align: left; margin-bottom: 2rem; }

.pwa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pwa-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pwa-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pwa-feature strong {
  font-size: 0.9rem;
  color: var(--gray-800);
  display: block;
  margin-bottom: 0.15rem;
}

.pwa-feature span {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.pwa-visual {
  display: flex;
  justify-content: center;
}

/* Phone mockup */
.phone-frame {
  width: 260px;
  background: var(--gray-900);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(0,0,0,0.1);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--gray-900);
  border-radius: 0 0 1rem 1rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: -0.75rem;
}

.phone-screen {
  background: var(--white);
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

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

.mock-mobile-restaurant {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
}

.mock-mobile-icons {
  display: flex;
  gap: 0.75rem;
  color: var(--gray-400);
}

.mock-mobile-greeting {
  padding: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  border-radius: 0 0 1rem 1rem;
}

.mock-mobile-greeting span {
  font-size: 0.65rem;
  opacity: 0.8;
  display: block;
}

.mock-mobile-greeting strong {
  font-size: 1.25rem;
  font-weight: 800;
}

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

.mock-mobile-card-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

.mock-mobile-card-text strong {
  font-size: 0.7rem;
  color: var(--gray-800);
  display: block;
}

.mock-mobile-card-text span {
  font-size: 0.6rem;
  color: var(--gray-400);
}

.mock-mobile-badge {
  font-size: 0.5rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.mock-mobile-badge.green {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
}

.mock-mobile-badge.amber {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
}

.mock-mobile-bottomnav {
  margin-top: auto;
  display: flex;
  border-top: 1px solid var(--gray-100);
  padding: 0.5rem 0;
}

.mock-mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--gray-400);
}

.mock-mobile-nav-item.active { color: var(--coral); }

.mock-mobile-nav-item span {
  font-size: 0.5rem;
  font-weight: 500;
}

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

.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;
  transition: transform 0.2s var(--ease);
}

.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 */
.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;
}

/* ============================================================
   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 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.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(--gray-50);
}

.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
   ============================================================ */
.why-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.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); }

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

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

.testimonial-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;
}

.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(--white);
}

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

.faq-item {
  background: var(--gray-50);
  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); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-coral);
}

/* ============================================================
   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; }
}

/* ============================================================
   BUNNY MASCOTS
   ============================================================ */
.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-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 {
  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); }
}

/* ============================================================
   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; }

/* ============================================================
   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; }
  .hero-social-proof { 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; }

  .pwa-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pwa-text .section-title, .pwa-text .section-subtitle { text-align: center; }
  .pwa-visual { order: -1; }

  .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; }
  .steps-grid { flex-direction: column; align-items: center; gap: 1rem; }
  .step-connector { transform: rotate(90deg); padding-top: 0; width: auto; }
}

@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); }
  .pricing-enterprise-content { flex-direction: column; text-align: center; }
  .pricing-enterprise .pricing-btn { width: 100%; }

  .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; }

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

  .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; }
  .billing-toggle { flex-wrap: wrap; }

  /* Show sticky mobile CTA */
  .sticky-mobile-cta { display: block; }

  .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 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; }
  .hero-bunny { display: none; }
  .phone-frame { width: 220px; }
}
