/* ================================================================
   KOTI — Production CSS
   Forest & Honey colour system
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Primary — Forest green */
  --forest:       #2D6A4F;
  --forest-dark:  #1A4030;
  --forest-light: #E5F4EC;
  --forest-mid:   #74BF96;

  /* Accent 1 — Honey (XP / rewards) */
  --honey:        #F0A500;
  --honey-light:  #FFF5D6;
  --honey-dark:   #8A5C00;

  /* Accent 2 — Coral (tasks / urgency) */
  --coral:        #E07A5F;
  --coral-light:  #FAEDE8;

  /* Accent 3 — Violet (chat / social) */
  --violet:       #9D84C2;
  --violet-light: #EEEAFA;

  /* Accent 4 — Amber (tertiary) */
  --amber:        #D4785A;
  --amber-light:  #FAE8E0;

  /* Base surfaces */
  --cream:        #FBF7EE;
  --cream-2:      #F2EBD8;
  --cream-3:      #E6DCC8;

  /* Ink scale */
  --ink:          #1F2D26;
  --ink-60:       #506658;
  --ink-30:       #5A7060; /* Darkened for WCAG AA compliance (5.01:1 on cream) */
  --ink-10:       rgba(31, 45, 38, .08);
  --white:        #FFFFFF;

  /* Typography */
  --f-display:    'Playfair Display', Georgia, serif;
  --f-body:       'Nunito', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --nav-h:        62px;
  --max-w:        1200px;
  --ph:           48px;
  --ph-m:         22px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.2s ease;

  /* Focus ring */
  --focus-ring:   0 0 0 3px rgba(45, 106, 79, 0.35);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ol, ul {
  list-style: none;
}

/* ── ACCESSIBILITY ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--forest);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--honey);
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.c {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--ph);
}

@media (max-width: 700px) {
  .c { padding: 0 var(--ph-m); }
}

.section {
  padding: 96px 0;
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

/* ── COOKIE BANNER ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 560px;
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s var(--ease-out);
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  min-width: 0;
  line-height: 1.5;
}

.cookie-text strong { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn--primary {
  background: var(--forest);
  color: var(--white);
  border: none;
}

.cookie-btn--primary:hover { background: var(--forest-mid); }
.cookie-btn--primary:focus-visible { box-shadow: var(--focus-ring); }

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn--ghost:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 var(--ph);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-10);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(251, 247, 238, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 700px) {
  .nav { padding: 0 var(--ph-m); }
}

.logo {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
}

.logo:hover { opacity: 0.8; }
.logo:focus-visible { box-shadow: var(--focus-ring); border-radius: 4px; outline: none; }
.logo span { color: var(--forest); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lb {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-30);
  cursor: pointer;
  font-family: var(--f-body);
  transition: all var(--transition);
  line-height: 1;
}

.lb:hover { background: var(--cream-2); color: var(--ink); }
.lb:focus-visible { box-shadow: var(--focus-ring); outline: none; }
.lb.on {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.nav-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--forest);
  background: var(--forest-light);
  padding: 7px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  min-height: 100vh; /* fallback */
  padding-top: var(--nav-h);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(240, 165, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(224, 122, 95, 0.05) 0%, transparent 40%);
}

.deco-arch {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--forest-light);
  clip-path: ellipse(80% 100% at 100% 50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 48px var(--ph) 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .deco-arch { display: none; }
}

@media (max-width: 700px) {
  .hero-inner { padding: 36px var(--ph-m) 48px; }
}

/* Hero text */
.hero-text {}

/* Eyebrow */
.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--forest);
  border-radius: 1px;
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

/* Hero heading wrapper */
.hero-heading {
  margin-bottom: 0;
}

/* Headlines */
.hero-h1 {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 5.2vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-h2 {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 5.2vw, 80px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--forest);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 44px;
  max-width: 460px;
}

@media (max-width: 700px) {
  .hero-sub { font-size: 16px; }
}

/* Email form */
.email-wrap { max-width: 440px; }

.email-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .email-row { flex-direction: column; }
}

.email-input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border: 2px solid var(--cream-3);
  border-radius: 14px;
  background: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.email-input::placeholder { color: var(--ink-30); }

.email-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.email-input:invalid:not(:placeholder-shown) {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

.email-btn {
  flex-shrink: 0;
  padding: 15px 22px;
  border: none;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform 0.1s ease, box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.email-btn:hover { background: var(--forest); }
.email-btn:active { transform: scale(0.97); }
.email-btn:focus-visible { box-shadow: var(--focus-ring); outline: none; }

/* Loading state */
.email-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.form-note {
  font-size: 12px;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--forest-light);
  border: 1.5px solid var(--forest-mid);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.form-success.on {
  display: flex;
  animation: fadeup 0.3s ease;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Trust row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-60);
  white-space: nowrap;
}

.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-30);
  flex-shrink: 0;
}

/* ── PHONE ZONE ─────────────────────────────────────────────────── */
.phone-zone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 720px;
}

@media (max-width: 700px) {
  .phone-zone { height: 580px; }
}

.phone {
  width: 295px;
  height: 640px;
  border-radius: 50px;
  border: 10px solid #111;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.1);
  animation: gentlefloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .phone {
    width: 240px;
    height: 520px;
    border-radius: 40px;
    border-width: 8px;
  }
}

@keyframes gentlefloat {
  0%, 100% { transform: translateY(0) rotate(-0.3deg); }
  50%       { transform: translateY(-14px) rotate(0.3deg); }
}

/* Dynamic island */
.di {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 25px;
  background: #111;
  border-radius: 18px;
  z-index: 10;
}

.ph-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.ph-status {
  padding: 14px 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.ph-time { font-size: 13px; font-weight: 700; color: var(--ink); }
.ph-icons { display: flex; gap: 5px; }

.ph-top {
  padding: 4px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.ph-brand {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.ph-brand span { color: var(--forest); }

.ph-avs { display: flex; }
.ph-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  margin-right: -5px;
}

.ph-scroll {
  flex: 1;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ph-sec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  padding: 0 2px;
  margin-bottom: 2px;
}

.ph-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ph-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ph-row:last-child { border: none; }

.ph-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.ph-body { flex: 1; min-width: 0; }
.ph-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ph-meta { font-size: 8px; color: var(--ink-30); margin-top: 1px; }

.ph-bar {
  width: 32px;
  height: 3px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.ph-fill { height: 3px; border-radius: 2px; }
.ph-chev { font-size: 10px; color: rgba(0, 0, 0, 0.18); }

.ph-mission {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  border-radius: 14px;
  padding: 11px 12px;
}

.ph-ml {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.ph-mt {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.ph-mrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.ph-mpct { font-size: 8px; color: rgba(255, 255, 255, 0.6); }

.ph-mxp {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
  color: var(--honey);
}

.ph-mbar {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  height: 3px;
}

.ph-mbfill {
  height: 3px;
  border-radius: 3px;
  background: var(--honey);
  width: 62%;
}

.ph-nav {
  display: flex;
  padding: 8px 0 14px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

.ph-ni {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ph-ni svg { width: 17px; height: 17px; }
.ph-nlbl { font-size: 7px; font-weight: 700; color: var(--ink-30); }
.ph-nlbl.on { color: var(--forest); }
.ph-ndot { width: 3px; height: 3px; border-radius: 50%; background: var(--forest); }

/* Floating badges */
.fbadge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.fb-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fb-main { font-size: 11px; font-weight: 700; color: var(--ink); }
.fb-sub  { font-size: 9px; color: var(--ink-30); margin-top: 1px; }

.fb1 { right: 0; top: 15%; animation: sway 6s ease-in-out infinite; }
.fb2 { left: 0; bottom: 25%; animation: sway 6s ease-in-out infinite; animation-delay: 3s; }

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

@media (max-width: 700px) {
  .fbadge { display: none; }
}

/* ── SECTION SHARED ─────────────────────────────────────────────── */
.s-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  display: block;
}

.s-h {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.s-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-60);
}

/* ── FEATURES ───────────────────────────────────────────────────── */
.features-bg { background: var(--white); }

.feat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 860px) {
  .feat-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.feat-card {
  border-radius: 18px;
  padding: 24px 20px;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feat-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.feat-card-h {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.feat-card-p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-60);
}

/* Magazine card: leaderboard */
.feat-mag {
  background: var(--ink);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}

.feat-mag::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.3), transparent 70%);
  pointer-events: none;
}

@media (max-width: 500px) {
  .feat-mag { grid-column: span 1; }
}

.feat-mag-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 14px;
}

.feat-mag-h {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.feat-mag-h em {
  font-style: italic;
  color: var(--honey);
}

.xp-row {
  display: flex;
  gap: 10px;
}

@media (max-width: 500px) {
  .xp-row { flex-direction: column; }
}

.xp-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  flex: 1;
}

.xp-chip-e { font-size: 18px; line-height: 1; }
.xp-chip-n { font-size: 12px; font-weight: 700; color: var(--white); }
.xp-chip-p { font-size: 11px; color: var(--honey); margin-top: 2px; }

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how-bg {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
  position: relative;
  overflow: hidden;
}

.how-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.how-bg .s-lbl { color: rgba(255, 255, 255, 0.55); }
.how-bg .s-h   { color: var(--white); }

.how-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin: 0 auto;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

@media (max-width: 700px) {
  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}

@media (max-width: 440px) {
  .steps-row { grid-template-columns: 1fr; }
}

.step-num-big {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: -10px;
  pointer-events: none;
}

.step-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.step-h {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.step-accent .step-icon-circle {
  background: var(--honey);
  border-color: var(--honey);
}

.step-accent .step-h { color: var(--honey); }

/* ── CTA ────────────────────────────────────────────────────────── */
.cta-bg {
  background: var(--cream-2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(240, 165, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-bg .c { position: relative; z-index: 1; }

.cta-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-pill {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-h1 {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 6px;
}

.cta-h2 {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--forest);
  margin-bottom: 22px;
}

.cta-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-60);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 12px;
}

@media (max-width: 480px) {
  .cta-form { flex-direction: column; }
}

.cta-note {
  font-size: 12px;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.5;
}

.cta-success {
  max-width: 420px;
  margin: 0 auto 12px;
  justify-content: center;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--cream-3);
  background: var(--cream);
}

.footer .c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  gap: 16px;
}

@media (max-width: 600px) {
  .footer .c {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-logo:hover { opacity: 0.8; }
.footer-logo:focus-visible { box-shadow: var(--focus-ring); border-radius: 4px; outline: none; }
.footer-logo span { color: var(--forest); }

.footer-copy {
  font-size: 12px;
  color: var(--ink-30);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-link {
  font-size: 12px;
  color: var(--ink-30);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--forest); }
.footer-link:focus-visible { box-shadow: var(--focus-ring); border-radius: 2px; outline: none; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }

/* ── PRINT STYLES ───────────────────────────────────────────────── */
@media print {
  .nav,
  .cookie-banner,
  .fbadge,
  .phone-zone,
  .email-wrap,
  .cta-form {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }
}
