:root {

  --navy-950: #060f24;
  --navy-900: #0a1730;
  --navy-850: #0e1f42;
  --navy-800: #142a5c;
  --navy-700: #1b3a93;
  --navy-600: #2b4fb8;

  --teal-600: #3ea3a5;
  --teal-500: #5fbfc0;
  --teal-400: #82d3d4;
  --teal-300: #a9e3e4;

  --teal-700: #237f81;
  --teal-ink: #1c7375;

  --gold-500: #bd7f16;

  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-softer: #fafcfe;
  --surface: #ffffff;
  --line: #e3e9f2;
  --line-strong: #cfd9e8;

  --ink: #0b1526;
  --ink-2: #3c4a63;
  --ink-3: #63718a;
  --ink-invert: #ffffff;
  --ink-invert-2: #b9c6dd;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(11, 21, 38, .05), 0 2px 8px rgba(11, 21, 38, .04);
  --shadow: 0 4px 12px rgba(11, 21, 38, .06), 0 16px 40px rgba(11, 21, 38, .07);
  --shadow-lg: 0 8px 24px rgba(11, 21, 38, .08), 0 32px 72px rgba(11, 21, 38, .12);
  --shadow-teal: 0 12px 32px rgba(95, 191, 192, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 128px);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 1.2rem + 4.4vw, 4.25rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 1.1rem + 2.9vw, 3.1rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-ink); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong, b { color: var(--ink); font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--teal-300); color: var(--navy-900); }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 999;
  background: var(--navy-900); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 12px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--soft { background: var(--bg-soft); }
.section--softer { background: var(--bg-softer); }

.section--dark {
  background: var(--navy-950);
  color: var(--ink-invert-2);
  position: relative;
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark strong, .topbar strong, .hero strong, .pagehead strong { color: #fff; }
.section--dark a { color: var(--teal-400); }
.section--dark a:hover { color: var(--teal-300); }

.section--dark::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 60% at 20% 0%, rgba(27, 58, 147, .55), transparent 70%),
    radial-gradient(50% 60% at 85% 15%, rgba(95, 191, 192, .28), transparent 70%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc, .info-item,
                   .stats:not(.stats--dark)) {
  color: var(--ink-2);
}
.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc, .info-item,
                   .stats:not(.stats--dark)) :is(h1, h2, h3, h4, h5, strong, b) {
  color: var(--ink);
}
.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc, .info-item,
                   .stats:not(.stats--dark)) a {
  color: var(--navy-700);
}
.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc, .info-item,
                   .stats:not(.stats--dark)) a:hover {
  color: var(--teal-ink);
}
.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc, .info-item,
                   .stats:not(.stats--dark)) .muted {
  color: var(--ink-3);
}

.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc) .btn--ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}
.section--dark :is(.card:not(.card--dark), .plan, .module, .quote,
                   .faq, .form-card, .toc) .btn--ghost:hover {
  color: var(--navy-700);
  border-color: var(--navy-700);
  background: rgba(27, 58, 147, .04);
}

.section--dark .note {
  background: rgba(95, 191, 192, .13);
  border-left-color: var(--teal-400);
  color: var(--ink-invert-2);
}
.section--dark .note strong { color: #fff; }
.section--dark .note a { color: var(--teal-400); }

.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 900px) { .split--wide-left { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--teal-400); }

.lead {
  font-size: clamp(1.05rem, .98rem + .45vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}
.section--dark .lead { color: var(--ink-invert-2); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }

.display-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--teal-ink);
}
.hero .display-serif,
.pagehead .display-serif,
.section--dark .display-serif,
.cta-band .display-serif { color: var(--teal-400); }

.muted { color: var(--ink-3); font-size: .92rem; }
.section--dark .muted { color: #8496b5; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: #04252a;
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover { color: #04252a; box-shadow: 0 18px 44px rgba(95, 191, 192, .42); }

.btn--navy { background: var(--navy-700); color: #fff; box-shadow: 0 10px 28px rgba(27, 58, 147, .28); }
.btn--navy:hover { background: var(--navy-800); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy-700); color: var(--navy-700); background: rgba(27, 58, 147, .04); }

.section--dark .btn--ghost, .hero .btn--ghost, .pagehead .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .28); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .pagehead .btn--ghost:hover { border-color: var(--teal-400); color: var(--teal-300); background: rgba(95, 191, 192, .1); }

.btn--sm { padding: 11px 22px; font-size: .9rem; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  color: var(--navy-700);
}
.arrow-link::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.arrow-link:hover::after { transform: translateX(4px); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

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

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav a:hover { color: var(--navy-700); background: rgba(27, 58, 147, .06); }
.nav a[aria-current="page"] { color: var(--navy-700); background: rgba(27, 58, 147, .08); }

.header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

#nav-toggle { display: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}
.burger span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

#nav-toggle:checked ~ .header__bar .burger span { background: transparent; }
#nav-toggle:checked ~ .header__bar .burger span::before { transform: translateY(6px) rotate(45deg); }
#nav-toggle:checked ~ .header__bar .burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .burger { display: flex; }
  .header__bar { min-height: 68px; }

  #nav-toggle {
    display: block;
    position: absolute;
    top: 11px;
    right: var(--gutter);
    width: 46px; height: 46px;
    margin: 0;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
  }
  #nav-toggle:focus-visible ~ .header__bar .burger {
    outline: 3px solid var(--teal-500);
    outline-offset: 3px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 var(--gutter);
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease),
                opacity .25s var(--ease), visibility .25s;
  }
  #nav-toggle:checked ~ .header__bar .nav {
    max-height: calc(100vh - 68px);
    padding: 16px var(--gutter) 28px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    border-bottom-color: var(--line);
  }
  .nav a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .header__cta .btn { display: none; }
  .header__cta .btn--phone { display: inline-flex; }
}

@media (max-width: 620px) {
  .brand img { height: 34px; }
  .header__cta .btn--phone { display: none; }
}

.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700) 55%, var(--teal-700));
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  text-align: center;
  padding: 9px var(--gutter);
  letter-spacing: .01em;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: var(--teal-300); }

.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--ink-invert-2);
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 110px) clamp(72px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 80% at 12% -10%, rgba(27, 58, 147, .75), transparent 65%),
    radial-gradient(55% 70% at 88% 8%, rgba(95, 191, 192, .32), transparent 62%),
    radial-gradient(80% 60% at 50% 115%, rgba(43, 79, 184, .35), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(70% 65% at 50% 40%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 65% at 50% 40%, #000 20%, transparent 100%);
}
.hero > * { position: relative; z-index: 2; }

.hero h1 { color: #fff; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__lead {
  font-size: clamp(1.05rem, .97rem + .5vw, 1.28rem);
  color: #c6d3e8;
  max-width: 58ch;
  margin-bottom: 2rem;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #dce6f7;
  backdrop-filter: blur(6px);
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(95, 191, 192, .22);
}

.badge--light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  object-fit: cover;
  aspect-ratio: 4 / 3.2;
}

.hero__float {
  position: absolute;
  left: -18px; bottom: -26px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px 14px 16px;
  background: rgba(10, 23, 48, .82);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.hero__float img { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; aspect-ratio: auto; border: 0; box-shadow: none; }
.hero__float strong { display: block; color: #fff; font-size: .95rem; }
.hero__float span { font-size: .8rem; color: #9fb0cc; }
@media (max-width: 560px) { .hero__float { left: 8px; bottom: -18px; padding: 12px 16px; } }

.wave {
  display: block;
  line-height: 0;
  background: var(--bg);
  margin-top: -1px;
}
.wave svg {
  display: block;
  width: 100%;
  height: clamp(46px, 6vw, 96px);
}

.ticker {
  position: relative;
  background: var(--bg);
  border-block: 1px solid var(--line);
}
.ticker__widget {

  min-height: 78px;
}
.ticker__widget .tradingview-widget-copyright { display: none; }

.ticker__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding: 10px var(--gutter);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  background: var(--bg-softer);
}
.ticker__legend .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2fbf71;
  box-shadow: 0 0 0 4px rgba(47, 191, 113, .18);
}
.ticker__legend a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; }
.ticker__legend a:hover { color: var(--teal-ink); }

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-softer);
}
.trust img { height: 46px; width: auto; opacity: .9; }
.trust__item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; color: var(--ink-2); }
.trust__item svg { width: 20px; height: 20px; color: var(--teal-ink); flex-shrink: 0; }

.pagehead {
  position: relative;
  background: var(--navy-950);
  color: var(--ink-invert-2);
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 92px);
}
.pagehead::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 90% at 15% 0%, rgba(27, 58, 147, .8), transparent 65%),
    radial-gradient(50% 70% at 90% 20%, rgba(95, 191, 192, .28), transparent 65%);
}
.pagehead > * { position: relative; z-index: 1; }
.pagehead h1 { color: #fff; margin-bottom: .35em; }
.pagehead .lead { color: #c6d3e8; }

.breadcrumb {
  font-size: .82rem;
  font-weight: 600;
  color: #8fa2c2;
  margin-bottom: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .5em;
}
.breadcrumb a { color: #b9c9e4; }
.breadcrumb a:hover { color: var(--teal-300); }
.breadcrumb span[aria-hidden] { opacity: .5; }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-2); font-size: .97rem; }

.card__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(95, 191, 192, .18), rgba(27, 58, 147, .12));
  color: var(--navy-700);
  border: 1px solid rgba(95, 191, 192, .28);
}
.card__icon svg { width: 26px; height: 26px; }

.card--dark {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
  color: var(--ink-invert-2);
  backdrop-filter: blur(6px);
}
.card--dark:hover { border-color: rgba(95, 191, 192, .4); background: rgba(255, 255, 255, .07); }
.card--dark p { color: var(--ink-invert-2); }
.card--dark .card__icon {
  background: rgba(95, 191, 192, .16);
  border-color: rgba(95, 191, 192, .35);
  color: var(--teal-400);
}

.step { position: relative; padding-left: 0; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(27, 58, 147, .3);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--surface); padding: clamp(24px, 3vw, 36px); }
.stat__value {
  display: block;
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--navy-700);
  margin-bottom: .35rem;
}
.stat__value em { font-style: normal; color: var(--teal-500); }
.stat__label { font-size: .9rem; font-weight: 600; color: var(--ink-3); line-height: 1.4; }

.stats--dark { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .12); }
.stats--dark .stat { background: rgba(6, 15, 36, .55); backdrop-filter: blur(8px); }
.stats--dark .stat__value { color: #fff; }
.stats--dark .stat__value em { color: var(--teal-400); }
.stats--dark .stat__label { color: #94a6c4; }

.courses { display: grid; gap: clamp(20px, 2.5vw, 28px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.course {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.course:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }

.course__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-900); }
.course__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.course:hover .course__media img { transform: scale(1.05); }
.course__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 36, .12) 0%, rgba(6, 15, 36, .58) 100%);
}

.course__tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .95);
  color: var(--navy-700);
  backdrop-filter: blur(8px);
}
.course__tag--hot { background: var(--teal-500); color: #04252a; }
.course__tag--soon { background: rgba(255, 255, 255, .18); color: #fff; border: 1px solid rgba(255, 255, 255, .35); }

.course__format {
  position: absolute; z-index: 2; bottom: 14px; left: 16px;
  font-size: .8rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: .45em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.course__body { display: flex; flex-direction: column; flex: 1; padding: clamp(22px, 2.6vw, 30px); }
.course__body h3 { font-size: 1.3rem; margin-bottom: .45rem; }
.course__body > p { font-size: .96rem; color: var(--ink-2); }

.course__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.chip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-2);
}
.chip--teal { background: rgba(95, 191, 192, .12); border-color: rgba(95, 191, 192, .4); color: var(--teal-ink); }
.chip--navy { background: rgba(27, 58, 147, .08); border-color: rgba(27, 58, 147, .2); color: var(--navy-700); }

.course__price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.price { display: flex; align-items: baseline; gap: .4em; }
.price__amount { font-size: 1.85rem; font-weight: 800; color: var(--ink); letter-spacing: -.035em; line-height: 1; }
.price__unit { font-size: .88rem; font-weight: 600; color: var(--ink-3); }
.price__old { font-size: .9rem; color: var(--ink-3); text-decoration: line-through; }

.course__actions { display: flex; gap: 10px; margin-top: 20px; }
.course__actions .btn { flex: 1; }

.course--featured { border-color: var(--teal-500); box-shadow: 0 10px 34px rgba(95, 191, 192, .2); }
.course--featured::before {
  content: "Le plus choisi";
  position: absolute; z-index: 3; top: 14px; right: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: var(--navy-700); color: #fff;
}

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  margin: 0;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: .32em;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: rgba(95, 191, 192, .16);
  border: 1px solid rgba(95, 191, 192, .45);
}
.checklist li::after {
  content: "";
  position: absolute; left: 7px; top: .62em;
  width: 7px; height: 4px;
  border-left: 2px solid var(--teal-ink);
  border-bottom: 2px solid var(--teal-ink);
  transform: rotate(-45deg);
}
.section--dark .checklist li::after { border-color: var(--teal-400); }

.checklist--tight li { font-size: .95rem; }

.module {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.module:hover { border-color: var(--teal-500); box-shadow: var(--shadow-sm); }
.module__num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  font-weight: 800; font-size: .95rem;
  color: var(--teal-ink);
  background: rgba(95, 191, 192, .12);
  border: 1px solid rgba(95, 191, 192, .32);
}
.module h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.module ul { margin: 0; }
@media (max-width: 560px) { .module { grid-template-columns: 1fr; gap: 14px; } }

.quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__stars { color: var(--gold-500); letter-spacing: .12em; font-size: 1rem; }
.quote blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.quote__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-700));
  color: #fff; font-weight: 800; font-size: 1.05rem;
  flex-shrink: 0;
}
.quote__author strong { display: block; font-size: .98rem; color: var(--ink); }
.quote__author span { font-size: .85rem; color: var(--ink-3); }

.pullquote {
  position: relative;
  padding: clamp(30px, 4vw, 52px) clamp(26px, 4vw, 60px);
  border-left: 3px solid var(--teal-500);
  background: linear-gradient(90deg, rgba(95, 191, 192, .07), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.15rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-bottom: 1rem;
}
.section--dark .pullquote p { color: #fff; }
.pullquote cite { font-style: normal; font-weight: 700; font-size: .95rem; color: var(--teal-ink); }
.section--dark .pullquote cite { color: var(--teal-400); }

.figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.figure img { width: 100%; object-fit: cover; }
.figure--tall img { aspect-ratio: 3 / 4; }
.figure--wide img { aspect-ratio: 16 / 10; }
.figure--square img { aspect-ratio: 1 / 1; }

.figure__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(transparent, rgba(6, 15, 36, .88));
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
}

.media-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.media-collage .figure:first-child { grid-row: span 2; }
.media-collage .figure:first-child img { height: 100%; aspect-ratio: auto; min-height: 340px; }
@media (max-width: 560px) {
  .media-collage { grid-template-columns: 1fr; }
  .media-collage .figure:first-child { grid-row: auto; }
  .media-collage .figure:first-child img { min-height: 0; aspect-ratio: 4/3; }
}

.faq { display: grid; gap: 12px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--teal-500); box-shadow: var(--shadow-sm); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 2.4vw, 26px);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--navy-700); }

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  margin-top: 6px;
  border-right: 2.5px solid var(--teal-ink);
  border-bottom: 2.5px solid var(--teal-ink);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }

.faq__answer { padding: 0 clamp(18px, 2.4vw, 26px) 24px; color: var(--ink-2); font-size: .97rem; }
.faq__answer p:last-child { margin-bottom: 0; }

.plans { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }

.plan {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--best {
  border-color: var(--navy-700);
  box-shadow: 0 12px 40px rgba(27, 58, 147, .16);
  position: relative;
}
.plan--best::after {
  content: "Recommandé";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; border-radius: 999px;
  background: var(--navy-700); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  white-space: nowrap;
}
.plan h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.plan__price { margin: 16px 0 4px; }
.plan__price .price__amount { font-size: 2.4rem; }
.plan__note { font-size: .87rem; color: var(--ink-3); margin-bottom: 22px; }
.plan .checklist { margin-bottom: 26px; }
.plan .checklist li { font-size: .93rem; }
.plan .btn { margin-top: auto; }

.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(38px, 5.5vw, 76px);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 60%, var(--teal-700));
  color: #fff;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 60ch; margin-inline: auto; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.info-list li { margin: 0; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.info-item:hover { border-color: var(--teal-500); transform: translateX(3px); }
.info-item__icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(95, 191, 192, .13);
  border: 1px solid rgba(95, 191, 192, .3);
  color: var(--teal-ink);
}
.info-item__icon svg { width: 20px; height: 20px; }
.info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); margin-bottom: 3px; font-weight: 800; }
.info-item a, .info-item span { font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.info-item a:hover { color: var(--teal-ink); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-softer);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(95, 191, 192, .18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .85rem; color: var(--ink-3); margin-bottom: 22px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--teal-600); }

.footer {
  background: var(--navy-950);
  color: #97a8c6;
  padding-block: clamp(52px, 6vw, 80px) 32px;
  font-size: .93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand img { height: 46px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { max-width: 36ch; color: #8595b4; font-size: .92rem; }

.footer h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #97a8c6; }
.footer a:hover { color: var(--teal-400); }

.footer .muted { color: #8595b4; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: .84rem;
  color: #6f8098;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #b9c6dd;
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--teal-600); border-color: var(--teal-600); color: #04252a; transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

.risk-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: .8rem;
  line-height: 1.55;
  color: #8595b4;
}

.seo-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.seo-links a {
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #7d8ead;
}
.seo-links a:hover { border-color: var(--teal-600); color: var(--teal-400); }

.note {
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 3px solid var(--teal-500);
  background: rgba(95, 191, 192, .08);
  font-size: .94rem;
  color: var(--ink-2);
}
.note--warn { border-left-color: var(--gold-500); background: rgba(224, 163, 60, .09); }

.tag-list { display: flex; flex-wrap: wrap; gap: 9px; }

.legal-body h2 { margin-top: 2.5rem; font-size: 1.5rem; }
.legal-body h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.legal-body { max-width: 76ch; }

.toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 2.5rem;
}
.toc h2 { margin-top: 0; font-size: 1.05rem; }
.toc ul { margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(22px); }
.js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible, html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .topbar, .cta-band, .btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding-block: 12pt; }
}
