/* ============================================================
   FRUCTIFIE — design system
   Structure premium héritée de SBS, palette émeraude + or.
   ============================================================ */

:root {
  /* Accent émeraude */
  --gr: #12a970;
  --gr-b: #1fc98a;
  --gr-s: rgba(18, 169, 112, 0.08);
  --gr-glow: rgba(18, 169, 112, 0.45);

  /* Or / champagne (valeur, accents premium) */
  --gold: #d8b44a;
  --gold-b: #ebcb6b;
  --gold-s: rgba(216, 180, 74, 0.12);

  /* Fonds */
  --dark: #0c130f;
  --dark-2: #0a0f0c;
  --page: #f7f8f5;
  --white: #ffffff;
  --white2: #f1f3ee;

  /* Texte */
  --ink: #0e1512;
  --ink2: #3a413b;
  --ink3: #79817a;

  /* Bordures */
  --line: #e5e7e0;
  --line-d: rgba(255, 255, 255, 0.1);

  /* Ombres */
  --shadow-soft: 0 4px 24px -8px rgba(14, 21, 15, 0.12);
  --shadow-pop: 0 20px 60px -16px rgba(14, 21, 15, 0.22);
  --shadow-cta: 0 12px 32px -8px var(--gr-glow);
  --shadow-dark: 0 40px 80px -40px rgba(0, 0, 0, 0.85);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1100px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  position: relative;
}
.sec {
  padding: 84px 0 92px;
}
.sec-dark {
  background: var(--dark);
  color: #fff;
}
.sec-alt {
  background: var(--white2);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 18px;
}
.sec-dark .eyebrow {
  color: var(--gr-b);
}
.h-display {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(26px, 4vw, 44px);
}
.sec-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head p {
  margin-top: 16px;
  color: var(--ink2);
  font-size: 17px;
}
.sec-dark .sec-head p {
  color: rgba(255, 255, 255, 0.7);
}
.accent {
  color: var(--gr);
}
.accent-gold {
  color: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gr), var(--gr-b));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    filter 0.2s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px -10px var(--gr-glow);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-lg {
  padding: 20px 44px;
  font-size: 16.5px;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-d);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  filter: none;
}

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 19, 15, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-d);
}
.hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo .leaf {
  color: var(--gr-b);
}
.logo-mark {
  height: 26px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: #fff;
}
.hdr .btn {
  padding: 11px 22px;
  font-size: 14px;
}
@media (max-width: 820px) {
  .nav {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 88px 0 92px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 55% at 50% -10%,
      rgba(31, 201, 138, 0.14),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 90% 20%,
      rgba(216, 180, 74, 0.08),
      transparent 60%
    );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold-s);
  border: 1px solid rgba(216, 180, 74, 0.3);
  color: var(--gold-b);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-badge s {
  color: rgba(255, 255, 255, 0.4);
}
.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  font-size: clamp(34px, 5.4vw, 62px);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gr-b);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-cta .note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-d);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.pill .chk {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gr-s);
  color: var(--gr-b);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pill .chk svg {
  width: 10px;
  height: 10px;
}

/* trust bar */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line-d);
  border: 1px solid var(--line-d);
  border-radius: 18px;
  overflow: hidden;
}
.hero-trust div {
  background: var(--dark);
  padding: 18px 14px;
  text-align: center;
}
.hero-trust .n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.hero-trust .l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* book cover */
.cover {
  perspective: 1600px;
}
.cover-inner {
  transform: rotateY(-16deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6));
}
.cover:hover .cover-inner {
  transform: rotateY(-8deg) rotateX(2deg);
}
.cover img {
  width: 100%;
  border-radius: 8px 12px 12px 8px;
}
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cover {
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- problem / cards ---------- */
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 860px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}
.sec-dark .card {
  background: linear-gradient(135deg, #131a15, var(--dark-2));
  border-color: var(--line-d);
  box-shadow: none;
}
.card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gr-s);
  color: var(--gr);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.sec-dark .card .ic {
  color: var(--gr-b);
}
.card .ic svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14.5px;
  color: var(--ink2);
}
.sec-dark .card p {
  color: rgba(255, 255, 255, 0.6);
}

/* problem: relatable list */
.reallist {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.reallist li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  color: var(--ink2);
}
.reallist li .x {
  color: #c94a4a;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- comparison table ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .compare {
    grid-template-columns: 1fr;
  }
}
.compare-col {
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
}
.compare-col.bad {
  background: var(--white);
}
.compare-col.good {
  background: linear-gradient(160deg, var(--gr-s), transparent);
  border-color: rgba(18, 169, 112, 0.35);
}
.compare-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.compare-col .tag {
  font-size: 12.5px;
  color: var(--ink3);
  margin-bottom: 18px;
}
.compare-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.compare-col li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink2);
  align-items: flex-start;
}
.compare-col li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-col.bad li svg {
  color: #c94a4a;
}
.compare-col.good li svg {
  color: var(--gr);
}

/* ---------- summary (guide TOC) ---------- */
.toc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .toc {
    grid-template-columns: 1fr;
  }
}
.toc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #131a15, var(--dark-2));
  border: 1px solid var(--line-d);
}
.toc-item .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gr-b);
  min-width: 28px;
}
.toc-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.toc-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: mfwd 46s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes mfwd {
  to {
    transform: translateX(-50%);
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gr);
}

/* ---------- simulator ---------- */
.sim-card {
  max-width: 560px;
  margin: 0 auto;
  background: #131a15;
  border: 1px solid var(--line-d);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-dark);
}
.sim-row {
  margin-bottom: 26px;
}
.sim-row label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.sim-row label b {
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 17px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gr-b);
  border: 3px solid #131a15;
  box-shadow: 0 0 0 1px rgba(31, 201, 138, 0.5),
    0 4px 12px rgba(31, 201, 138, 0.5);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gr-b);
  border: 3px solid #131a15;
  cursor: pointer;
}
.sim-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 7px;
}
.sim-result {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 4px;
}
.sim-result .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.sim-est {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1.05;
  color: var(--gr-b);
  margin: 4px 0 4px;
}
.sim-detail {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}
.sim-detail b {
  color: #fff;
  font-weight: 700;
}
.sim-chart {
  margin-top: 22px;
}
.sim-chart svg {
  width: 100%;
  height: 90px;
  overflow: visible;
}
.sim-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
}

/* ---------- for-you / not ---------- */
.foryou {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .foryou {
    grid-template-columns: 1fr;
  }
}
.foryou-col {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}
.foryou-col.yes {
  border-color: rgba(18, 169, 112, 0.35);
}
.foryou-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.foryou-col ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.foryou-col li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink2);
  align-items: flex-start;
}
.foryou-col li svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 2px;
}
.foryou-col.yes li svg {
  color: var(--gr);
}
.foryou-col.no li svg {
  color: var(--ink3);
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding-top: 8px;
}
.step .n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gr-s);
  color: var(--gr);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.sec-dark .step .n {
  color: var(--gr-b);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink2);
}
.sec-dark .step p {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- engagement / disclaimer ---------- */
.engage {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.engage .quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.engage p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 16px;
}
.disclaimer {
  margin-top: 30px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-d);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  text-align: left;
}

/* ---------- objections ---------- */
.obj {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.obj-item {
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}
.obj-item .q {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}
.obj-item .a {
  font-size: 14.5px;
  color: var(--ink2);
}
.obj-item .q::before {
  content: "« ";
  color: var(--ink3);
}
.obj-item .q::after {
  content: " »";
  color: var(--ink3);
}

/* ---------- pricing ---------- */
.price-card {
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(160deg, #131a15, var(--dark-2));
  border: 1px solid rgba(216, 180, 74, 0.28);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-dark);
  text-align: center;
}
.price-card .kicker {
  color: var(--gold-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 26px;
  margin: 10px 0 24px;
  color: #fff;
}
.price-inc {
  list-style: none;
  display: grid;
  gap: 13px;
  text-align: left;
  margin-bottom: 28px;
}
.price-inc li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  align-items: flex-start;
}
.price-inc li svg {
  width: 19px;
  height: 19px;
  color: var(--gr-b);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-inc li.bonus {
  color: #fff;
}
.bonus-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-b);
  background: var(--gold-s);
  border: 1px solid rgba(216, 180, 74, 0.35);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 1px;
}
.price-old {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.price-old s {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  font-weight: 600;
}
.price-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-b);
  background: var(--gold-s);
  border: 1px solid rgba(216, 180, 74, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}
.price-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.price-big .amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}
.price-big .cur {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.price-once {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
}
.price-card .btn {
  width: 100%;
  justify-content: center;
}
.price-secure {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.price-consent {
  margin-top: 12px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.price-consent a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--gr);
}
.faq-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
  color: var(--ink3);
}
.faq-item.open .faq-ic {
  background: var(--gr-s);
  color: var(--gr);
  border-color: transparent;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p {
  padding: 0 4px 24px;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 60ch;
}

/* ---------- final CTA ---------- */
.final {
  text-align: center;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(18, 169, 112, 0.12),
    transparent 60%
  );
}
.final .wrap {
  position: relative;
}
.final h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.final p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---------- footer ---------- */
.ftr {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 40px;
  border-top: 1px solid var(--line-d);
  font-size: 14px;
}
.ftr .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.ftr .logo {
  font-size: 18px;
  margin-bottom: 10px;
}
.ftr a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.ftr a:hover {
  color: #fff;
}
.ftr-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.ftr-legal {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
