/* OcosinGO — Static Site Styles */
/* Design tokens ported from DeliveryAppTheme */

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --green: #0E3B21;
  --orange: #FF7A00;
  --orange-dark: #E06800;
  --dark: #111827;
  --muted: #6B7280;
  --bg: #FAFAF8;
  --white: #fff;
  --border: #E5E7EB;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-brand: 'Lobster', cursive;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ─── Layout ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
@media (min-width: 900px) { .container { padding: 0 100px; } }

.section { padding: 72px 0; position: relative; }
.section--white {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 24, 39, 0.05) 1px, transparent 1.5px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at center, #000 20%, transparent 85%);
          mask-image: radial-gradient(ellipse 60% 50% at center, #000 20%, transparent 85%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.section--white > * { position: relative; z-index: 1; }
.section--green { background: var(--green); }
.section--dark { background: var(--dark); }

@media (min-width: 900px) {
  .section { padding: 96px 0; }
}

.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* ─── Typography ────────────────────────────────────────── */
.heading {
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.heading--xl { font-size: 32px; }
.heading--lg { font-size: 28px; }
.heading--md { font-size: 24px; }
.heading--white { color: var(--white); }

.body-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.body-text--sm { font-size: 14px; }
.body-text--lg { font-size: 17px; }
.body-text--white { color: rgba(255,255,255,0.7); }

.brand-name {
  font-family: var(--font-brand);
  color: var(--green);
}

@media (min-width: 900px) {
  .heading--xl { font-size: 48px; }
  .heading--lg { font-size: 32px; }
  .heading--md { font-size: 30px; }
  .body-text--lg { font-size: 17px; }
}

/* ─── Navbar ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar.is-scrolled {
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06), 0 4px 16px rgba(17, 24, 39, 0.04);
}
@media (min-width: 900px) { .navbar { padding: 14px 100px; } }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo img { height: 32px; width: 32px; }
.navbar__logo span { font-family: var(--font-brand); font-size: 20px; color: var(--green); }

.navbar__spacer { flex: 1; }

.navbar__link {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.navbar__link:hover { color: var(--dark); }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.navbar__cta:hover { background: var(--orange); color: var(--white); }
.navbar__cta .icon { font-size: 18px; }
.navbar__cta-text { display: none; }
@media (min-width: 900px) { .navbar__cta-text { display: inline; } }

.navbar__badge {
  padding: 4px 10px;
  background: rgba(255,122,0,0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #FAFAF8 18%, #FAFAF8 55%, #ffffff 100%);
}

/* ── Decorative background layer ─────────────────────────── */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Fade the whole decorative layer to invisible at top + bottom edges */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 140px, #000 calc(100% - 100px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 140px, #000 calc(100% - 100px), transparent 100%);
}
/* Subtle dot grid with radial mask so it fades at edges */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 24, 39, 0.07) 1px, transparent 1.6px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, #000 30%, transparent 90%);
  mask-image: radial-gradient(ellipse 70% 60% at center, #000 30%, transparent 90%);
  opacity: 0.7;
}
/* Animated aurora-style glow blobs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero__glow--orange {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -100px;
  background: var(--orange);
  opacity: 0.22;
  animation: heroGlowDrift 14s ease-in-out infinite;
}
.hero__glow--green {
  width: 460px;
  height: 460px;
  bottom: -140px;
  left: -120px;
  background: var(--green);
  opacity: 0.12;
  animation: heroGlowDrift 16s ease-in-out infinite reverse;
}
/* Spotlight glow behind the phones */
.hero__spotlight {
  position: absolute;
  width: 720px;
  height: 720px;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

/* Inner content sits above decoration */
.hero__inner { position: relative; z-index: 1; }

/* ── Pill chip in eyebrow ────────────────────────────────── */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 122, 0, 0.20);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
}
.hero__pill strong {
  font-weight: 700;
  color: var(--orange);
}
.hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}

/* ── Gradient accent on headline ─────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Trust badge under CTAs ──────────────────────────────── */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.hero__trust strong { color: var(--dark); }
.hero__trust-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ── Floating notification cards ─────────────────────────── */
.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.10),
    0 4px 12px rgba(17, 24, 39, 0.05),
    inset 0 0 0 1px rgba(17, 24, 39, 0.04);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}
.hero__card-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #ffffff;
  flex-shrink: 0;
}
.hero__card-icon--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.hero__card-icon--green {
  background: linear-gradient(135deg, #22C55E, #16A34A);
}
.hero__card-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.hero__card-text small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.hero__card--delivery {
  top: 8%;
  left: -6%;
  animation: cardFloatA 7s ease-in-out infinite;
}
.hero__card--order {
  bottom: 12%;
  right: -4%;
  animation: cardFloatB 8s ease-in-out infinite;
}
@keyframes cardFloatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes cardFloatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(8px) rotate(2deg); }
}
.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 12px;
}
.hero__text {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.hero__eyebrow strong {
  font-weight: 700;
  color: var(--orange);
}
.hero__text h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 7.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero__text p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.hero__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.store-link {
  display: inline-block;
  transition: transform 0.2s;
  line-height: 0;
}
.store-link img {
  display: block;
  height: 46px;
  width: 154px;
}
.store-link:hover { transform: scale(1.04); }

/* Phone showcase — fills available viewport space on mobile */
.hero__phones {
  position: relative;
  width: 100%;
  max-width: 520px;
  align-self: stretch;
  justify-self: center;
  min-height: 280px;
  margin: 0 auto;
}
.hero__phone {
  position: absolute;
  height: 100%;
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(17, 24, 39, 0.10))
          drop-shadow(0 4px 10px rgba(17, 24, 39, 0.05));
}
.hero__phone--front {
  left: 4%;
  bottom: 0;
  height: 100%;
  transform: rotate(-8deg);
  z-index: 2;
}
.hero__phone--back {
  right: 4%;
  top: 0;
  height: 94%;
  transform: rotate(8deg);
  z-index: 1;
  opacity: 0.97;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 56px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero__text {
    text-align: left;
    margin: 0;
    max-width: none;
  }
  .hero__text h1 {
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero__text p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .hero__eyebrow { font-size: 16px; margin-bottom: 20px; }
  .hero__badges { justify-content: flex-start; }
  .store-link img { height: 54px; width: 180px; }

  .hero__phones {
    max-width: 620px;
    height: min(620px, calc(100dvh - 180px));
    min-height: 420px;
    margin: 0 0 0 auto;
  }
  .hero__phone--front {
    left: 4%;
    height: 94%;
  }
  .hero__phone--back {
    right: 4%;
    height: 90%;
  }
}

@media (min-width: 1280px) {
  .hero__phones {
    max-width: 700px;
    height: min(680px, calc(100dvh - 180px));
  }
}

/* Short laptops — guarantee phones don't crowd the navbar */
@media (min-width: 900px) and (max-height: 800px) {
  .hero__phones { height: min(540px, calc(100dvh - 160px)); }
  .hero__text h1 { font-size: clamp(34px, 3.6vw, 44px); }
  .hero__text p { margin-bottom: 24px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero__inner { gap: 16px; }
  .hero__text p { margin-bottom: 14px; }
  .hero__phones { max-width: 360px; min-height: 240px; }
}

/* ── Decorative tweaks per breakpoint ─────────────────────── */
@media (max-width: 899px) {
  /* Mobile: cards smaller, pinned to phone showcase edges */
  .hero__card { padding: 8px 12px 8px 8px; border-radius: 12px; }
  .hero__card-icon { width: 32px; height: 32px; border-radius: 9px; }
  .hero__card-text strong { font-size: 12px; }
  .hero__card-text small { font-size: 10px; }
  .hero__card--delivery { top: 6%; left: 0%; }
  .hero__card--order { bottom: 8%; right: 0%; }

  /* Spotlight centered behind phones on mobile */
  .hero__spotlight {
    width: 520px;
    height: 520px;
    top: 65%;
    left: 50%;
  }
  .hero__glow--orange { width: 360px; height: 360px; top: -80px; right: -80px; }
  .hero__glow--green { width: 320px; height: 320px; bottom: -100px; left: -80px; }

  /* Trust badge stays centered on mobile */
  .hero__trust { font-size: 12px; }
}

@media (min-width: 900px) {
  /* Desktop: trust aligns left under CTAs */
  .hero__trust { justify-content: flex-start; margin-top: 24px; }

  /* Desktop card positions — pinned around the showcase */
  .hero__card--delivery { top: 4%; left: -10%; padding: 12px 16px 12px 10px; }
  .hero__card--order { bottom: 12%; right: -8%; padding: 12px 16px 12px 10px; }
  .hero__card-icon { width: 40px; height: 40px; }
  .hero__card-text strong { font-size: 14px; }
  .hero__card-text small { font-size: 12px; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__card, .hero__pill-dot { animation: none !important; }
}

/* ─── Steps ─────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.steps--row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (min-width: 900px) {
  .steps--row { flex-direction: row; gap: 24px; align-items: stretch; }
  /* Dotted connector between cards (decorative only) */
  .steps--row::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 18%;
    right: 18%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(255,122,0,0.4) 0 6px, transparent 6px 14px);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    z-index: 0;
    pointer-events: none;
  }
}

.step {
  text-align: center;
  padding: 32px 24px;
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 8px 24px rgba(17, 24, 39, 0.04);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 16px 40px rgba(17, 24, 39, 0.08);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.10);
  position: relative;
}
.step__num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 122, 0, 0.18);
  opacity: 0;
}
.step:hover .step__num::before { opacity: 1; }
.step__num--orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.step__num--green { background: linear-gradient(135deg, #1A5C35, var(--green)); box-shadow: 0 8px 20px rgba(14, 59, 33, 0.15); }
.step__num--dark-orange { background: linear-gradient(135deg, var(--orange-dark), #B85500); }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── Restaurant CTA Card ──────────────────────────────── */
.cta-card {
  position: relative;
  background:
    radial-gradient(circle at 90% 25%, rgba(255, 122, 0, 0.22), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(34, 197, 94, 0.10), transparent 55%),
    linear-gradient(135deg, #134026 0%, var(--green) 55%, #062012 100%);
  border-radius: 28px;
  padding: 32px 28px;
  overflow: hidden;
  box-shadow:
    0 32px 70px rgba(14, 59, 33, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
/* Subtle noise/dot pattern overlay */
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.cta-card > * { position: relative; z-index: 1; }

/* Left content column */
.cta-card__content { text-align: center; }
.cta-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 122, 0, 0.18);
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.30);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-card__eyebrow svg { color: #FFC078; }

.cta-card h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cta-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .brand-name {
  color: var(--orange);
  font-weight: 700;
  font-family: var(--font-brand);
  font-size: 1.15em;
}

/* Benefits list with check icons */
.cta-card__benefits {
  list-style: none;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.cta-card__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
}
.benefit-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.30);
}

/* CTA button with trailing arrow */
.cta-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.cta-card__btn svg { transition: transform 0.25s ease; }
.cta-card__btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.35);
}
.cta-card__btn:hover svg { transform: translateX(4px); }

/* ─── Right visual column ─────────────────────────────── */
.cta-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-card__showcase {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.9;
  min-height: 220px;
}
@media (min-width: 900px) {
  .cta-card__showcase { min-height: 320px; }
}
/* Soft glow halo behind logo */
.cta-card__halo {
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.42) 0%, rgba(255, 122, 0, 0.15) 35%, transparent 65%);
  filter: blur(20px);
  border-radius: 50%;
  z-index: 1;
}
/* Decorative concentric rings */
.cta-card__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.10);
  pointer-events: none;
  z-index: 1;
}
.cta-card__ring--1 {
  width: 70%;
  height: 70%;
  animation: ringSpin 60s linear infinite;
}
.cta-card__ring--2 {
  width: 90%;
  height: 90%;
  border-style: dotted;
  animation: ringSpin 90s linear infinite reverse;
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* Logo */
.cta-card__logo {
  position: relative;
  width: 55%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.30));
  z-index: 3;
  animation: floatLogo 7s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

/* Stat chips floating around the logo */
.cta-card__stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 14px;
  color: white;
  z-index: 4;
  min-width: 90px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  will-change: transform;
}
.cta-card__stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.cta-card__stat-unit {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 199, 120, 0.85);
  letter-spacing: 0.04em;
}
.cta-card__stat small {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cta-card__stat--1 {
  top: 4%;
  left: -2%;
  animation: ctaFloatA 7s ease-in-out infinite;
}
.cta-card__stat--2 {
  top: 12%;
  right: -4%;
  animation: ctaFloatB 8s ease-in-out infinite;
}
.cta-card__stat--3 {
  bottom: 6%;
  left: 10%;
  animation: ctaFloatA 9s ease-in-out infinite 1s;
}
@keyframes ctaFloatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes ctaFloatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(8px) rotate(2deg); }
}

/* Mobile: showcase on top, 3 stats in a clean row BELOW it (no overlap) */
@media (max-width: 899px) {
  .cta-card__visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px 8px;
    align-items: stretch;
  }
  .cta-card__showcase {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 1 / 0.7;
    min-height: 200px;
  }
  /* Each stat sits in its own column on row 2 */
  .cta-card__stat {
    position: static;
    animation: none;
    transform: none;
    grid-row: 2;
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  .cta-card__stat--1 { grid-column: 1; }
  .cta-card__stat--2 { grid-column: 2; }
  .cta-card__stat--3 { grid-column: 3; }
  .cta-card__stat strong { font-size: 17px; justify-content: center; }
  .cta-card__stat small { font-size: 9.5px; letter-spacing: 0.04em; text-align: center; }
}

@media (min-width: 900px) {
  .cta-card {
    grid-template-columns: 1.25fr 1fr;
    padding: 56px 64px;
    gap: 56px;
  }
  .cta-card__content { text-align: left; }
  .cta-card h2 { font-size: 36px; }
  .cta-card p { margin-left: 0; margin-right: 0; }
  .cta-card__benefits { margin-left: 0; margin-right: 0; }
  .cta-card__visual { min-height: 360px; }
  .cta-card__logo { max-width: 260px; }
  .cta-card__stat { padding: 12px 18px; min-width: 110px; }
  .cta-card__stat strong { font-size: 26px; }
  .cta-card__stat small { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-card__ring, .cta-card__logo, .cta-card__stat { animation: none !important; }
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn--white { background: var(--white); color: var(--green); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--whatsapp { background: rgba(37,211,102,0.08); color: var(--whatsapp-dark); }
.btn--email { background: rgba(255,122,0,0.08); color: var(--orange); }
.btn--lg { padding: 18px 32px; font-size: 17px; border-radius: 14px; }
.btn .icon { font-size: 20px; }

/* ─── Coverage Section ──────────────────────────────────── */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.coverage__content { text-align: center; }
.coverage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.10);
  color: #15803D;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.coverage__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.20);
  animation: pulseDot 2s ease-in-out infinite;
}
.coverage__title {
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.coverage__lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats grid 2x2 */
.coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.coverage-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.03),
    0 8px 22px rgba(17, 24, 39, 0.04);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.coverage-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.25);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.03),
    0 16px 32px rgba(255, 122, 0, 0.10);
}
.coverage-stat__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.04));
  color: var(--orange);
  flex-shrink: 0;
}
.coverage-stat__data { display: flex; flex-direction: column; min-width: 0; }
.coverage-stat__data strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.coverage-stat__plus { color: var(--orange); font-size: 0.8em; font-weight: 800; }
.coverage-stat__plus--unit { font-size: 0.55em; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.coverage-stat__data small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Map visual column */
.coverage__visual {
  position: relative;
}
.coverage__map-glow {
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(circle at center, rgba(255, 122, 0, 0.14), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.map-wrap {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(17, 24, 39, 0.10),
    inset 0 0 0 1px rgba(17, 24, 39, 0.05);
  background: #ffffff;
}
.map-wrap #map { height: 320px; }
@media (min-width: 900px) { .map-wrap #map { height: 460px; } }

.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 9px 16px 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 6px 16px rgba(17, 24, 39, 0.10),
    0 1px 2px rgba(17, 24, 39, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.map-label__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.20);
  animation: pulseDot 2s ease-in-out infinite;
}

/* Floating badge top-right of map */
.map-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 11px;
  background: rgba(17, 24, 39, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 100px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.18);
}
.map-badge svg { color: var(--orange); }

@media (min-width: 900px) {
  .coverage__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px;
  }
  .coverage__content { text-align: left; }
  .coverage__lead { margin-left: 0; margin-right: 0; }
  .coverage__stats { margin-left: 0; margin-right: 0; }
  .coverage-stat { padding: 16px; }
  .coverage-stat__icon { width: 48px; height: 48px; }
  .coverage-stat__data strong { font-size: 22px; }
  .coverage-stat__data small { font-size: 13px; }
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.faq__intro { text-align: center; max-width: 540px; margin: 0 auto; }
.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 122, 0, 0.10);
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.20);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faq__title { letter-spacing: -0.015em; margin-bottom: 14px; }
.faq__lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.faq__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--whatsapp-dark);
  border: 1px solid rgba(34, 197, 94, 0.20);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.faq__link:hover {
  background: var(--whatsapp);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.30);
}

/* FAQ accordion list */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.03);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.faq-item:hover {
  border-color: rgba(255, 122, 0, 0.22);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
}
.faq-item[open] {
  border-color: rgba(255, 122, 0, 0.40);
  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.10);
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  text-align: left;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__num {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.30);
  letter-spacing: 0.06em;
  min-width: 24px;
  transition: color 0.25s;
}
.faq-item__q {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-item__chev {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.05);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.3s;
}
.faq-item__chev::before,
.faq-item__chev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.25s;
}
.faq-item__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item:hover .faq-item__chev { background: rgba(255, 122, 0, 0.12); }
.faq-item[open] .faq-item__num { color: var(--orange); }
.faq-item[open] .faq-item__q { color: var(--orange); }
.faq-item[open] .faq-item__chev {
  background: var(--orange);
}
.faq-item[open] .faq-item__chev::before,
.faq-item[open] .faq-item__chev::after {
  background: #fff;
}
.faq-item[open] .faq-item__chev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq-item .faq-answer {
  padding: 0 22px 22px 62px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  text-align: left;
}

@media (min-width: 900px) {
  .faq__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
    gap: 64px;
  }
  .faq__intro {
    text-align: left;
    margin: 0;
    position: sticky;
    top: 88px;
  }
  .faq-item summary { padding: 22px 26px; }
  .faq-item__q { font-size: 16px; }
  .faq-item .faq-answer { padding: 0 26px 24px 66px; }
}

/* ─── Support Banner (Contact) ──────────────────────────── */
.support-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 40px 28px;
  background:
    radial-gradient(circle at 90% 30%, rgba(34, 197, 94, 0.20), transparent 55%),
    radial-gradient(circle at 8% 95%, rgba(255, 122, 0, 0.14), transparent 50%),
    linear-gradient(135deg, #0E3B21 0%, #082515 60%, #051A0E 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 32px 70px rgba(14, 59, 33, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Decorative background */
.support-banner__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.support-banner__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.support-banner__glow--green {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -100px;
  background: #22C55E;
  opacity: 0.18;
  animation: heroGlowDrift 14s ease-in-out infinite;
}
.support-banner__glow--orange {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -120px;
  background: var(--orange);
  opacity: 0.10;
  animation: heroGlowDrift 16s ease-in-out infinite reverse;
}
.support-banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  opacity: 0.55;
}

/* Content column */
.support-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.support-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #86EFAC;
  margin-bottom: 22px;
}
.support-banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.30);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.support-banner h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
.support-banner__accent {
  background: linear-gradient(135deg, var(--orange) 0%, #FFC078 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.support-banner__content p {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Action buttons */
.support-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.support-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.support-banner__btn--primary {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.40);
}
.support-banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(34, 197, 94, 0.50);
}
.support-banner__btn--primary .support-banner__btn-arrow {
  transition: transform 0.25s ease;
}
.support-banner__btn--primary:hover .support-banner__btn-arrow {
  transform: translateX(4px);
}
.support-banner__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.support-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Right column: chat preview */
.support-banner__visual {
  position: relative;
  z-index: 1;
}
.chat-frame {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 18px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.chat-frame__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.chat-frame__avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.35);
}
.chat-frame__avatar::after {
  /* Logo dome icon */
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 4c-.55 0-1 .45-1 1v1.05c-3.39.49-6 3.4-6 6.95v1c-.55 0-1 .45-1 1v1h16v-1c0-.55-.45-1-1-1v-1c0-3.55-2.61-6.46-6-6.95V5c0-.55-.45-1-1-1zM4 17v2h16v-2H4z'/></svg>") center/56% no-repeat;
}
.chat-frame__status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #22C55E;
  border: 2px solid #082515;
  border-radius: 50%;
  z-index: 1;
}
.chat-frame__info { flex: 1; min-width: 0; }
.chat-frame__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.chat-frame__info small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  font-weight: 500;
}
.chat-frame__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.20);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.chat-frame__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
}
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: bubbleIn 0.5s ease-out backwards;
}
.chat-bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-top-left-radius: 4px;
  animation-delay: 0.2s;
}
.chat-bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.35);
  animation-delay: 0.5s;
}
.chat-bubble--typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  animation-delay: 0.9s;
}
.chat-bubble--typing span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: typingBlink 1.4s ease-in-out infinite;
}
.chat-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBlink {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
  .support-banner {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 64px;
    gap: 56px;
  }
  .support-banner__content { text-align: left; }
  .support-banner__content p { margin-left: 0; margin-right: 0; }
  .support-banner__actions {
    flex-direction: row;
    align-items: center;
  }
  .support-banner__btn { padding: 16px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .support-banner__glow,
  .support-banner__pulse,
  .chat-frame__dot,
  .chat-bubble,
  .chat-bubble--typing span { animation: none !important; }
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--green);
  padding: 28px;
  text-align: center;
}
.footer__brand { font-family: var(--font-brand); font-size: 18px; color: var(--white); margin-bottom: 12px; }
.footer__links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,0.54); transition: color 0.2s; }
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__email { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.footer__email a { color: rgba(255,255,255,0.7); }
.footer__email a:hover { color: var(--white); }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.54); margin-bottom: 4px; }
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__admin { font-size: 11px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer__admin:hover { color: rgba(255,255,255,0.6); }

/* ─── Restaurants Page Specifics ────────────────────────── */
.hero--green {
  background: var(--green);
  padding: 48px 28px;
}
@media (min-width: 900px) { .hero--green { padding: 80px; } }
.hero--green h1 { color: var(--white); margin-bottom: 16px; }

.step-arrow {
  display: none;
  align-items: center;
  padding: 0 16px;
  color: rgba(107,114,128,0.3);
  font-size: 24px;
}
@media (min-width: 900px) { .step-arrow { display: flex; } }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; } }

.benefit-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #f3f4f6;
  padding: 20px;
}
.benefit-card__num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,122,0,0.2);
  margin-bottom: 8px;
}
.benefit-card__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.benefit-card__desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.pricing-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.pricing-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.pricing-row__icon--orange { background: rgba(255,122,0,0.1); color: var(--orange); }
.pricing-row__icon--green { background: rgba(34,197,94,0.1); color: #22C55E; }
.pricing-row__title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.pricing-row__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.example-box {
  background: rgba(14,59,33,0.05);
  border: 1px solid rgba(14,59,33,0.15);
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
}
.example-box__title { font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 16px; }
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.example-row__label { font-size: 14px; color: var(--dark); }
.example-row__value { font-size: 14px; font-weight: 600; }
.example-row__value--big { font-size: 22px; font-weight: 800; color: #22C55E; }
.example-row__value--muted { color: var(--muted); }
.example-highlight {
  background: rgba(34,197,94,0.08);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
}

.req-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.req-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,122,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 20px;
}
.req-item__title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.req-item__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) { .join-steps { flex-direction: row; justify-content: center; gap: 40px; } }

.join-step { width: 200px; text-align: center; }
.join-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 26px;
}
.join-step__icon--green { background: rgba(14,59,33,0.1); color: var(--green); }
.join-step__icon--orange { background: rgba(255,122,0,0.1); color: var(--orange); }
.join-step__icon--dark-orange { background: rgba(224,104,0,0.1); color: var(--orange-dark); }
.join-step__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.join-step__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cta-section { text-align: center; }
.cta-section h2 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.5; }
.cta-section__contact { margin-top: 24px; }
.cta-section__contact-label { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cta-section__contact-name { font-size: 13px; color: rgba(255,255,255,0.54); margin-bottom: 4px; }
.cta-section__contact-phone { font-size: 13px; color: rgba(255,255,255,0.54); }
@media (min-width: 900px) { .cta-section h2 { font-size: 32px; } }

.footer--dark {
  background: var(--dark);
  padding: 24px;
  text-align: center;
}
.footer--dark .footer__brand { font-family: var(--font-brand); font-size: 16px; color: var(--white); margin-bottom: 8px; }
.footer--dark .footer__tagline { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 8px; }
.footer--dark .footer__url { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ─── Legal Page ────────────────────────────────────────── */
.legal { padding: 40px 28px; }
.legal h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.legal__date { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal__content {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.3s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
}
.animate-in--d1 { animation-delay: 0.05s; }
.animate-in--d2 { animation-delay: 0.1s; }
.animate-in--d3 { animation-delay: 0.15s; }
.animate-in--d4 { animation-delay: 0.2s; }

/* ─── Utility ───────────────────────────────────────────── */
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.gap-12 { gap: 12px; }
