/* ============================================================
   EvoVero — Design System
   Premium navy/blue, flowing ribbon motif, fully rounded.
   ============================================================ */

:root {
  /* Brand palette */
  --navy:        #1E2A52;
  --navy-deep:   #0E1733;
  --navy-abyss:  #080E20;
  --blue:        #3A6BB5;
  --blue-bright: #5B8DEF;
  --blue-light:  #8FB0E0;
  --white:       #FAFAFA;

  /* Functional surfaces */
  --canvas:      #F6F8FD;   /* off-white page bg */
  --surface:     #FFFFFF;   /* cards */
  --surface-2:   #EEF3FB;   /* recessed */
  --ink:         #16203D;   /* near-navy text on light */
  --ink-soft:    #3C466A;   /* muted body on light (darkened for readability) */
  --line:        #E2E9F5;   /* hairline */

  /* On-dark text */
  --on-dark:        #F3F6FC;
  --on-dark-soft:   #B9C6E4;
  --on-dark-faint:  rgba(255,255,255,.10);

  /* Gradients */
  --grad-hero: radial-gradient(120% 120% at 80% -10%, #2A3E78 0%, rgba(42,62,120,0) 55%),
               radial-gradient(90% 90% at 0% 110%, #2E5BA6 0%, rgba(46,91,166,0) 50%),
               linear-gradient(160deg, #15204A 0%, #0E1733 55%, #080E20 100%);
  --grad-blue: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 60%, var(--navy) 120%);
  --grad-text: linear-gradient(100deg, #FFFFFF 0%, #CFE0FF 55%, #8FB0E0 100%);

  /* Radius — rounded everything */
  --r-xs:  10px;
  --r-sm:  16px;
  --r:     22px;
  --r-lg:  30px;
  --r-xl:  40px;
  --r-pill: 999px;

  /* Shadows — soft, blue-tinted */
  --sh-sm: 0 2px 8px rgba(20,30,60,.06);
  --sh:    0 14px 36px rgba(20,30,60,.10), 0 2px 6px rgba(20,30,60,.05);
  --sh-lg: 0 30px 70px rgba(16,24,52,.16), 0 6px 16px rgba(16,24,52,.07);
  --sh-glow: 0 20px 60px rgba(58,107,181,.35);

  /* Type */
  --font-head: 'Sora', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --maxw-wide: 1320px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 132px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { border-radius: var(--r); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.12rem; }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--maxw-wide); }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); padding: 7px 14px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.eyebrow--on-dark { color: var(--blue-light); background: rgba(143,176,224,.10); border-color: rgba(143,176,224,.20); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(91,141,239,.20); }
.section-head { max-width: 740px; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 70px rgba(58,107,181,.45); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue-light); background: var(--surface); }
.btn--on-dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.btn--on-dark:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--blue); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease, padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  padding-block: 13px; border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Blur/solid bar treatment (applied when stuck, and always on inner pages) */
.nav.is-stuck, .nav--solid {
  background: rgba(246,248,253,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line); box-shadow: var(--sh-sm);
}
.nav.is-stuck { padding-block: 11px; }

/* Homepage only: hide at the very top, reveal once the user scrolls */
.nav--hero { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.nav--hero.is-stuck { transform: none; opacity: 1; pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand img { height: 34px; width: auto; border-radius: 9px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--surface-2); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after { content:''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease; }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 12px; min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease; z-index: 110;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); align-items: flex-start; }
.drop a:hover { background: var(--surface-2); }
.drop .ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; }
.drop .ic svg { width: 19px; height: 19px; }
.drop .t { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); }
.drop .d { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   Hero (sticky stacked-reveal base)
   ============================================================ */
.hero {
  position: sticky; top: 0; z-index: 0;
  min-height: 100svh; display: flex; align-items: center;
  background: var(--grad-hero); color: var(--on-dark);
  overflow: hidden; isolation: isolate;
}
/* Everything after the hero rides above it so the pinned hero never bleeds through */
.after-hero { position: relative; z-index: 1; }
.hero__ribbon { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .9; }
.hero__ribbon svg { position: absolute; width: 140%; height: auto; left: -20%; }
.hero__grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; width: 100%; }
.hero h1 { color: #fff; }
.hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--on-dark-soft); max-width: 540px; line-height: 1.55; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; color: var(--on-dark-soft); font-size: .9rem; }
.hero__trust .star { color: #FFC861; }
.hero__trust b { color: #fff; font-family: var(--font-head); }

/* Hero visual — built "results" card, no photo */
.hero__visual { position: relative; }
.glass-card {
  background: linear-gradient(165deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--sh-lg); backdrop-filter: blur(10px);
}
.glass-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.glass-head .t { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff; }
.glass-head .t .pulse { width: 9px; height: 9px; border-radius: 50%; background: #6BE0A0; box-shadow: 0 0 0 4px rgba(107,224,160,.18); }
.glass-head .live { font-size: .72rem; font-weight: 600; color: #6BE0A0; background: rgba(107,224,160,.12); padding: 5px 11px; border-radius: var(--r-pill); }
.glass-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.glass-chips span { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--on-dark); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 7px 13px; border-radius: var(--r-pill); }
.glass-chips span svg { width: 14px; height: 14px; color: var(--blue-light); }
.glass-bars { display: flex; align-items: flex-end; gap: 10px; height: 116px; margin-top: 18px; }
.glass-bars i { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--blue-bright), rgba(91,141,239,.25)); display: block; }
.lead-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 13px 16px; margin-top: 14px; }
.lead-pill .av { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-blue); flex: none; display:grid; place-items:center; color:#fff; font-family:var(--font-head); font-weight:600; font-size:.85rem;}
.lead-pill .tx { font-size: .85rem; color: var(--on-dark); line-height: 1.3; }
.lead-pill .tx b { color: #fff; font-family: var(--font-head); }
.lead-pill .badge { margin-left: auto; font-size: .72rem; font-weight: 600; color: #7BFFB0; background: rgba(46,204,113,.14); padding: 5px 10px; border-radius: var(--r-pill); white-space: nowrap; }

/* ============================================================
   Panel that rises OVER the sticky hero (stacked reveal)
   ============================================================ */
.over-hero { position: relative; z-index: 3; margin-top: -42px; border-radius: var(--r-xl) var(--r-xl) 0 0; background: var(--canvas); box-shadow: 0 -30px 60px rgba(8,14,32,.28); }
.panel { position: relative; background: var(--canvas); }
.panel--dark { background: var(--navy-deep); color: var(--on-dark); }
.panel--dark h2, .panel--dark h3 { color: #fff; }
.panel--dark p { color: var(--on-dark-soft); }
.panel--rise { border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: -36px; z-index: 3; box-shadow: 0 -24px 50px rgba(8,14,32,.16); }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(143,176,224,.5); }
.card .ic, .feat-ic {
  width: 54px; height: 54px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); margin-bottom: 20px;
}
.card .ic svg, .feat-ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; color: var(--ink); }
.card p { font-size: .98rem; color: var(--ink-soft); }
.card__link { margin-top: 18px; }

.card--dark { background: linear-gradient(165deg, #1A264C, #121B3A); border-color: rgba(143,176,224,.14); color: var(--on-dark); }
.card--dark h3 { color: #fff; } .card--dark p { color: var(--on-dark-soft); }
.card--feature { display: flex; flex-direction: column; }

/* number-led step cards (white, dark text — always readable on dark panels) */
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh); position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.step__n { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; letter-spacing: -.04em;
  background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .95; }
.step h3 { margin: 14px 0 10px; color: var(--ink); }
.step p { color: var(--ink-soft); }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); letter-spacing: -.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--on-dark-soft); font-size: .95rem; }

/* ============================================================
   Pricing / stages (no fixed numbers)
   ============================================================ */
.stage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease; }
.stage:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.stage__tag { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.stage h3 { margin: 12px 0; color: var(--ink); }
.stage p { color: var(--ink-soft); }
.stage ul { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.stage li { display: flex; gap: 11px; font-size: .96rem; color: var(--ink-soft); }
.stage li svg { flex: none; width: 19px; height: 19px; color: var(--blue); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 6px 24px; margin-bottom: 14px; box-shadow: var(--sh-sm); transition: box-shadow .25s; }
.faq details[open] { box-shadow: var(--sh); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s, background .25s, color .25s; color: var(--blue); }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--grad-blue); color: #fff; border-color: transparent; }
.faq p { padding: 0 0 20px; font-size: .98rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--grad-hero); color: var(--on-dark); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
.cta-band h2 { color: #fff; position: relative; z-index: 2; }
.cta-band p { color: var(--on-dark-soft); position: relative; z-index: 2; max-width: 560px; margin: 16px auto 0; }
.cta-band .hero__cta { justify-content: center; position: relative; z-index: 2; }
.cta-band .hero__ribbon { opacity: .55; }

/* ============================================================
   Footer
   ============================================================ */
.footer { position: relative; z-index: 1; background: var(--navy-abyss); color: var(--on-dark-soft); padding-block: 70px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; }
.footer p { color: var(--on-dark-soft); font-size: .95rem; margin-top: 16px; max-width: 300px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: var(--on-dark-soft); font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .86rem; }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   Scroll reveal + progress
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-blue); transition: width .1s linear; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero { position: relative; min-height: auto; padding-block: 130px 70px; }
  .over-hero, .panel--rise { margin-top: 0; border-radius: 0; box-shadow: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .grid-3, .grid-4, .stats, .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 12px; box-shadow: var(--sh-lg); gap: 2px; }
  .nav.is-open .nav__links a { padding: 13px 16px; }
  .drop { position: static; transform: none; min-width: 0; grid-template-columns: 1fr; box-shadow: none; border: none; padding: 4px 0 4px 12px; opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stats, .footer__top { grid-template-columns: 1fr; }
  .card, .step, .stage { padding: 24px; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .footer__top { gap: 30px; }
}

/* ============================================================
   Inner pages — page hero + body
   ============================================================ */
.page-hero { position: relative; background: var(--grad-hero); color: var(--on-dark); overflow: hidden; isolation: isolate; padding: 142px 0 clamp(64px, 8vw, 104px); }
.page-hero .hero__ribbon { opacity: .85; }
.page-hero__inner { position: relative; z-index: 2; max-width: 840px; }
.page-hero h1 { color: #fff; margin-top: 18px; }
.page-hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--on-dark-soft); margin-top: 18px; max-width: 640px; font-size: clamp(1.05rem,1.5vw,1.25rem); line-height: 1.55; }
.page-hero .hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.page-body { position: relative; z-index: 2; background: var(--canvas); border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: -30px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--on-dark-soft); position: relative; z-index: 2; }
.breadcrumb a:hover { color: #fff; }

/* Included / checklist grid */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.incl-item { display: flex; gap: 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease; }
.incl-item:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.incl-item .c { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); }
.incl-item .c svg { width: 19px; height: 19px; }
.incl-item h4 { margin-bottom: 5px; color: var(--ink); }
.incl-item p { font-size: .92rem; color: var(--ink-soft); }

/* Two-column split (text + panel) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.split--narrow { grid-template-columns: 1fr 1fr; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-method { display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); margin-bottom: 14px; }
.contact-method .c { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; }
.contact-method .c svg { width: 20px; height: 20px; }
.contact-method .t { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.contact-method .d { font-size: .9rem; color: var(--ink-soft); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,4vw,36px); box-shadow: var(--sh); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--canvas); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 4px rgba(91,141,239,.14); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkrow { display: flex; gap: 18px; flex-wrap: wrap; }
.checkrow label { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; font-size: .95rem; color: var(--ink-soft); margin: 0; }
.checkrow input { width: auto; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--grad-hero); position: relative; overflow: hidden; display: grid; place-items: center; }
.post-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.post-card .thumb .pl { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; color: rgba(255,255,255,.92); font-size: 1.1rem; padding: 0 24px; text-align: center; letter-spacing: -.01em; }
.post-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--blue); font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 1.2rem; }
.post-card p { font-size: .94rem; color: var(--ink-soft); }
.post-card .link-arrow { margin-top: auto; }
.empty-note { text-align: center; color: var(--ink-soft); background: var(--surface); border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 48px 24px; }

/* Article (blog post body) */
.article { max-width: 760px; margin-inline: auto; }
.article > * { margin-bottom: 18px; }
.article h2 { margin: 40px 0 10px; }
.article h3 { margin: 28px 0 8px; }
.article p, .article li { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.article ul { padding-left: 0; }
.article li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.article li::before { content: ''; position: absolute; left: 7px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.article a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* Legal prose */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { margin: 38px 0 12px; }
.prose h3 { margin: 26px 0 8px; font-size: 1.2rem; }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 0; margin-bottom: 14px; }
.prose li { position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--ink-soft); }
.prose li::before { content: ''; position: absolute; left: 6px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 940px) {
  .incl, .contact-grid, .split, .split--narrow, .post-grid { grid-template-columns: 1fr 1fr; }
  .split__visual { display: none; }
}
@media (max-width: 620px) {
  .incl, .contact-grid, .split, .split--narrow, .post-grid, .field-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 116px; }
  .page-body { border-radius: 0; margin-top: 0; }
}

/* Motion off */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { position: relative; }
  .over-hero, .panel--rise, .page-body { margin-top: 0; }
  * { transition: none !important; animation: none !important; }
}
