/* =========================================================
   Dr. Alessandro Prudente · Urologia
   Design system / shared styles
   ========================================================= */

:root{
  /* Brand palette */
  --navy:        #0d2240;
  --navy-deep:   #081a31;
  --navy-700:    #173a63;
  --navy-soft:   #2a4a72;
  --teal:        #1f5450;
  --teal-bright: #2a6f68;
  --teal-faint:  #e7efed;
  --gold:        #c2a04c;
  --gold-2:      #ab8a36;
  --gold-soft:   #e7d6a6;

  --cream:   #fcfcfd;
  --cream-2: #f3f4f6;
  --white:   #ffffff;

  --ink:    #16243a;
  --muted:  #5d6878;
  --muted-2:#8b94a1;
  --line:   rgba(13,34,64,0.10);
  --line-2: rgba(13,34,64,0.06);

  --wa: #1faa55;
  --wa-dark: #16863f;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', -apple-system, system-ui, sans-serif;

  --r-sm: 9px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(13,34,64,.05), 0 3px 10px rgba(13,34,64,.04);
  --shadow-md: 0 14px 36px -16px rgba(13,34,64,.22);
  --shadow-lg: 0 40px 80px -28px rgba(13,34,64,.32);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  font-size:18px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.08; color:var(--navy); margin:0; letter-spacing:-.01em; }
p{ margin:0 0 1em; text-wrap:pretty; }
::selection{ background:var(--gold-soft); color:var(--navy-deep); }

/* ---------- Layout helpers ---------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block: clamp(64px, 9vw, 128px); }
.section--tight{ padding-block: clamp(48px, 6vw, 80px); }
.center{ text-align:center; }
.measure{ max-width:62ch; }
.measure-sm{ max-width:46ch; }
.mx-auto{ margin-inline:auto; }

.eyebrow{
  font-family:var(--sans);
  font-size:.78rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--teal-bright); margin:0 0 18px;
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:1.5px; background:var(--gold); display:inline-block; }
.eyebrow.is-light{ color:var(--gold-soft); }
.eyebrow.center{ justify-content:center; }

h1.display{ font-size:clamp(2.6rem, 5.6vw, 4.6rem); }
h2.title{ font-size:clamp(2rem, 3.8vw, 3.1rem); }
h3.subtitle{ font-size:clamp(1.4rem, 2.2vw, 1.9rem); }
.lead{ font-size:clamp(1.12rem,1.5vw,1.32rem); color:var(--muted); line-height:1.66; }

/* ---------- Buttons ---------- */
.btn{
  --bg:var(--navy); --fg:#fff; --bd:transparent;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 28px; border-radius:999px;
  font-family:var(--sans); font-weight:700; font-size:1rem; letter-spacing:.005em;
  background:var(--bg); color:var(--fg); border:1.5px solid var(--bd);
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s;
  box-shadow:var(--shadow-sm); white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn:active{ transform:translateY(0); }
.btn--gold{ --bg:var(--gold); --fg:var(--navy-deep); }
.btn--gold:hover{ --bg:#cdab57; }
.btn--wa{ --bg:var(--wa); --fg:#fff; }
.btn--wa:hover{ --bg:var(--wa-dark); }
.btn--teal{ --bg:var(--teal); --fg:#fff; }
.btn--ghost{ --bg:transparent; --fg:var(--navy); --bd:var(--line); box-shadow:none; }
.btn--ghost:hover{ --bg:var(--white); }
.btn--ghost-light{ --bg:transparent; --fg:#fff; --bd:rgba(255,255,255,.32); box-shadow:none; }
.btn--ghost-light:hover{ --bg:rgba(255,255,255,.08); }
.btn--lg{ padding:19px 36px; font-size:1.06rem; }
.btn--block{ width:100%; }

/* ---------- Top bar ---------- */
.topbar{
  background:var(--navy-deep); color:rgba(255,255,255,.82);
  font-size:.82rem; letter-spacing:.01em;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; min-height:42px; gap:20px; }
.topbar a{ color:rgba(255,255,255,.82); transition:color .2s; }
.topbar a:hover{ color:#fff; }
.topbar__loc{ display:inline-flex; align-items:center; gap:8px; }
.topbar__loc svg{ width:15px; height:15px; color:var(--gold); }
.topbar__right{ display:inline-flex; align-items:center; gap:22px; }
.topbar__right svg{ width:14px; height:14px; vertical-align:-2px; margin-right:6px; color:var(--gold); }

/* ---------- Header / nav ---------- */
.site-header{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(14px); border-bottom:1px solid var(--line-2); }
.nav{ display:flex; align-items:center; justify-content:space-between; min-height:78px; gap:24px; }
.brand{ display:inline-flex; align-items:center; gap:13px; flex:none; }
.brand__mark{
  height:48px; width:auto; flex:none; display:block;
  object-fit:contain;
}
.brand__txt{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-family:var(--serif); font-size:1.15rem; color:var(--navy); font-weight:600; white-space:nowrap; }
.brand__role{ font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal-bright); font-weight:700; white-space:nowrap; }

.nav__links{ display:flex; align-items:center; gap:4px; }
.nav__links a{ padding:10px 15px; border-radius:10px; font-weight:600; font-size:.97rem; color:var(--ink); transition:background .2s,color .2s; }
.nav__links a:hover, .nav__links a.is-active{ background:var(--cream-2); color:var(--navy); }
.nav__cta{ display:flex; align-items:center; gap:12px; }

.has-menu{ position:relative; }
.has-menu>a::after{ content:"▾"; font-size:.65em; margin-left:6px; opacity:.6; }
.dropdown{
  position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%) translateY(8px);
  background:#fff; border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow-lg);
  padding:14px; width:min(620px,86vw); opacity:0; visibility:hidden; transition:.22s;
  display:grid; grid-template-columns:1fr 1fr; gap:4px;
}
.has-menu:hover .dropdown{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dropdown a{ display:flex; gap:11px; align-items:center; padding:11px 13px; border-radius:10px; font-size:.92rem; font-weight:600; }
.dropdown a:hover{ background:var(--cream); }
.dropdown a .dot{ width:8px;height:8px;border-radius:50%;background:var(--teal-bright);flex:none; }
.dropdown a.is-feature .dot{ background:var(--gold); }
.dropdown .dd-all{ grid-column:1/-1; margin-top:6px; border-top:1px solid var(--line-2); padding-top:12px; color:var(--teal-bright); }

.nav__toggle{ display:none; width:46px;height:46px;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--navy); align-items:center;justify-content:center; }
.nav__toggle svg{ width:24px;height:24px; }

/* mobile drawer */
.mobile-menu{ position:fixed; inset:0; z-index:80; background:var(--navy-deep); color:#fff; padding:24px var(--gutter); transform:translateY(-100%); transition:transform .35s cubic-bezier(.2,.8,.2,1); overflow:auto; }
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-menu a{ display:block; padding:16px 0; font-family:var(--serif); font-size:1.5rem; border-bottom:1px solid rgba(255,255,255,.12); color:#fff; }
.mobile-menu .mm-close{ background:none;border:1px solid rgba(255,255,255,.25); color:#fff; width:46px;height:46px;border-radius:12px; }
.mobile-menu .mm-cta{ margin-top:26px; display:grid; gap:12px; }
.mobile-menu .mm-cta .btn{ display:flex; align-items:center; justify-content:center; }

/* ---------- Floating WhatsApp ---------- */
.fab{
  position:fixed; right:22px; bottom:22px; z-index:70;
  display:inline-flex; align-items:center; gap:12px;
  background:var(--wa); color:#fff; padding:13px 20px 13px 14px; border-radius:999px;
  box-shadow:0 18px 40px -10px rgba(31,170,85,.6); font-weight:700;
  transition:transform .25s, box-shadow .25s;
}
.fab:hover{ transform:translateY(-3px); }
.fab svg{ width:28px; height:28px; }
.fab__txt{ font-size:.95rem; }
@media(max-width:560px){ .fab__txt{ display:none; } .fab{ padding:14px; } }

/* ---------- Hero ---------- */
.hero{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.hero::before{ content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(42,111,104,.34), transparent 55%),
    radial-gradient(90% 80% at -5% 110%, rgba(23,58,99,.6), transparent 60%);
  pointer-events:none; }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,64px); align-items:center;
  padding-block: clamp(48px,6vw,84px); position:relative; z-index:1; }
.hero h1{ color:#fff; }
.hero .lead{ color:rgba(255,255,255,.78); }
.hero__trust{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:30px; }
.hero__trust span{ display:inline-flex; align-items:center; gap:9px; font-size:.92rem; color:rgba(255,255,255,.82); font-weight:600; }
.hero__trust svg{ width:18px;height:18px;color:var(--gold); flex:none; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }

.hero__photo{ position:relative; }
.hero__photo-frame{
  position:relative; border-radius:var(--r-xl); overflow:hidden;
  background:linear-gradient(180deg,#eef0f2,#dfe3e7);
  box-shadow:var(--shadow-lg); aspect-ratio:4/4.4;
}
.hero__photo-frame img{ width:100%; height:100%; object-fit:cover; object-position:center 12%; }
.hero__badge{
  position:absolute; left:-18px; bottom:26px; background:#fff; color:var(--navy);
  border-radius:var(--r); padding:16px 20px; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:14px; max-width:260px;
}
.hero__badge .num{ font-family:var(--serif); font-size:2rem; color:var(--teal); line-height:1; }
.hero__badge small{ font-size:.78rem; color:var(--muted); display:block; line-height:1.3; }

/* ---------- Hero flowing FX ---------- */
.hero__fx{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.hero__fx .fx{ position:absolute; display:block; will-change:transform; mix-blend-mode:screen; }
.hero__fx .fx1{
  width:80vw; height:130vh; top:-26vh; left:14vw;
  border-radius:58% 42% 47% 53% / 64% 56% 44% 36%;
  background:linear-gradient(126deg,
    rgba(13,34,64,0) 16%,
    rgba(132,174,210,.60) 40%,
    rgba(74,116,156,.26) 55%,
    rgba(13,34,64,0) 80%);
  filter:blur(6px);
  transform:rotate(-10deg);
  animation:heroFx1 22s ease-in-out infinite alternate;
}
.hero__fx .fx2{
  width:62vw; height:110vh; bottom:-34vh; left:-6vw;
  border-radius:50% 50% 44% 56% / 58% 50% 50% 42%;
  background:linear-gradient(150deg,
    rgba(13,34,64,0) 22%,
    rgba(42,111,104,.40) 48%,
    rgba(96,150,150,.18) 60%,
    rgba(13,34,64,0) 84%);
  filter:blur(14px);
  transform:rotate(8deg);
  animation:heroFx2 28s ease-in-out infinite alternate;
}
.hero__fx .fx3{
  width:46vw; height:78vh; top:6vh; left:30vw;
  border-radius:48% 52% 60% 40% / 50% 44% 56% 50%;
  background:linear-gradient(112deg,
    rgba(13,34,64,0) 26%,
    rgba(176,204,228,.42) 47%,
    rgba(13,34,64,0) 72%);
  filter:blur(5px);
  transform:rotate(-4deg);
  animation:heroFx3 18s ease-in-out infinite alternate;
}
@keyframes heroFx1{ from{ transform:rotate(-10deg) translate(0,0); } to{ transform:rotate(-6deg) translate(-2.5vw,2vh); } }
@keyframes heroFx2{ from{ transform:rotate(8deg) translate(0,0); } to{ transform:rotate(4deg) translate(2vw,-2vh); } }
@keyframes heroFx3{ from{ transform:rotate(-4deg) translate(0,0) scale(1); } to{ transform:rotate(2deg) translate(-1.5vw,1.5vh) scale(1.06); } }
@media (prefers-reduced-motion: reduce){ .hero__fx .fx{ animation:none; } }

/* ---------- Marquee / societies ---------- */
.societies{ background:var(--white); border-bottom:1px solid var(--line-2); }
.societies .container{ display:flex; align-items:center; justify-content:center; gap:clamp(24px,5vw,64px); flex-wrap:wrap; padding-block:30px; }
.societies span{ font-weight:700; letter-spacing:.04em; color:var(--muted-2); font-size:.9rem; }
.societies .soc-label{ color:var(--teal-bright); font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; }

/* ---------- Generic section header ---------- */
.sec-head{ max-width:720px; margin-bottom:clamp(40px,5vw,64px); }
.sec-head.center{ margin-inline:auto; }

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

.feature{
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-lg);
  padding:34px 30px; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s;
}
.feature:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.feature .ic{ width:54px; height:54px; border-radius:15px; background:var(--teal-faint); color:var(--teal);
  display:grid; place-items:center; margin-bottom:20px; }
.feature .ic svg{ width:26px; height:26px; }
.feature h3{ font-size:1.3rem; margin-bottom:10px; }
.feature p{ color:var(--muted); font-size:1rem; margin:0; }

/* ---------- Procedure cards ---------- */
.proc-card{
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line-2);
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s; height:100%;
}
.proc-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.proc-card__media{ aspect-ratio:16/10; position:relative; overflow:hidden; }
.proc-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.proc-card:hover .proc-card__media img{ transform:scale(1.05); }
.proc-card__body{ padding:24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.proc-card__tag{ font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700; color:var(--teal-bright); margin-bottom:9px; }
.proc-card h3{ font-size:1.3rem; margin-bottom:8px; }
.proc-card p{ color:var(--muted); font-size:.96rem; margin:0 0 18px; }
.proc-card .more{ margin-top:auto; display:inline-flex; align-items:center; gap:8px; color:var(--navy); font-weight:700; font-size:.95rem; }
.proc-card .more svg{ width:17px;height:17px; transition:transform .25s; }
.proc-card:hover .more svg{ transform:translateX(4px); }
.proc-card.is-feature{ outline:2px solid var(--gold); outline-offset:-2px; }
.proc-card .flag{ position:absolute; top:14px; left:14px; background:var(--gold); color:var(--navy-deep); font-size:.7rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }

/* placeholder media */
.ph{
  background:
    repeating-linear-gradient(135deg, rgba(13,34,64,.05) 0 12px, rgba(13,34,64,.02) 12px 24px),
    var(--cream-2);
  display:grid; place-items:center; color:var(--muted-2);
}
.ph span{ font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:.74rem; letter-spacing:.05em; text-align:center; padding:8px 14px; }

/* ---------- Highlight procedure block (alternating) ---------- */
.spotlight{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,72px); align-items:center; }
.spotlight + .spotlight{ margin-top:clamp(56px,7vw,104px); }
.spotlight.reverse .spotlight__media{ order:2; }
.spotlight__media{ position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:5/4; }
.spotlight__media img{ width:100%;height:100%;object-fit:cover; }
.spotlight__tag{ display:inline-block; background:var(--teal-faint); color:var(--teal); font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; padding:8px 16px; border-radius:999px; margin-bottom:18px; }
.spotlight ul.checks{ list-style:none; padding:0; margin:22px 0 28px; display:grid; gap:13px; }
.spotlight ul.checks li{ display:flex; gap:12px; align-items:flex-start; color:var(--ink); }
.spotlight ul.checks svg{ width:22px;height:22px;color:var(--teal-bright); flex:none; margin-top:2px; }

/* checklist outside spotlight (e.g. procedure pages) */
ul.checks{ list-style:none; padding:0; margin:22px 0 28px; display:grid; gap:13px; }
ul.checks li{ display:flex; gap:12px; align-items:flex-start; color:var(--ink); }
ul.checks svg{ width:22px;height:22px;color:var(--teal-bright); flex:none; margin-top:2px; }

/* ---------- Authority / stats band ---------- */
.stats{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.stats::after{ content:""; position:absolute; inset:0; background:radial-gradient(80% 120% at 100% 0%, rgba(42,111,104,.3), transparent 55%); }
.stats .container{ position:relative; z-index:1; }
.stats__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat .n{ font-family:var(--serif); font-size:clamp(2.6rem,4.5vw,3.6rem); color:var(--gold-soft); line-height:1; }
.stat .l{ display:block; margin-top:10px; color:rgba(255,255,255,.74); font-size:.95rem; }
.stat + .stat{ position:relative; }

/* ---------- About strip ---------- */
.about__media{ position:relative; }
.about__frame{ border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/4.6; background:#e6e9ec; }
.about__frame img{ width:100%;height:100%;object-fit:cover; object-position:center 15%; }
.about__sig{ position:absolute; right:-14px; bottom:24px; background:#fff; border-radius:var(--r); padding:16px 22px; box-shadow:var(--shadow-lg); }
.about__sig .s-name{ font-family:var(--serif); font-size:1.3rem; color:var(--navy); }
.about__sig .s-role{ font-size:.8rem; color:var(--teal-bright); font-weight:700; letter-spacing:.04em; }
.cred-list{ list-style:none; padding:0; margin:26px 0 0; display:grid; gap:16px; }
.cred-list li{ display:flex; gap:14px; align-items:flex-start; }
.cred-list .ic{ width:42px;height:42px;border-radius:11px;background:var(--cream-2);color:var(--navy);display:grid;place-items:center;flex:none; }
.cred-list .ic svg{ width:20px;height:20px; }
.cred-list b{ color:var(--navy); display:block; font-family:var(--sans); }
.cred-list span{ color:var(--muted); font-size:.95rem; }

/* ---------- FAQ ---------- */
.faq{ max-width:840px; margin-inline:auto; }
.faq__item{ border-bottom:1px solid var(--line); }
.faq__q{ width:100%; background:none; border:none; text-align:left; padding:26px 48px 26px 0; position:relative;
  font-family:var(--serif); font-size:clamp(1.15rem,1.8vw,1.4rem); color:var(--navy); }
.faq__q::after{ content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%); font-family:var(--sans); font-weight:400; font-size:1.7rem; color:var(--teal-bright); transition:transform .3s; }
.faq__item.open .faq__q::after{ transform:translateY(-50%) rotate(45deg); }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .4s ease, padding .4s ease; }
.faq__a p{ color:var(--muted); padding-bottom:26px; margin:0; max-width:70ch; }
.faq__item.open .faq__a{ max-height:480px; }

/* ---------- CTA band ---------- */
.cta-band{ background:linear-gradient(135deg,var(--teal),var(--teal-bright)); color:#fff; border-radius:var(--r-xl); padding:clamp(40px,6vw,72px); position:relative; overflow:hidden; }
.cta-band::after{ content:""; position:absolute; right:-60px; top:-60px; width:280px;height:280px;border-radius:50%; background:rgba(255,255,255,.07); }
.cta-band h2{ color:#fff; }
.cta-band .lead{ color:rgba(255,255,255,.86); }
.cta-band__row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.cta-band__inner{ position:relative; z-index:1; max-width:680px; }

.cta-full{ background:var(--navy); color:#fff; text-align:center; position:relative; overflow:hidden; }
.cta-full::before{ content:""; position:absolute; inset:0; background:radial-gradient(70% 120% at 50% 0%, rgba(42,111,104,.34), transparent 60%); }
.cta-full .container{ position:relative; z-index:1; }
.cta-full h2{ color:#fff; }
.cta-full .lead{ color:rgba(255,255,255,.78); }
.cta-full .cta-band__row{ justify-content:center; }

/* ---------- Footer ---------- */
.footer{ background:var(--navy-deep); color:rgba(255,255,255,.72); padding-top:clamp(56px,7vw,90px); }
.footer__grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; }
.footer h4{ color:#fff; font-family:var(--sans); font-size:.82rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom:20px; }
.footer a{ color:rgba(255,255,255,.72); display:block; padding:6px 0; transition:color .2s; }
.footer a:hover{ color:#fff; }
.footer .brand__name{ color:#fff; }
.footer .brand__role{ color:var(--gold-soft); }
.footer__about{ font-size:.95rem; line-height:1.7; margin:20px 0 0; max-width:34ch; }
.footer__soc{ display:flex; gap:12px; margin-top:22px; }
.footer__soc a{ width:42px;height:42px;border-radius:11px;border:1px solid rgba(255,255,255,.16);display:grid;place-items:center;padding:0; }
.footer__soc svg{ width:19px;height:19px; }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:clamp(40px,5vw,64px); padding-block:26px; font-size:.84rem; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer__bottom .disc{ max-width:60ch; color:rgba(255,255,255,.5); }

/* ---------- Breadcrumb ---------- */
.crumb{ font-size:.86rem; color:var(--muted); padding-top:26px; }
.crumb a:hover{ color:var(--teal-bright); }
.crumb span{ color:var(--navy); font-weight:600; }

/* ---------- LP specifics ---------- */
.lp-hero{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.lp-hero::before{ content:""; position:absolute; inset:0; background:radial-gradient(110% 90% at 90% 0%, rgba(42,111,104,.32), transparent 55%); }
.lp-hero__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,4vw,60px); align-items:center; padding-block:clamp(40px,5vw,72px); position:relative; z-index:1; }
.lp-pill{ display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); color:#fff; padding:8px 16px; border-radius:999px; font-size:.85rem; font-weight:600; margin-bottom:22px; }
.lp-pill svg{ width:16px;height:16px;color:var(--gold); }

.steps{ counter-reset:step; display:grid; gap:20px; }
.step{ display:flex; gap:20px; align-items:flex-start; background:#fff; border:1px solid var(--line-2); border-radius:var(--r-lg); padding:26px 28px; box-shadow:var(--shadow-sm); }
.step::before{ counter-increment:step; content:counter(step,decimal-leading-zero); font-family:var(--serif); font-size:1.6rem; color:var(--gold-2); flex:none; width:48px; }
.step h3{ font-size:1.2rem; margin-bottom:6px; }
.step p{ color:var(--muted); margin:0; font-size:.98rem; }

.myth{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.myth__card{ background:#fff; border:1px solid var(--line-2); border-radius:var(--r-lg); padding:28px; box-shadow:var(--shadow-sm); }
.myth__card .tag{ display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.myth__card.is-myth .tag{ color:#b4453c; }
.myth__card.fact .tag{ color:var(--teal-bright); }
.myth__card .tag svg{ width:18px;height:18px; }
.myth__card p{ margin:0; color:var(--muted); }

.video-wrap{ position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:16/9; background:#06101f; }
.video-wrap iframe{ width:100%;height:100%;border:0; }
.video-ph{ position:absolute; inset:0; display:grid; place-items:center; background:linear-gradient(135deg,var(--navy),var(--navy-700)); color:#fff; text-align:center; cursor:pointer; }
.video-ph .play{ width:84px;height:84px;border-radius:50%;background:rgba(255,255,255,.16); border:2px solid rgba(255,255,255,.4); display:grid;place-items:center; margin:0 auto 16px; transition:transform .25s, background .25s; }
.video-ph:hover .play{ transform:scale(1.07); background:rgba(255,255,255,.26); }
.video-ph .play svg{ width:34px;height:34px; color:#fff; margin-left:5px; }
.video-ph small{ display:block; color:rgba(255,255,255,.65); font-family:ui-monospace,monospace; font-size:.72rem; margin-top:6px; }

.symptom-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.symptom{ display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--line-2); border-radius:var(--r); padding:20px 22px; box-shadow:var(--shadow-sm); }
.symptom svg{ width:24px;height:24px;color:var(--teal-bright);flex:none;margin-top:1px; }
.symptom b{ display:block; color:var(--navy); margin-bottom:3px; }
.symptom span{ color:var(--muted); font-size:.94rem; }

/* ---------- LP sticky bar ---------- */
.lp-sticky{ position:fixed; left:0; right:0; bottom:0; z-index:65; background:rgba(8,26,49,.96); backdrop-filter:blur(8px); color:#fff;
  transform:translateY(110%); transition:transform .4s cubic-bezier(.2,.8,.2,1); border-top:1px solid rgba(255,255,255,.1); }
.lp-sticky.show{ transform:translateY(0); }
.lp-sticky .container{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding-block:14px; }
.lp-sticky b{ font-family:var(--serif); font-size:1.15rem; font-weight:500; }
.lp-sticky small{ display:block; color:rgba(255,255,255,.6); font-size:.82rem; }
.lp-sticky .acts{ display:flex; gap:10px; flex:none; }
@media(max-width:680px){ .lp-sticky .txt{ display:none; } .lp-sticky .acts{ width:100%; } .lp-sticky .acts .btn{ flex:1; } }

/* ---------- Utility surfaces ---------- */
.bg-cream{ background:var(--cream); }
.bg-cream-2{ background:var(--cream-2); }
.bg-white{ background:var(--white); }
.bg-teal-faint{ background:var(--teal-faint); }

.note{ display:inline-flex; align-items:center; gap:8px; font-size:.82rem; color:var(--muted-2); font-family:ui-monospace,monospace; }

/* fade-in on scroll */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media(max-width:1120px){
  .nav__links, .topbar{ display:none; }
  .nav__toggle{ display:inline-flex; }
  .nav__cta .btn--ghost{ display:none; }
  .nav__cta{ margin-left:auto; margin-right:16px; }
}
@media(max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:34px; }
  .stats__grid{ grid-template-columns:repeat(2,1fr); gap:36px; }
}
@media(max-width:900px){
  .hero__grid, .spotlight, .lp-hero__grid, .about__grid{ grid-template-columns:1fr; }
  .spotlight.reverse .spotlight__media{ order:0; }
  .hero__photo{ max-width:440px; margin-inline:auto; }
  .about__grid{ gap:40px; }
}
@media(max-width:640px){
  body{ font-size:17px; }
  .grid-2, .grid-3, .grid-4, .myth, .symptom-grid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr; }
  .stats__grid{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .hero__badge{ left:0; }
  .btn{ width:100%; }
  .hero__actions .btn, .cta-band__row .btn{ width:100%; }
}
.about__grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(32px,5vw,72px); align-items:center; }

/* procedure subpage 2-col */
.proc-layout{ display:grid; grid-template-columns:1.6fr .9fr; gap:clamp(32px,5vw,64px); align-items:start; }
@media(max-width:900px){
  .proc-layout{ grid-template-columns:1fr; }
  .proc-layout aside{ position:static !important; }
}
