/* ==========================================================================
   TMJ Insurance — Variant B (light / cobalt / lime)
   ========================================================================== */
:root {
  --bg: #F1F3F6;
  --paper: #FFFFFF;
  --ink: #0B0D12;
  --ink-2: #1A1E27;
  --muted: #5B6270;
  --blue: #2D4BFF;
  --blue-600: #1F38E0;
  --blue-50: #E8ECFF;
  --lime: #C8F560;
  --lime-600: #B4E43F;
  --line: rgba(11, 13, 18, .1);

  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --wrap: 1320px;
  --gut: clamp(16px, 4vw, 48px);
  --r: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.6 var(--f-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
[hidden] { display: none !important; }
.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; white-space: nowrap;
  cursor: pointer; transition: transform .5s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .4s;
}
.btn .ic { transition: transform .5s var(--ease); }
.btn:hover .ic:last-child { transform: translateX(4px); }
.btn:active { transform: scale(.97); }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 12px 30px -12px rgba(45,75,255,.7); }
.btn--blue:hover { background: var(--blue-600); box-shadow: 0 18px 36px -12px rgba(45,75,255,.8); }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--blue); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; }

.tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; margin-bottom: 22px; }
.tag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); animation: pulse 2.2s infinite; }
.tag--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.tag--ink .tag__dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(200,245,96,.25); }
.tag--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.tag--light .tag__dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(200,245,96,.2); }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px transparent; } }

.title { font-size: clamp(40px, 5.6vw, 84px); line-height: .98; }
.lead { font-size: 19px; color: var(--muted); }
.hl { position: relative; display: inline-block; z-index: 0; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; z-index: -1; left: -.06em; right: -.06em; bottom: .06em; height: .38em;
  background: var(--lime); border-radius: 6px; transform: scaleX(0); transform-origin: left;
  transition: transform 1s .35s var(--ease);
}
.is-in .hl::after, .hl.is-in::after, .up.is-in .hl::after, .split.is-done .hl::after { transform: scaleX(1); }
.hl--lime { color: var(--lime); }
.hl--lime::after { display: none; }

.link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; font-size: 17px; border-bottom: 2px solid var(--ink); padding-bottom: 4px; }
.link .ic { transition: transform .4s var(--ease); }
.link:hover .ic { transform: translateX(4px); }

/* ---------- Reveal ---------- */
.up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.up.is-in { opacity: 1; transform: none; }
.in { opacity: 0; transform: translateY(24px); animation: rise 1.1s var(--ease) var(--d, .1s) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease); transition-delay: calc(var(--i) * 70ms + .1s); }
.split.is-go .w > span { transform: none; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { position: relative; font-family: var(--f-display); font-weight: 700; font-size: 30px; letter-spacing: -.05em; line-height: 1; }
.logo__mark i { position: absolute; right: -9px; top: -2px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.logo__text { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; line-height: 1.25; color: var(--muted); padding-left: 10px; border-left: 1px solid var(--line); margin-left: 6px; }
.logo--light { color: #fff; }
.logo--light .logo__mark i { background: var(--lime); }
.logo--light .logo__text { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; z-index: 50; top: 16px; left: var(--gut); right: var(--gut);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  max-width: calc(var(--wrap) - 2 * var(--gut)); margin: 0 auto;
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translateY(-140%); }
.nav .logo { padding: 10px 16px; border-radius: 999px; transition: background .3s, box-shadow .3s; }
.nav.is-scrolled .logo { background: rgba(255,255,255,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 8px 30px -12px rgba(11,13,18,.2); }
.nav__pill {
  display: flex; gap: 2px; padding: 6px; border-radius: 999px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.9); box-shadow: 0 10px 30px -14px rgba(11,13,18,.25);
}
.nav__pill a { position: relative; padding: 9px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 500; transition: background .25s, color .25s; }
.nav__pill a:hover { background: var(--ink); color: #fff; }
.nav__pill a.is-active { background: var(--blue-50); color: var(--blue); }
.nav__mobile-phone { display: none; }
.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-family: var(--f-display); font-weight: 600; font-size: 15px; transition: background .3s; }
.nav__phone:hover { background: #fff; }
.nav__phone .ic { width: 16px; height: 16px; color: var(--blue); }
.burger { display: none; position: relative; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--ink); cursor: pointer; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; border-radius: 2px; background: #fff; transition: transform .4s var(--ease), top .4s var(--ease); }
.burger span:first-child { top: 18px; } .burger span:last-child { top: 26px; }
.burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(120px, 16vh, 170px) 0 clamp(60px, 8vh, 100px); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 900px; height: 900px; right: -300px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(45,75,255,.14), transparent 65%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero__title { font-size: clamp(50px, 7.6vw, 116px); line-height: .92; letter-spacing: -.05em; margin-bottom: 30px; }
.hero__lead { font-size: clamp(17px, 1.35vw, 19px); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero__lead strong { color: var(--ink); font-weight: 600; }
.picker { margin-bottom: 34px; }
.picker__label { font-family: var(--f-display); font-weight: 600; font-size: 15px; margin-bottom: 12px; }
.picker__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px 11px 13px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--paper); font-weight: 500; font-size: 14.5px; cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease);
}
.chip .ic { width: 18px; height: 18px; color: var(--blue); transition: color .3s; }
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.is-on .ic { color: var(--lime); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.showcase { position: relative; padding: 0 0 40px 40px; }
.arch { position: relative; aspect-ratio: 4 / 5; border-radius: 999px 999px 36px 36px; overflow: hidden; background: var(--ink); box-shadow: 0 50px 80px -40px rgba(11,13,18,.45); }
.arch__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.15); transition: opacity 1s var(--ease), transform 1.6s var(--ease); }
.arch__img.is-on { opacity: 1; transform: scale(1); }
.orbit { position: absolute; top: 4%; right: -18px; width: 132px; height: 132px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); box-shadow: 0 20px 40px -18px rgba(11,13,18,.4); }
.orbit > svg { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.orbit text { font-family: var(--f-display); font-weight: 600; font-size: 13.5px; letter-spacing: .12em; fill: var(--ink); }
.orbit span .ic { fill: currentColor; width: 22px; height: 22px; }
.orbit span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--lime); }
@keyframes spin { to { transform: rotate(360deg); } }
.show-card {
  position: absolute; left: 0; bottom: 0; width: min(340px, 82%);
  padding: 22px 22px 20px; border-radius: 24px; background: var(--paper);
  box-shadow: 0 30px 60px -24px rgba(11,13,18,.35); transition: transform .6s var(--ease);
}
.show-card:hover { transform: translateY(-6px); }
.show-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.show-card__kicker { font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.show-card__go { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); transition: transform .5s var(--ease); }
.show-card:hover .show-card__go { transform: rotate(45deg); }
.show-card__go .ic { width: 16px; height: 16px; }
.show-card strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 12px; }
.show-card li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.show-card li::before { content: ""; position: absolute; left: 0; top: .6em; width: 12px; height: 7px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }
.show-card.is-swap strong, .show-card.is-swap ul, .show-card.is-swap .show-card__kicker { opacity: 0; transform: translateY(8px); }
.show-card strong, .show-card ul, .show-card__kicker { transition: opacity .35s, transform .5s var(--ease); }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; background: var(--blue); color: #fff; transform: rotate(-1.6deg); margin: 10px -20px 0; padding: 20px 0; box-shadow: 0 20px 40px -20px rgba(45,75,255,.5); }
.ticker__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: tick 38s linear infinite; font-family: var(--f-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: -.02em; white-space: nowrap; }
.ticker i { font-style: normal; color: var(--lime); font-size: .8em; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec { padding: clamp(80px, 11vw, 150px) 0 0; }
.head { margin-bottom: clamp(40px, 5vw, 64px); }
.head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.head--row .lead { max-width: 380px; margin: 0; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 16px; }
.tile { display: flex; flex-direction: column; min-height: 290px; padding: 28px; border-radius: var(--r); transition: transform .6s var(--ease); }
.tile:hover { transform: translateY(-6px) rotate(-.6deg); }
.tile__label { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.tile__num { margin-top: auto; font-family: var(--f-display); font-weight: 600; font-size: clamp(52px, 5.4vw, 84px); letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.tile p { margin: 14px 0 0; font-size: 14.5px; opacity: .8; max-width: 260px; }
.tile--blue { background: var(--blue); color: #fff; }
.tile--lime { background: var(--lime); }
.tile--white { background: var(--paper); border: 1px solid var(--line); }
.tile--ink { background: var(--ink); color: #fff; }

/* ---------- Stacking service cards ---------- */
.stack { display: grid; gap: 28px; }
.scard {
  position: sticky; top: calc(96px + var(--i, 0) * 16px);
  display: grid; grid-template-columns: 1fr 1fr; min-height: min(560px, 72vh);
  border-radius: 36px; overflow: hidden; transform-origin: center top;
  box-shadow: 0 -10px 40px -20px rgba(11,13,18,.25);
  will-change: transform;
}
.scard--1 { --i: 0; background: var(--blue); color: #fff; }
.scard--2 { --i: 1; background: var(--paper); }
.scard--3 { --i: 2; background: var(--lime); }
.scard--4 { --i: 3; background: var(--ink); color: #fff; }
.scard--5 { --i: 4; background: #E4E8F0; }
.scard__body { display: flex; flex-direction: column; padding: clamp(28px, 4vw, 56px); }
.scard__n { font-family: var(--f-display); font-weight: 500; font-size: 15px; opacity: .6; margin-bottom: auto; }
.scard h3 { font-size: clamp(34px, 4vw, 60px); margin: 40px 0 18px; }
.scard p { font-size: 17px; opacity: .82; max-width: 500px; margin-bottom: 24px; }
.scard .btn { align-self: flex-start; margin-top: 28px; }
.scard--1 .btn, .scard--4 .btn { background: #fff; color: var(--ink); }
.scard--1 .btn:hover, .scard--4 .btn:hover { background: var(--lime); }
.scard__media { position: relative; margin: 14px; border-radius: 26px; overflow: hidden; }
.scard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.05); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills li { padding: 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500; background: rgba(255,255,255,.16); }
.scard--2 .pills li, .scard--5 .pills li { background: var(--bg); }
.scard--2 .pills li { background: var(--blue-50); color: var(--blue); }
.scard--3 .pills li { background: rgba(11,13,18,.08); }
.scard--5 .pills li { background: #fff; }
.pills--line { margin: 28px 0 0; }
.pills--line li { background: var(--paper); border: 1px solid var(--line); transition: background .3s, color .3s, transform .4s var(--ease); }
.pills--line li:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- Workers comp ---------- */
.wc { margin: clamp(80px, 11vw, 150px) clamp(8px, 1.4vw, 20px) 0; padding: clamp(70px, 9vw, 120px) 0; background: var(--lime); border-radius: 48px; overflow: hidden; }
.wc__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.wc .title { font-size: clamp(36px, 4.4vw, 64px); }
.wc__big { display: flex; align-items: flex-start; font-family: var(--f-display); font-weight: 700; font-size: clamp(110px, 17vw, 260px); line-height: .85; letter-spacing: -.07em; margin: 14px 0 18px; font-variant-numeric: tabular-nums; }
.wc__cur { font-size: .45em; margin: .12em .04em 0 0; }
.wc__per { font-size: 19px; max-width: 460px; margin: 0; }
.wc__list { display: grid; gap: 10px; }
.wc__list li { display: grid; grid-template-columns: 48px 1fr; align-items: center; column-gap: 16px; padding: 20px 22px; border-radius: 22px; background: rgba(255,255,255,.55); transition: background .35s, transform .5s var(--ease); }
.wc__list li:hover { background: #fff; transform: translateX(-8px); }
.wc__list span { grid-row: span 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--lime); font-family: var(--f-display); font-weight: 600; font-size: 15px; }
.wc__list strong { font-family: var(--f-display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.wc__list em { font-style: normal; font-size: 14.5px; color: rgba(11,13,18,.65); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.collage { position: relative; height: clamp(440px, 46vw, 620px); }
.collage img { position: absolute; object-fit: cover; box-shadow: 0 40px 70px -35px rgba(11,13,18,.5); }
.collage__a { left: 0; top: 0; width: 72%; height: 78%; border-radius: 200px 200px 28px 28px; }
.collage__b { right: 0; bottom: 0; width: 52%; height: 52%; border-radius: 28px; border: 8px solid var(--bg); }
.collage__badge { position: absolute; left: 6%; bottom: 4%; display: flex; align-items: center; gap: 12px; padding: 14px 20px 14px 16px; border-radius: 999px; background: var(--ink); color: #fff; box-shadow: 0 20px 40px -20px rgba(11,13,18,.6); }
.collage__badge strong { font-family: var(--f-display); font-size: 30px; letter-spacing: -.04em; color: var(--lime); }
.collage__badge span { font-size: 12.5px; line-height: 1.3; opacity: .8; }
.about .title { margin-bottom: 26px; }
.about p { color: var(--muted); }
.about .lead { color: var(--ink); }

/* ---------- Process ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 34px; }
.steps__line { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 4px; background: rgba(11,13,18,.08); overflow: hidden; }
.steps__line span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue), var(--lime)); transform: scaleX(var(--p, 0)); transform-origin: left; }
.step { padding: 30px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(11,13,18,.3); }
.step__n { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--blue); color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 22px; margin-bottom: 40px; transition: background .3s, color .3s, transform .5s var(--ease); }
.step:hover .step__n { background: var(--lime); color: var(--ink); transform: rotate(-10deg); }
.step h3 { font-size: 26px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Carriers ---------- */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logos img { width: 100%; height: 96px; object-fit: contain; padding: 18px 20px; border-radius: 20px; background: var(--paper); filter: grayscale(1); opacity: .75; transition: filter .35s, opacity .35s, transform .5s var(--ease), box-shadow .5s; }
.logos img:hover { filter: none; opacity: 1; transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(11,13,18,.35); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq .title { margin-bottom: 24px; }
.faq .lead a { color: var(--blue); font-weight: 600; }
.acc { display: grid; gap: 10px; }
.acc details { border-radius: 22px; background: var(--paper); border: 1px solid var(--line); transition: background .3s; }
.acc details[open] { background: var(--ink); color: #fff; border-color: var(--ink); }
.acc summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; cursor: pointer; list-style: none; font-family: var(--f-display); font-weight: 600; font-size: 19px; letter-spacing: -.015em; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .ic { flex: none; width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--bg); color: var(--ink); transition: transform .5s var(--ease), background .3s; }
.acc details[open] summary .ic { transform: rotate(45deg); background: var(--lime); }
.acc details p { margin: 0; padding: 0 26px 24px; color: rgba(255,255,255,.75); max-width: 620px; }

/* ---------- Quote wizard ---------- */
.quote__box { position: relative; }
.quote__box {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 80px);
  padding: clamp(36px, 5vw, 72px); border-radius: 44px; background: var(--ink); color: rgba(255,255,255,.75); overflow: hidden; isolation: isolate;
}
.quote__box::before { content: ""; position: absolute; z-index: -1; width: 700px; height: 700px; left: -250px; bottom: -350px; border-radius: 50%; background: radial-gradient(circle, rgba(45,75,255,.55), transparent 65%); }
.quote__intro .title { color: #fff; margin-bottom: 22px; }
.quote__intro p { font-size: 17px; max-width: 420px; }
.quote__phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; font-family: var(--f-display); font-weight: 600; font-size: clamp(26px, 2.6vw, 36px); color: #fff; letter-spacing: -.03em; transition: color .3s; }
.quote__phone .ic { width: 44px; height: 44px; padding: 11px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.quote__phone:hover { color: var(--lime); }
.wizard { position: relative; padding: clamp(24px, 3vw, 36px); border-radius: 30px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); min-height: 440px; display: flex; flex-direction: column; }
.wizard__progress { height: 4px; border-radius: 4px; background: rgba(255,255,255,.12); overflow: hidden; }
.wizard__progress span { display: block; height: 100%; width: 33.3%; background: var(--lime); border-radius: 4px; transition: width .7s var(--ease); }
.wizard__count { margin: 14px 0 20px; font-family: var(--f-display); font-size: 14px; color: rgba(255,255,255,.5); }
.wstep { display: none; border: 0; padding: 0; margin: 0; flex: 1; }
.wstep.is-on { display: block; animation: stepIn .6s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(30px); } }
.wstep legend { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.03em; color: #fff; margin-bottom: 22px; padding: 0; }
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.options input { position: absolute; opacity: 0; pointer-events: none; }
.options span { display: flex; flex-direction: column; gap: 22px; padding: 20px; border-radius: 20px; border: 1.5px solid rgba(255,255,255,.14); color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 18px; cursor: pointer; transition: background .3s, border-color .3s, color .3s, transform .4s var(--ease); }
.options span .ic { width: 28px; height: 28px; color: var(--lime); transition: color .3s; }
.options span:hover { border-color: rgba(255,255,255,.5); transform: translateY(-3px); }
.options input:checked + span { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.options input:checked + span .ic { color: var(--ink); }
.options input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 3px; }
.options.is-error span { border-color: #FF6B6B; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.inp { display: block; margin-bottom: 12px; }
.inp span { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.inp input, .inp textarea { width: 100%; padding: 15px 18px; border-radius: 16px; border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: #fff; outline: none; resize: vertical; transition: border-color .3s, background .3s; }
.inp input:focus, .inp textarea:focus { border-color: var(--lime); background: rgba(255,255,255,.08); }
.inp textarea::placeholder { color: rgba(255,255,255,.35); }
.inp.is-error input { border-color: #FF6B6B; }
.wizard__note { font-size: 13px; color: rgba(255,255,255,.5); margin: 4px 0 0; }
.wizard__note a { text-decoration: underline; }
.wizard__nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.wizard__done { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; border-radius: 30px; background: var(--lime); color: var(--ink); opacity: 0; visibility: hidden; transform: scale(.96); transition: opacity .5s, transform .6s var(--ease), visibility .5s; }
.wizard.is-done .wizard__done { opacity: 1; visibility: visible; transform: none; }
.wizard__done > span { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--ink); color: var(--lime); margin-bottom: 18px; }
.wizard__done .ic { width: 34px; height: 34px; stroke-width: 2.6; }
.wizard__done strong { font-family: var(--f-display); font-size: 36px; letter-spacing: -.03em; }

/* ---------- Footer ---------- */
.foot { padding: clamp(80px, 11vw, 150px) 0 30px; }
.foot__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-bottom: clamp(30px, 4vw, 50px); border-bottom: 2px solid var(--ink);
}
.foot__cta span { font-family: var(--f-display); font-weight: 500; font-size: 20px; color: var(--muted); width: 100%; }
.foot__cta strong { font-family: var(--f-display); font-weight: 600; font-size: clamp(54px, 10vw, 150px); line-height: .9; letter-spacing: -.06em; transition: color .4s; }
.foot__cta i { display: grid; place-items: center; width: clamp(64px, 8vw, 120px); height: clamp(64px, 8vw, 120px); border-radius: 50%; background: var(--lime); transition: transform .6s var(--ease), background .3s; }
.foot__cta i .ic { width: 40%; height: 40%; }
.foot__cta:hover strong { color: var(--blue); }
.foot__cta:hover i { transform: rotate(45deg) scale(1.06); background: var(--blue); color: #fff; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 50px 0; }
.foot .logo--light { color: var(--ink); }
.foot .logo--light .logo__mark i { background: var(--blue); }
.foot .logo--light .logo__text { color: var(--muted); border-color: var(--line); }
.foot__about { margin: 18px 0 10px; color: var(--muted); max-width: 300px; }
.foot__lic { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600; }
.foot__col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.foot__col h4 { font-size: 14px; letter-spacing: 0; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.foot__col a, .foot__col span { display: inline-flex; align-items: flex-start; gap: 10px; transition: color .25s; }
.foot__col a:hover { color: var(--blue); }
.foot__col .ic { width: 17px; height: 17px; margin-top: 3px; color: var(--blue); }
.foot__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.foot__bottom p { margin: 0; }
.foot__top:hover { color: var(--ink); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__phone { display: none; }
  .nav__pill a { padding: 9px 12px; }
}
@media (max-width: 1024px) {
  .nav { grid-template-columns: 1fr auto; }
  .burger { display: block; }
  .nav__pill {
    position: fixed; inset: 0; z-index: -1; flex-direction: column; gap: 0; padding: 110px var(--gut) 30px; border-radius: 0;
    background: var(--bg); border: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav__pill.is-open { opacity: 1; visibility: visible; }
  .nav__pill a { padding: 16px 4px; border-radius: 0; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-weight: 600; font-size: 30px; letter-spacing: -.03em; }
  .nav__pill a:hover { background: none; color: var(--blue); }
  .nav__mobile-phone { display: flex; align-items: center; gap: 12px; color: var(--blue); }
  .nav__mobile-phone .ic { width: 26px; height: 26px; }
  .nav.menu-open .logo { background: none; box-shadow: none; }

  .hero__grid, .wc__grid, .about__grid, .faq__grid, .quote__box { grid-template-columns: 1fr; }
  .showcase { max-width: 520px; margin: 0 auto; width: 100%; }
  .bento { grid-template-columns: 1fr 1fr; }
  .scard { grid-template-columns: 1fr; min-height: 0; }
  .scard__media { height: 280px; order: -1; }
  .scard h3 { margin-top: 20px; }
  .steps { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { top: 10px; }
  .nav .btn--sm { display: none; }
  .logo__mark { font-size: 26px; }
  .hero__title { font-size: clamp(46px, 13vw, 64px); }
  .hero__cta .btn { width: 100%; }
  .showcase { padding: 0 0 30px 16px; }
  .orbit { width: 104px; height: 104px; right: -6px; }
  .orbit text { font-size: 16px; }
  .show-card { width: 88%; }
  .bento { grid-template-columns: 1fr; }
  .tile { min-height: 200px; }
  .scard { position: relative; top: 0; }
  .scard__media { height: 220px; margin: 10px; }
  .scard__body { padding: 20px 22px 26px; }
  .scard .btn { margin-top: 10px; }
  .wc { border-radius: 30px; }
  .collage { height: 420px; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logos img { height: 72px; padding: 12px; }
  .options, .row { grid-template-columns: 1fr; }
  .options span { flex-direction: row; align-items: center; gap: 14px; padding: 16px; }
  .quote__box { border-radius: 30px; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__cta strong { font-size: 13vw; }
}
/* ==========================================================================
   Inner pages (variant B)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.center { text-align: center; margin-top: 36px; }
.sec--first { padding-top: clamp(40px, 6vw, 80px); }
.head--center { text-align: center; }
.head--center .lead { margin: 16px auto 0; max-width: 560px; }

/* ---------- Page hero ---------- */
.ph { position: relative; padding: clamp(120px, 15vh, 160px) 0 clamp(30px, 4vw, 50px); overflow: hidden; }
.ph::before { content: ""; position: absolute; width: 800px; height: 800px; right: -260px; top: -320px; border-radius: 50%; background: radial-gradient(circle, rgba(45,75,255,.14), transparent 65%); pointer-events: none; }
.ph__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 80px); align-items: end; }
.ph--compact .ph__grid { grid-template-columns: 1fr; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 14px; color: var(--muted); }
.crumbs a { font-weight: 500; color: var(--ink); transition: color .25s; }
.crumbs a:hover { color: var(--blue); }
.crumbs [aria-current] { color: var(--blue); font-weight: 500; }
.ph__title { font-size: clamp(46px, 7vw, 104px); line-height: .94; letter-spacing: -.05em; margin-bottom: 26px; max-width: 900px; }
.ph__title em, .title em { position: relative; display: inline-block; font-style: normal; z-index: 0; }
.ph__title em::after, .title em::after { content: ""; position: absolute; z-index: -1; left: -.05em; right: -.05em; bottom: .07em; height: .36em; border-radius: 6px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 1s .3s var(--ease); }
.split.is-done em::after, .up.is-in em::after { transform: scaleX(1); }
.ph__lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 600px; margin-bottom: 30px; }
.ph--compact .ph__lead { margin-bottom: 0; }
.ph__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.ph__media { position: relative; aspect-ratio: 4 / 3.6; }
.ph__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px 999px 32px 32px; box-shadow: 0 50px 80px -40px rgba(11,13,18,.45); }
.ph__sticker { position: absolute; left: -22px; bottom: 26px; display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: var(--lime); box-shadow: 0 20px 40px -18px rgba(11,13,18,.45); animation: bob 5s ease-in-out infinite; }
.ph__sticker .ic { width: 38px; height: 38px; }
@keyframes bob { 50% { transform: translateY(-10px) rotate(-6deg); } }

/* ---------- CTA block ---------- */
.cta { position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; padding: clamp(36px, 5vw, 72px); border-radius: 44px; background: var(--blue); color: rgba(255,255,255,.82); }
.cta::before { content: ""; position: absolute; z-index: -1; width: 600px; height: 600px; right: -200px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(200,245,96,.35), transparent 65%); }
.cta .title { color: #fff; margin-bottom: 18px; }
.cta p { font-size: 17px; max-width: 460px; margin: 0; }
.cta__side { display: grid; gap: 22px; justify-items: start; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.cta .quote__phone { margin: 0; }

/* ---------- Line cards ---------- */
.lgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lcard { position: relative; display: flex; flex-direction: column; min-height: 230px; padding: 24px; border-radius: 26px; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.lcard:hover { transform: translateY(-8px) rotate(-.8deg); box-shadow: 0 30px 50px -30px rgba(11,13,18,.4); }
.lcard--blue { background: var(--blue); color: #fff; }
.lcard--white { background: var(--paper); border: 1px solid var(--line); }
.lcard--lime { background: var(--lime); }
.lcard--ink { background: var(--ink); color: #fff; }
.lcard__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: rgba(255,255,255,.16); margin-bottom: auto; }
.lcard--white .lcard__ic { background: var(--blue-50); color: var(--blue); }
.lcard--lime .lcard__ic { background: rgba(11,13,18,.08); }
.lcard--ink .lcard__ic { color: var(--lime); }
.lcard strong { font-family: var(--f-display); font-weight: 600; font-size: 24px; letter-spacing: -.03em; line-height: 1.05; margin: 30px 0 8px; }
.lcard__txt { font-size: 14px; opacity: .75; line-height: 1.5; }
.lcard__go { position: absolute; top: 22px; right: 22px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid currentColor; opacity: .5; transition: transform .5s var(--ease), opacity .3s; }
.lcard__go .ic { width: 16px; height: 16px; }
.lcard:hover .lcard__go { transform: rotate(45deg); opacity: 1; }

/* ---------- Detail / prose ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.prose { font-size: 17px; color: var(--muted); max-width: 780px; }
.prose p { margin-bottom: 1.1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a:not(.btn) { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose__lead { font-family: var(--f-display); font-weight: 500; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.15; letter-spacing: -.03em; color: var(--ink); margin-bottom: 26px !important; }
.prose h2 { font-size: clamp(26px, 2.6vw, 36px); color: var(--ink); margin: 48px 0 20px; }
.checklist { display: grid; gap: 10px; margin: 0 0 30px; }
.checklist--2 { grid-template-columns: 1fr 1fr; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 15px 18px; border-radius: 18px; background: var(--paper); color: var(--ink); font-weight: 500; font-size: 15.5px; line-height: 1.45; transition: transform .5s var(--ease), background .3s; }
.checklist li:hover { transform: translateX(6px); background: var(--lime); }
.checklist .ic { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--blue); color: #fff; stroke-width: 3; margin-top: 1px; }
.features { display: grid; gap: 14px; margin: 0 0 32px; }
.features--1 { grid-template-columns: 1fr; }
.features--2 { grid-template-columns: 1fr 1fr; }
.features--3 { grid-template-columns: repeat(3, 1fr); }
.feature { padding: 28px; border-radius: 26px; background: var(--paper); border: 1px solid var(--line); transition: transform .6s var(--ease), background .3s, color .3s; }
.feature:hover { transform: translateY(-6px); background: var(--ink); color: #fff; }
.feature__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--blue-50); color: var(--blue); margin-bottom: 30px; transition: background .3s, color .3s; }
.feature:hover .feature__ic { background: var(--lime); color: var(--ink); }
.feature__ic .ic { width: 24px; height: 24px; }
.feature h3 { font-size: 23px; margin-bottom: 8px; }
.feature p { margin: 0 !important; font-size: 15px; color: var(--muted); transition: color .3s; }
.feature:hover p { color: rgba(255,255,255,.7); }
.features--1 .feature { display: grid; grid-template-columns: 52px 1fr; column-gap: 20px; }
.features--1 .feature__ic { grid-row: span 2; margin: 0; }
.callout { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding: 26px 28px; border-radius: 28px; background: var(--ink); color: rgba(255,255,255,.7); }
.callout__ic { display: grid; place-items: center; flex: none; width: 56px; height: 56px; border-radius: 18px; background: var(--lime); color: var(--ink); }
.callout > div { flex: 1; }
.callout strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: -.02em; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.callout p { margin: 0 !important; font-size: 15px; }
.btn--red { background: var(--lime); color: var(--ink); }
.btn--red:hover { background: #fff; }
.btn--red .ic { width: 16px; height: 16px; }

/* ---------- Sidebar ---------- */
.side { position: sticky; top: 100px; display: grid; gap: 14px; }
.side__nav { padding: 22px; border-radius: 28px; background: var(--paper); }
.side__nav h4 { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.side__nav h4 a:hover { color: var(--blue); }
.side__nav nav { display: grid; gap: 2px; }
.side__nav nav a { display: grid; grid-template-columns: 20px 1fr 16px; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; font-size: 14.5px; font-weight: 500; transition: background .25s, color .25s; }
.side__nav nav a .ic { width: 18px; height: 18px; color: var(--blue); }
.side__nav nav a .ic:last-child { opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .4s var(--ease); }
.side__nav nav a:hover { background: var(--bg); }
.side__nav nav a:hover .ic:last-child { opacity: 1; transform: none; }
.side__nav nav a.is-current { background: var(--ink); color: #fff; }
.side__nav nav a.is-current .ic { color: var(--lime); opacity: 1; transform: none; }
.side__cta { display: grid; gap: 10px; justify-items: start; padding: 26px 24px; border-radius: 28px; background: var(--blue); color: rgba(255,255,255,.8); }
.side__cta small { font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); }
.side__phone { font-family: var(--f-display); font-weight: 600; font-size: 32px; letter-spacing: -.04em; color: #fff; line-height: 1; }
.side__cta p { margin: 0 0 6px; font-size: 14.5px; }

/* ---------- Duo (image + text) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.duo--rev .duo__media { order: 2; }
.duo__media { position: relative; }
.duo__media img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: 200px 200px 30px 30px; box-shadow: 0 50px 80px -40px rgba(11,13,18,.45); }
.duo__badge { position: absolute; right: -16px; bottom: 30px; display: grid; justify-items: center; text-align: center; padding: 20px 26px; border-radius: 24px; background: var(--ink); color: #fff; box-shadow: 0 20px 40px -20px rgba(11,13,18,.6); transform: rotate(4deg); }
.duo__badge strong { font-family: var(--f-display); font-weight: 600; font-size: 40px; letter-spacing: -.04em; line-height: 1; color: var(--lime); }
.duo__badge span { font-size: 13px; opacity: .75; margin-top: 4px; }
.duo__copy .title { margin-bottom: 24px; }
.duo__copy > p { color: var(--muted); }
.duo__copy .lead { color: var(--ink); }
.duo__copy .checklist { margin-top: 26px; }

/* ---------- Logos / cover / columns ---------- */
.logo-tile { display: grid; place-items: center; gap: 10px; padding: 18px; border-radius: 20px; background: var(--paper); transition: transform .5s var(--ease), box-shadow .5s; }
.logos .logo-tile img { height: 60px; padding: 0; background: none; border-radius: 0; box-shadow: none; transform: none; }
.logo-tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(11,13,18,.35); }
.logo-tile:hover img { filter: none; opacity: 1; }
.logo-tile span { font-size: 13px; font-weight: 500; color: var(--muted); text-align: center; }
.logos--named { grid-template-columns: repeat(4, 1fr); }
.logos--named .logo-tile { padding: 26px 18px 18px; }
.cover-box { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: center; padding: clamp(32px, 5vw, 64px); border-radius: 40px; background: var(--lime); }
.cover-box .pills--line { margin: 0; }
.cover-box .pills--line li { border-color: transparent; }
.icols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.icol { padding: 28px; border-radius: 30px; }
.icol--white { background: var(--paper); }
.icol--lime { background: var(--lime); }
.icol--blue { background: var(--blue); color: #fff; }
.icol h3 { display: flex; align-items: center; gap: 14px; font-size: 24px; margin-bottom: 18px; }
.icol h3 > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: var(--lime); }
.icol li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(11,13,18,.1); font-weight: 500; transition: padding .4s var(--ease); }
.icol--blue li a { border-color: rgba(255,255,255,.18); }
.icol li a .ic { width: 16px; height: 16px; opacity: .4; transition: opacity .3s, transform .4s var(--ease); }
.icol li a:hover { padding-left: 8px; }
.icol li a:hover .ic { opacity: 1; transform: rotate(45deg); }

/* ---------- Individual health ---------- */
.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 10px; }
.plan-card { padding: 28px; border-radius: 26px; background: var(--paper); }
.plan-card--lime { background: var(--lime); }
.plan-card img { height: 54px; width: auto; margin-bottom: 20px; mix-blend-mode: multiply; }
.plan-card__word { height: 54px; display: flex; align-items: center; margin-bottom: 20px; font-family: var(--f-display); font-weight: 700; font-size: 18px; line-height: 1.05; letter-spacing: .04em; color: var(--ink); }
.plan-card h3 { font-size: 24px; color: var(--ink); margin-bottom: 6px; }
.plan-card p { margin: 0 !important; font-size: 15px; color: rgba(11,13,18,.65); }

/* ---------- Legal ---------- */
.legal { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(40px, 6vw, 90px); align-items: start; }
.legal__toc { position: sticky; top: 100px; display: grid; gap: 14px; }
.legal__toc nav a { display: block; }
.legal__sec { padding: 30px 34px; border-radius: 28px; background: var(--paper); margin-bottom: 14px; scroll-margin-top: 100px; }
.legal__sec h2 { margin: 0 0 16px; }
.legal__sec p:last-child { margin-bottom: 0; }

/* ---------- Form pages ---------- */
.mini { display: grid; gap: 12px; margin: 10px 0 34px; }
.mini li { display: flex; gap: 16px; align-items: flex-start; }
.mini li > span { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--ink); font-family: var(--f-display); font-weight: 600; }
.mini strong { display: block; color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: -.02em; }
.mini p { margin: 2px 0 0; font-size: 14.5px; }
.quote__mail { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; color: #fff; font-weight: 500; }
.quote__mail .ic { width: 44px; height: 44px; padding: 12px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--lime); }
.quote__mail:hover { color: var(--lime); }
.inp select { width: 100%; padding: 15px 18px; border-radius: 16px; border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: #fff; outline: none; appearance: none; -webkit-appearance: none; }
.inp select option { color: var(--ink); }
.inp input[type="date"] { color-scheme: dark; }
.inp.is-error select { border-color: #FF6B6B; }
.options--row { grid-template-columns: 1fr 1fr; margin-top: 4px; }
.options--row span { flex-direction: row; align-items: center; gap: 12px; padding: 16px 18px; font-size: 16px; }
.options--row span .ic { width: 22px; height: 22px; }

/* ---------- Contact ---------- */
.ctiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.ctile { padding: 26px; border-radius: 26px; min-height: 200px; display: flex; flex-direction: column; font-weight: 500; line-height: 1.45; transition: transform .6s var(--ease); }
.ctile:hover { transform: translateY(-6px) rotate(-.6deg); }
.ctile > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: rgba(255,255,255,.16); margin-bottom: auto; }
.ctile small { display: block; margin: 26px 0 4px; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.ctile div { font-family: var(--f-display); font-weight: 600; font-size: 19px; letter-spacing: -.02em; overflow-wrap: anywhere; }
.ctile--blue { background: var(--blue); color: #fff; }
.ctile--white { background: var(--paper); }
.ctile--white > span { background: var(--blue-50); color: var(--blue); }
.ctile--lime { background: var(--lime); }
.ctile--lime > span { background: rgba(11,13,18,.08); }
.ctile--ink { background: var(--ink); color: #fff; }
.ctile--ink > span { color: var(--lime); }
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 14px; }
.cform { position: relative; padding: clamp(26px, 3vw, 40px); border-radius: 32px; background: var(--ink); color: #fff; overflow: hidden; }
.cform h3 { font-size: 32px; margin-bottom: 24px; }
.cform .btn { margin-top: 8px; }
.cform__note { margin: 14px 0 0; font-size: 13px; color: rgba(255,255,255,.5); }
.cform__note a { text-decoration: underline; }
.cform__done { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; background: var(--lime); color: var(--ink); opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; }
.cform.is-sent .cform__done { opacity: 1; visibility: visible; }
.cform__done > span { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--ink); color: var(--lime); margin-bottom: 16px; }
.cform__done .ic { width: 34px; height: 34px; stroke-width: 2.6; }
.cform__done strong { font-family: var(--f-display); font-size: 34px; letter-spacing: -.03em; }
.map { position: relative; min-height: 520px; border-radius: 32px; overflow: hidden; background: var(--paper); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); transition: filter .5s; }
.map:hover iframe { filter: none; }
.map__pill { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: var(--lime); font-family: var(--f-display); font-weight: 600; box-shadow: 0 16px 30px -16px rgba(11,13,18,.5); transition: background .3s; }
.map__pill:hover { background: #fff; }
.map__pill .ic { width: 16px; height: 16px; }

@media (max-width: 1024px) {
  .ph__grid, .detail, .duo, .legal, .contact, .cta, .cover-box { grid-template-columns: 1fr; }
  .ph__media { max-width: 520px; }
  .side, .legal__toc { position: static; }
  .side { grid-template-columns: 1fr 1fr; }
  .duo--rev .duo__media { order: 0; }
  .duo__media { max-width: 520px; }
  .lgrid, .ctiles { grid-template-columns: 1fr 1fr; }
  .features--3 { grid-template-columns: 1fr 1fr; }
  .icols { grid-template-columns: 1fr; }
  .logos--named { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .ph { padding-top: 110px; }
  .ph__title { font-size: clamp(42px, 12vw, 60px); }
  .ph__cta .btn { width: 100%; }
  .ph__sticker { width: 72px; height: 72px; left: -6px; }
  .ph__sticker .ic { width: 30px; height: 30px; }
  .side { grid-template-columns: 1fr; }
  .checklist--2, .features--2, .features--3, .plan-cards, .options--row { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .lgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lcard { min-height: 170px; padding: 18px; }
  .lcard strong { font-size: 19px; margin-top: 20px; }
  .lcard__txt, .lcard__go { display: none; }
  .ctiles { grid-template-columns: 1fr; }
  .ctile { min-height: 0; }
  .logos--named { grid-template-columns: 1fr 1fr; }
  .legal__sec { padding: 24px 22px; }
  .map { min-height: 400px; }
  .cta { border-radius: 30px; }
  .cta__btns .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .up, .in, .reveal { opacity: 1; transform: none; }
  .split .w > span { transform: none; }
}
