/* ============================================================
   FlexDropin — shared design system  (v2 · light / premium)
   Brand derived from the real app:
   · signature green→teal gradient (lime #8ee04a → emerald #11b88f)
   · airy pale-sage backgrounds, white rounded cards, soft shadows
   · very bold near-black headings, calm grey body
   · blue secondary accent · category color-coding
   Typeface: Plus Jakarta Sans (SF-Pro-like, premium, friendly)
   ============================================================ */

:root {
  /* surfaces */
  --fd-bg: #e9f1ec;
  --fd-bg-2: #eef5f0;
  --fd-surface: #ffffff;
  --fd-surface-2: #f3f8f4;
  --fd-line: rgba(11, 38, 27, 0.09);
  --fd-line-2: rgba(11, 38, 27, 0.16);

  /* ink + text */
  --fd-ink: #0b1c14;
  --fd-text: #3b4a43;
  --fd-muted: #6a7b72;
  --fd-faint: #93a399;

  /* brand */
  --fd-g1: #8ee04a;          /* lime */
  --fd-g2: #1fc07a;          /* green */
  --fd-g3: #0fb398;          /* teal */
  --fd-grad: linear-gradient(105deg, #8ee04a 0%, #25c46f 48%, #0fb39a 100%);
  --fd-grad-soft: linear-gradient(105deg, rgba(142,224,74,0.16), rgba(15,179,154,0.16));
  --fd-green: #0c9c63;       /* accessible solid green for text/icons */
  --fd-green-ink: #075a3a;
  --fd-forest: #082019;      /* deep section / footer */
  --fd-forest-2: #0c2b21;

  /* secondary */
  --fd-blue: #1488cf;
  --fd-purple: #7a5cf0;
  --fd-coral: #f0533f;

  /* shape */
  --fd-radius: 26px;
  --fd-radius-sm: 16px;
  --fd-radius-lg: 34px;
  --fd-container: 1200px;
  --fd-shadow: 0 1px 2px rgba(11,38,27,0.04), 0 12px 32px rgba(11,38,27,0.07);
  --fd-shadow-lg: 0 2px 6px rgba(11,38,27,0.05), 0 30px 70px rgba(11,38,27,0.14);

  --fd-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --fd-font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --fd-font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--fd-bg);
  color: var(--fd-text);
  font-family: var(--fd-font);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fd-font-display);
  color: var(--fd-ink);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: rgba(31,192,122,0.24); }

.fd-container {
  width: 100%;
  max-width: var(--fd-container);
  margin: 0 auto;
  padding: 0 28px;
}

/* gradient text helper */
.fd-grad-text {
  background: var(--fd-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Section primitives ---------- */
.fd-section { padding: 100px 0; position: relative; }
.fd-section--tight { padding: 66px 0; }
.fd-bg-2 { background: var(--fd-bg-2); }
.fd-bg-white { background: var(--fd-surface); }

.fd-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd-font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fd-green);
  margin: 0 0 18px;
}
.fd-label::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--fd-grad);
  display: inline-block;
}
.fd-label--center { justify-content: center; }
.fd-label--light { color: #aaf0c4; }
.fd-label--light::before { background: linear-gradient(90deg,#8ee04a,#0fb39a); }

.fd-h1 { font-size: clamp(40px, 5.6vw, 72px); font-weight: 800; letter-spacing: -0.035em; }
.fd-h2 { font-size: clamp(30px, 3.7vw, 48px); letter-spacing: -0.03em; }
.fd-h3 { font-size: clamp(21px, 2vw, 27px); }
.fd-lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--fd-muted); max-width: 60ch; line-height: 1.6; }
.fd-muted { color: var(--fd-muted); }
.fd-green-text { color: var(--fd-green); }
.fd-center { text-align: center; }
.fd-mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.fd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--fd-font-body);
  font-weight: 700;
  font-size: 16px;
  background: var(--fd-grad);
  color: #06281b;
  border: 0;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  box-shadow: 0 10px 26px rgba(20,150,100,0.28);
}
.fd-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(20,150,100,0.36); filter: saturate(1.08); }
.fd-btn--ghost {
  background: transparent;
  color: var(--fd-ink);
  border: 1.5px solid var(--fd-line-2);
  box-shadow: none;
}
.fd-btn--ghost:hover { background: rgba(11,38,27,0.04); border-color: var(--fd-green); color: var(--fd-green-ink); }
.fd-btn--dark { background: var(--fd-ink); color: #fff; box-shadow: 0 10px 26px rgba(11,28,20,0.22); }
.fd-btn--dark:hover { filter: none; background: #14271d; }
.fd-btn--sm { padding: 10px 18px; font-size: 14px; }
.fd-btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* App-store badges (standard black) */
.fd-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--fd-ink);
  color: #fff;
  border: 0;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 8px 22px rgba(11,28,20,0.18);
}
.fd-store small { display: block; font-size: 11px; font-weight: 500; opacity: 0.72; line-height: 1; }
.fd-store strong { display: block; font-size: 15px; line-height: 1.2; }
.fd-store svg { width: 22px; height: 22px; flex: none; }
.fd-store:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,28,20,0.26); }
.fd-store--light { background: #fff; color: var(--fd-ink); border: 1px solid var(--fd-line); box-shadow: var(--fd-shadow); }

/* ---------- Top bar ---------- */
.fd-topbar {
  background: var(--fd-forest);
  color: #cfeede;
  font-size: 13.5px;
}
.fd-topbar .fd-container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.fd-topbar a.fd-mail { color: #bfe7d4; display: inline-flex; align-items: center; gap: 8px; }
.fd-topbar a.fd-mail:hover { color: #fff; }
.fd-topbar-stores { display: flex; gap: 16px; }
.fd-topbar-stores a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #bfe7d4; font-size: 13px; font-weight: 600;
}
.fd-topbar-stores a:hover { color: #8ee04a; }
.fd-topbar-stores svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.fd-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(233, 241, 236, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fd-line);
}
.fd-header .fd-container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.fd-logo { display: flex; align-items: center; gap: 11px; }
.fd-logo img { height: 38px; width: auto; }
.fd-logo span { font-family: var(--fd-font-display); font-weight: 800; font-size: 22px; color: var(--fd-ink); letter-spacing: -0.03em; }

.fd-nav { display: flex; align-items: center; gap: 32px; }
.fd-nav a {
  font-size: 15px; font-weight: 600; color: var(--fd-text);
  position: relative; padding: 6px 0; transition: color 0.15s ease;
}
.fd-nav a:hover, .fd-nav a.is-active { color: var(--fd-green-ink); }
.fd-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; border-radius: 3px; background: var(--fd-grad);
}
.fd-header-right { display: flex; align-items: center; gap: 18px; }
.fd-lang { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--fd-muted); }
.fd-lang b { color: var(--fd-green-ink); }
.fd-lang span { opacity: 0.4; }
.fd-burger { display: none; background: none; border: 0; color: var(--fd-ink); font-size: 22px; cursor: pointer; }

/* ---------- Breadcrumb ---------- */
.fd-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--fd-muted); margin-bottom: 24px; }
.fd-breadcrumb a:hover { color: var(--fd-green-ink); }
.fd-breadcrumb span { color: var(--fd-faint); }
.fd-breadcrumb b { color: var(--fd-text); font-weight: 700; }

/* ---------- Hero ---------- */
.fd-hero { padding: 70px 0 90px; position: relative; overflow: hidden; }
.fd-hero::before {
  content: ""; position: absolute; z-index: 0;
  top: -240px; right: -180px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(31,192,122,0.20), rgba(31,192,122,0) 62%);
  pointer-events: none;
}
.fd-hero::after {
  content: ""; position: absolute; z-index: 0;
  bottom: -300px; left: -200px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(142,224,74,0.16), rgba(142,224,74,0) 60%);
  pointer-events: none;
}
.fd-hero .fd-container { position: relative; z-index: 1; }
.fd-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.fd-hero-grid--text { grid-template-columns: 1fr; }
.fd-hero h1 { margin-bottom: 22px; }
.fd-hero .fd-lead { margin-bottom: 32px; }
.fd-hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; font-size: 14.5px; color: var(--fd-muted); font-weight: 500; }
.fd-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.fd-hero-trust svg { width: 18px; height: 18px; color: var(--fd-green); }

/* pill eyebrow used in hero */
.fd-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--fd-surface); border: 1px solid var(--fd-line);
  border-radius: 999px; padding: 8px 16px 8px 10px;
  font-size: 13.5px; font-weight: 600; color: var(--fd-text);
  box-shadow: var(--fd-shadow); margin-bottom: 26px;
}
.fd-pill b { background: var(--fd-grad); color: #06281b; font-weight: 800; padding: 3px 10px; border-radius: 999px; font-size: 12px; }

/* ---------- Media / placeholders ---------- */
.fd-media { border-radius: var(--fd-radius); overflow: hidden; box-shadow: var(--fd-shadow-lg); }
.fd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fd-media--tall { aspect-ratio: 4 / 5; }
.fd-media--wide { aspect-ratio: 16 / 10; }

.fd-ph {
  position: relative;
  border-radius: var(--fd-radius);
  border: 1.5px dashed var(--fd-line-2);
  background:
    repeating-linear-gradient(135deg, rgba(11,38,27,0.022) 0 14px, rgba(11,38,27,0) 14px 28px),
    var(--fd-surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fd-muted);
  overflow: hidden;
}
.fd-ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 0.03em; color: var(--fd-muted);
  padding: 6px 13px; border: 1px solid var(--fd-line-2); border-radius: 999px;
  background: rgba(255,255,255,0.7);
}
.fd-ph--tall { aspect-ratio: 4 / 5; }
.fd-ph--wide { aspect-ratio: 16 / 10; }
.fd-ph--sq { aspect-ratio: 1 / 1; }

/* hero image wrapper w/ floating mini booking card */
.fd-shot { position: relative; }
.fd-shot .fd-ph, .fd-shot .fd-media { box-shadow: var(--fd-shadow-lg); }
.fd-floatcard {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  background: #fff; border-radius: 18px; padding: 14px 16px;
  box-shadow: var(--fd-shadow-lg);
  display: flex; align-items: center; gap: 12px; min-width: 210px;
}
.fd-floatcard__ico { width: 42px; height: 42px; border-radius: 12px; background: var(--fd-grad); display: flex; align-items: center; justify-content: center; flex: none; }
.fd-floatcard__ico svg { width: 22px; height: 22px; color: #06281b; }
.fd-floatcard b { display: block; font-size: 15px; color: var(--fd-ink); font-weight: 800; line-height: 1.2; }
.fd-floatcard small { display: block; font-size: 12.5px; color: var(--fd-muted); }
.fd-floatcard--tr { left: auto; right: -22px; bottom: auto; top: 28px; }

/* ---------- Phone frame (app mockups) ---------- */
.fd-phone {
  position: relative;
  width: 300px; max-width: 100%;
  border-radius: 46px;
  background: #0b1c14;
  padding: 11px;
  box-shadow: var(--fd-shadow-lg), 0 0 0 1px rgba(11,38,27,0.06);
}
.fd-phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 0 0 16px 16px; z-index: 2;
}
.fd-phone img { width: 100%; border-radius: 36px; display: block; }
.fd-phone-stack { display: flex; align-items: center; justify-content: center; gap: 0; }
.fd-phone-stack .fd-phone:nth-child(1) { transform: rotate(-5deg) translateY(14px); z-index: 1; }
.fd-phone-stack .fd-phone:nth-child(2) { transform: scale(1.06); z-index: 3; }
.fd-phone-stack .fd-phone:nth-child(3) { transform: rotate(5deg) translateY(14px); z-index: 1; }
.fd-phone-stack .fd-phone:nth-child(1),
.fd-phone-stack .fd-phone:nth-child(3) { margin: 0 -34px; }

/* ---------- Generic grids ---------- */
.fd-grid { display: grid; gap: 24px; }
.fd-grid-2 { grid-template-columns: repeat(2, 1fr); }
.fd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fd-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.fd-card {
  background: var(--fd-surface);
  border: 1px solid var(--fd-line);
  border-radius: var(--fd-radius);
  padding: 32px;
  box-shadow: var(--fd-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fd-card:hover { transform: translateY(-4px); box-shadow: var(--fd-shadow-lg); }
.fd-card__ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--fd-grad-soft); color: var(--fd-green); margin-bottom: 22px;
}
.fd-card__ico svg { width: 27px; height: 27px; }
.fd-card h3 { font-size: 20px; margin-bottom: 10px; }
.fd-card p { font-size: 15.5px; color: var(--fd-muted); margin: 0; line-height: 1.62; }

/* tinted stat cards (app dashboard style) */
.fd-stat {
  border-radius: var(--fd-radius); padding: 28px 30px;
  background: var(--fd-surface); box-shadow: var(--fd-shadow);
  border: 1px solid var(--fd-line);
}
.fd-stat .fd-stat__n { font-family: var(--fd-font-display); font-weight: 800; font-size: clamp(34px,4vw,46px); color: var(--fd-ink); letter-spacing: -0.03em; line-height: 1; }
.fd-stat .fd-stat__l { font-size: 14.5px; color: var(--fd-muted); margin-top: 8px; font-weight: 600; }
.fd-stat--mint { background: linear-gradient(160deg,#e7f8ee,#f3fbf6); }
.fd-stat--blue { background: linear-gradient(160deg,#e7f1fb,#f3f8fd); }
.fd-stat--peach { background: linear-gradient(160deg,#fdf1e6,#fdf8f2); }
.fd-stat--lav { background: linear-gradient(160deg,#f1ecfd,#f8f5fd); }

/* ---------- Steps ---------- */
.fd-steps { counter-reset: step; display: grid; gap: 22px; }
.fd-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start;
  background: var(--fd-surface); border: 1px solid var(--fd-line);
  border-radius: var(--fd-radius); padding: 28px 32px; box-shadow: var(--fd-shadow);
}
.fd-step__num {
  font-family: var(--fd-font-display); font-weight: 800; font-size: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--fd-grad); color: #06281b;
}
.fd-step h3 { font-size: 20px; margin-bottom: 7px; }
.fd-step p { margin: 0; color: var(--fd-muted); font-size: 15.5px; }

/* ---------- Chips ---------- */
.fd-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.fd-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 19px; border-radius: 999px;
  background: var(--fd-surface); border: 1px solid var(--fd-line);
  font-size: 15px; font-weight: 600; color: var(--fd-text);
  box-shadow: var(--fd-shadow); transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}
a.fd-chip:hover { transform: translateY(-2px); box-shadow: var(--fd-shadow-lg); color: var(--fd-green-ink); }
.fd-chip b { color: var(--fd-green); font-weight: 800; display: inline-flex; }
.fd-chip svg { width: 16px; height: 16px; color: var(--fd-green); }
.fd-chip-card {
  background: var(--fd-surface); border: 1px solid var(--fd-line);
  border-radius: var(--fd-radius-sm); padding: 22px 24px; box-shadow: var(--fd-shadow);
}
.fd-chip-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--fd-ink); }
.fd-chip-card p { font-size: 14px; color: var(--fd-muted); margin: 0; }

/* ---------- Comparison table ---------- */
.fd-compare { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--fd-radius); overflow: hidden; box-shadow: var(--fd-shadow); background: #fff; }
.fd-compare th, .fd-compare td { padding: 18px 22px; text-align: left; font-size: 15.5px; border-bottom: 1px solid var(--fd-line); vertical-align: top; }
.fd-compare thead th { font-family: var(--fd-font-display); font-size: 17px; font-weight: 800; color: var(--fd-ink); background: var(--fd-surface-2); }
.fd-compare thead th:nth-child(2) { color: var(--fd-green-ink); background: var(--fd-grad-soft); }
.fd-compare tbody tr:last-child td { border-bottom: 0; }
.fd-compare td:first-child, .fd-compare th:first-child { font-weight: 700; color: var(--fd-text); width: 26%; }
.fd-compare td:nth-child(2) { background: rgba(31,192,122,0.06); color: var(--fd-ink); font-weight: 600; }
.fd-compare td:nth-child(3) { color: var(--fd-muted); }
.fd-compare .fd-yes { color: var(--fd-green-ink); font-weight: 800; }
.fd-compare .fd-no { color: var(--fd-faint); }

/* ---------- Price cards ---------- */
.fd-price {
  background: var(--fd-surface); border: 1px solid var(--fd-line);
  border-radius: var(--fd-radius); padding: 30px; text-align: center; box-shadow: var(--fd-shadow);
}
.fd-price h4 { font-size: 17px; margin-bottom: 4px; }
.fd-price .fd-amount { font-family: var(--fd-font-display); font-weight: 800; font-size: 42px; color: var(--fd-green-ink); letter-spacing: -0.03em; }
.fd-price .fd-amount span { font-size: 17px; color: var(--fd-muted); font-weight: 600; }
.fd-price p { font-size: 14px; color: var(--fd-muted); margin: 10px 0 0; }

/* ---------- Discipline cards (hub) ---------- */
.fd-disc {
  position: relative; border-radius: var(--fd-radius); overflow: hidden;
  background: var(--fd-surface); box-shadow: var(--fd-shadow);
  display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fd-disc:hover { transform: translateY(-6px); box-shadow: var(--fd-shadow-lg); }
.fd-disc__img { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.fd-disc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fd-disc:hover .fd-disc__img img { transform: scale(1.05); }
.fd-disc__img .fd-ph { position: absolute; inset: 0; border: 0; border-radius: 0; }
.fd-disc__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.fd-disc__body h3 { font-size: 21px; margin-bottom: 7px; }
.fd-disc__body p { font-size: 14.5px; color: var(--fd-muted); margin: 0 0 20px; flex: 1; line-height: 1.6; }
.fd-disc__link { font-weight: 800; color: var(--fd-green-ink); display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.fd-disc__link svg { width: 16px; height: 16px; transition: transform 0.16s ease; }
.fd-disc:hover .fd-disc__link svg { transform: translateX(5px); }
.fd-disc__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); color: var(--fd-green-ink); font-size: 12px; font-weight: 800; padding: 6px 13px; border-radius: 999px; box-shadow: var(--fd-shadow); }

/* ---------- FAQ accordion ---------- */
.fd-faq { display: grid; gap: 14px; max-width: 860px; }
.fd-faq__item { background: var(--fd-surface); border: 1px solid var(--fd-line); border-radius: var(--fd-radius-sm); overflow: hidden; box-shadow: var(--fd-shadow); transition: box-shadow 0.2s ease; }
.fd-faq__item.is-open { box-shadow: var(--fd-shadow-lg); }
.fd-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--fd-font-display); font-weight: 700; font-size: 18px; color: var(--fd-ink);
}
.fd-faq__q:hover { color: var(--fd-green-ink); }
.fd-faq__ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--fd-line-2); display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease; color: var(--fd-green-ink); font-size: 18px; }
.fd-faq__item.is-open .fd-faq__ico { transform: rotate(45deg); background: var(--fd-grad); color: #06281b; border-color: transparent; }
.fd-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fd-faq__a-inner { padding: 0 26px 24px; color: var(--fd-muted); font-size: 15.5px; line-height: 1.65; }

/* ---------- CTA band (deep forest, high impact) ---------- */
.fd-cta {
  position: relative; overflow: hidden;
  background: var(--fd-forest);
  border-radius: var(--fd-radius-lg); padding: 64px 56px;
  text-align: center;
}
.fd-cta::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(circle, rgba(31,192,122,0.34), rgba(31,192,122,0) 65%);
}
.fd-cta > * { position: relative; z-index: 1; }
.fd-cta h2 { margin-bottom: 16px; color: #fff; }
.fd-cta p { color: #b6d6c6; max-width: 56ch; margin: 0 auto 30px; }
.fd-cta .fd-btn-row { justify-content: center; }

/* ---------- Deep impact band (stats / quote) ---------- */
.fd-band { position: relative; overflow: hidden; background: var(--fd-forest); color: #d6ece1; }
.fd-band::before {
  content: ""; position: absolute; top: -200px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(142,224,74,0.18), rgba(142,224,74,0) 62%);
}
.fd-band .fd-container { position: relative; z-index: 1; }
.fd-band h2, .fd-band h3 { color: #fff; }
.fd-bandstat__n { font-family: var(--fd-font-display); font-weight: 800; font-size: clamp(40px,5vw,60px); letter-spacing: -0.03em; line-height: 1; }
.fd-bandstat__n .fd-grad-text { background: linear-gradient(105deg,#8ee04a,#0fb39a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fd-bandstat__l { color: #9fc2b2; font-size: 15px; margin-top: 10px; }

/* ---------- Prose ---------- */
.fd-prose { max-width: 68ch; }
.fd-prose p { color: var(--fd-text); margin-bottom: 1.15em; }
.fd-prose strong { color: var(--fd-ink); font-weight: 700; }
.fd-prose .fd-green-text { color: var(--fd-green-ink); }

/* ---------- Footer ---------- */
.fd-footer { background: var(--fd-forest); color: #a9c7ba; padding: 76px 0 36px; }
.fd-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.fd-footer .fd-logo span { color: #fff; }
.fd-footer h4 { font-size: 15px; margin-bottom: 18px; color: #fff; letter-spacing: 0.01em; }
.fd-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fd-footer a { color: #a9c7ba; font-size: 15px; }
.fd-footer a:hover { color: #8ee04a; }
.fd-footer__brand p { color: #9fc2b2; font-size: 14.5px; margin: 18px 0 20px; max-width: 36ch; line-height: 1.6; }
.fd-footer__stores { display: flex; gap: 12px; flex-wrap: wrap; }
.fd-footer__stores a { display: inline-flex; gap: 7px; align-items: center; color: #cfe9dc; font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,0.18); padding: 9px 15px; border-radius: 12px; }
.fd-footer__stores a:hover { border-color: #8ee04a; color: #fff; }
.fd-footer__stores svg { width: 16px; height: 16px; }
.fd-copy { padding-top: 28px; text-align: center; color: #7fa394; font-size: 13.5px; line-height: 1.7; }
.fd-copy p { margin: 0 0 4px; }

/* ---------- SEO / handoff panel ---------- */
.fd-seo-toggle {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  background: var(--fd-ink); color: #8ee04a; border: 0; cursor: pointer;
  font-family: ui-monospace, Menlo, monospace; font-weight: 700; font-size: 13px;
  padding: 12px 18px; border-radius: 999px; box-shadow: var(--fd-shadow-lg);
  display: inline-flex; align-items: center; gap: 8px;
}
.fd-seo-toggle:hover { background: #14271d; }
.fd-seo-panel {
  position: fixed; right: 22px; bottom: 78px; z-index: 91; width: min(440px, calc(100vw - 44px));
  max-height: min(74vh, 640px); overflow-y: auto;
  background: #fff; border: 1px solid var(--fd-line); border-radius: 18px;
  padding: 22px 22px 26px; box-shadow: var(--fd-shadow-lg);
  font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; line-height: 1.65; color: var(--fd-text);
  display: none;
}
.fd-seo-panel.is-open { display: block; }
.fd-seo-panel h5 { font-family: var(--fd-font-display); color: var(--fd-green-ink); font-size: 15px; margin: 0 0 4px; }
.fd-seo-panel .fd-seo-sub { color: var(--fd-faint); margin-bottom: 16px; font-size: 11.5px; }
.fd-seo-row { margin-bottom: 14px; }
.fd-seo-row .k { color: var(--fd-green); text-transform: uppercase; letter-spacing: 0.06em; font-size: 10.5px; display: block; margin-bottom: 3px; font-weight: 700; }
.fd-seo-row .v { color: var(--fd-ink); word-break: break-word; }
.fd-seo-row code { background: var(--fd-surface-2); padding: 1px 5px; border-radius: 4px; }
.fd-seo-tag { display: inline-block; background: var(--fd-grad-soft); color: var(--fd-green-ink); border: 1px solid rgba(31,192,122,0.3); padding: 2px 8px; border-radius: 6px; margin: 0 5px 5px 0; font-size: 11px; font-weight: 600; }

/* ---------- Mobile slide-down menu (built by flexdropin.js) ---------- */
.fd-mnav {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8, 32, 25, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.24s ease, visibility 0.24s ease;
}
.fd-mnav.is-open { opacity: 1; visibility: visible; }
.fd-mnav__inner {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--fd-surface);
  padding: 72px 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 24px 60px rgba(11,38,27,0.22);
  transform: translateY(-14px); transition: transform 0.26s ease;
  max-height: 92vh; overflow-y: auto;
}
.fd-mnav__close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--fd-ink);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; transition: background 0.15s ease;
}
.fd-mnav__close:hover { background: var(--fd-line); }
.fd-mnav.is-open .fd-mnav__inner { transform: translateY(0); }
.fd-mnav a {
  font-family: var(--fd-font-display); font-weight: 700; font-size: 19px;
  color: var(--fd-ink); padding: 15px 6px; border-bottom: 1px solid var(--fd-line);
}
.fd-mnav a.is-active { color: var(--fd-green-ink); }
.fd-mnav a.is-active::after { display: none; }
.fd-mnav__cta {
  margin-top: 22px; justify-content: center; border-bottom: 0; color: #06281b !important;
  font-size: 16px; padding: 15px 28px;
}
.fd-mnav__lang {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--fd-line);
  font-size: 14px; font-weight: 700; color: var(--fd-muted);
}
.fd-mnav__lang button {
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--fd-muted); padding: 4px 8px;
  border-radius: 8px; transition: color 0.15s ease, background 0.15s ease;
}
.fd-mnav__lang button:hover { color: var(--fd-ink); background: var(--fd-line); }
.fd-mnav__lang button.is-active { color: var(--fd-green-ink); }
.fd-mnav__lang span { opacity: 0.4; }
.fd-burger.is-active { color: var(--fd-green-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  :root { --fd-container: 960px; }
  .fd-section { padding: 84px 0; }
}
@media (max-width: 980px) {
  .fd-hero { padding: 52px 0 70px; }
  .fd-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .fd-hero .fd-shot { max-width: 360px; margin: 0 auto; }
  .fd-grid-3, .fd-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fd-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 40px; }
  .fd-footer__brand { grid-column: 1 / -1; }
  .fd-nav { display: none; }
  .fd-burger { display: block; line-height: 1; }
  .fd-header-right .fd-btn, .fd-header-right .fd-lang { display: none; }
  .fd-floatcard { left: 0; }
  .fd-floatcard--tr { right: 0; }
  /* nested 2-col helper grids (hero band chips/stats) stay 2-up here */
}
@media (max-width: 760px) {
  .fd-section { padding: 64px 0; }
  .fd-grid-3, .fd-grid-4 { grid-template-columns: 1fr 1fr; }
  .fd-h1 { font-size: clamp(34px, 9vw, 50px); }
  .fd-phone-stack { transform: scale(0.86); margin: -18px 0; }
}
@media (max-width: 620px) {
  .fd-section { padding: 56px 0; }
  .fd-section--tight { padding: 48px 0; }
  .fd-container { padding: 0 20px; }
  .fd-grid-2, .fd-grid-3, .fd-grid-4 { grid-template-columns: 1fr; }
  /* any inline 2-col grids (price cards, etc.) collapse */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .fd-step { grid-template-columns: 1fr; gap: 14px; }
  .fd-step__num { width: 48px; height: 48px; font-size: 21px; }
  .fd-cta { padding: 40px 22px; }
  .fd-cta h2 { font-size: clamp(26px, 7vw, 34px); }
  .fd-compare { display: block; overflow-x: auto; white-space: nowrap; }
  .fd-footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 24px; }
  .fd-topbar { display: none; }
  .fd-phone { width: 260px; }
  .fd-phone-stack { transform: none; margin: 0; justify-content: center; }
  .fd-phone-stack .fd-phone:nth-child(1),
  .fd-phone-stack .fd-phone:nth-child(3) { display: none; }
  .fd-phone-stack .fd-phone:nth-child(2) { transform: none; width: 260px; }
  /* APP SHOWCASE BAND: keep all 3 phones visible at small size */
  .fd-band .fd-phone-stack .fd-phone:nth-child(1),
  .fd-band .fd-phone-stack .fd-phone:nth-child(3) { display: block; }
  .fd-band .fd-phone-stack { margin: -14px -50px; }
  .fd-band .fd-phone-stack .fd-phone { width: 200px; }
  .fd-band .fd-phone-stack .fd-phone:nth-child(1),
  .fd-band .fd-phone-stack .fd-phone:nth-child(3) { margin: 0 -16px; }
  .fd-floatcard { padding: 11px 13px; min-width: 0; max-width: 200px; }
  .fd-floatcard--tr { top: 12px; }
  .fd-faq__q { font-size: 16px; padding: 18px 20px; }
  .fd-faq__a-inner { padding: 0 20px 20px; }
  .fd-card { padding: 26px 24px; }
  .fd-hero-trust { gap: 14px 20px; }
}
@media (max-width: 400px) {
  .fd-footer-grid { grid-template-columns: 1fr; }
  .fd-store { padding: 11px 16px; }
}
