/* ============================================================
   JURISTFRI — design system
   Warm off-white + deep navy. Friendly & approachable.
   Themes via [data-theme], type pairings via [data-type].
   ============================================================ */

/* ---------- THEMES ---------- */
:root,
:root[data-theme="marin"] {
  --bg:        #F4F0E7;   /* warm cream */
  --bg-2:      #ECE6D8;   /* deeper cream band */
  --surface:   #FFFFFF;
  --ink:       #15263F;   /* deep navy — brand */
  --ink-soft:  #33425A;   /* body on cream */
  --muted:     #6B7385;   /* secondary text */
  --line:      #E2DBCB;   /* hairline on cream */
  --line-2:    #EDE8DD;
  --accent:    #E07856;   /* warm coral highlight */
  --accent-soft:#F7E2D9;  /* coral tint */
  --on-ink:    #F4F0E7;   /* text on navy */
  --on-ink-mut:#A9B4C6;   /* muted text on navy */
  --star:      #119C6B;   /* google-green stars */
}

:root[data-theme="skog"] {
  --bg:        #F3F0E6;
  --bg-2:      #E9E5D6;
  --surface:   #FFFFFF;
  --ink:       #1C3328;   /* deep forest */
  --ink-soft:  #36473D;
  --muted:     #6C7468;
  --line:      #E1DBC9;
  --line-2:    #ECE8DC;
  --accent:    #D98A3D;   /* warm amber */
  --accent-soft:#F6E7D2;
  --on-ink:    #F3F0E6;
  --on-ink-mut:#A7B3A8;
  --star:      #119C6B;
}

:root[data-theme="plommon"] {
  --bg:        #F5EFEC;
  --bg-2:      #ECE3DE;
  --surface:   #FFFFFF;
  --ink:       #2E2138;   /* deep plum-ink */
  --ink-soft:  #483B52;
  --muted:     #786E80;
  --line:      #E7DCD7;
  --line-2:    #F0E8E3;
  --accent:    #C9667E;   /* dusty rose */
  --accent-soft:#F4DEE4;
  --on-ink:    #F5EFEC;
  --on-ink-mut:#BAAFC0;
  --star:      #119C6B;
}

/* ---------- TYPE PAIRINGS ---------- */
:root,
:root[data-type="serif"] {
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --display-weight: 500;
  --display-tracking: -0.015em;
}
:root[data-type="contrast"] {
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --display-weight: 600;
  --display-tracking: -0.01em;
}
:root[data-type="sans"] {
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --display-weight: 700;
  --display-tracking: -0.025em;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  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: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent-soft); color: var(--ink); }

/* ---------- TYPE HELPERS ---------- */
.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  line-height: 1.04;
  text-wrap: balance;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead { font-size: 1.18rem; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 56px; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { font-size: 1.12rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2.4; }
.btn-primary {
  background: var(--ink); color: var(--on-ink);
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--ink) 70%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px color-mix(in srgb, var(--ink) 65%, transparent); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--accent) 80%, transparent);
}
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--ink) 22%, transparent);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--on-ink); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.06rem; }
.btn-block { width: 100%; justify-content: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 36px; height: 76px; }
.brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 9px;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--ink); color: var(--on-ink);
  display: grid; place-items: center; font-size: 15px; font-weight: 800;
  font-family: var(--font-body);
}
.nav-links { display: flex; gap: 30px; margin-left: 8px; }
.nav-links a {
  font-weight: 500; font-size: 0.98rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 5px; transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links svg { width: 15px; height: 15px; opacity: .6; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.nav-toggle { display: none; }

/* ---------- HERO ---------- */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.4rem); margin: 22px 0 24px; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lead { max-width: 30ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-rating { display: flex; align-items: center; gap: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.hero-rating .rate-txt { font-size: 0.96rem; color: var(--muted); }
.hero-rating .rate-txt b { color: var(--ink); font-weight: 700; }
.g-logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }
.g-logo .g {
  font-family: var(--font-body); font-weight: 700;
  background: conic-gradient(from -45deg, #4285F4 0 25%, #EA4335 0 50%, #FBBC05 0 75%, #34A853 0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* hero media */
.hero-media { position: relative; }
.hero-media image-slot {
  width: 100%; aspect-ratio: 4/4.4;
  border-radius: 28px 28px 28px 90px;
  box-shadow: 0 40px 80px -40px rgba(20,30,50,.4);
}
.float-card {
  position: absolute; background: var(--surface);
  border-radius: 18px; padding: 16px 18px;
  box-shadow: 0 24px 50px -22px rgba(20,30,50,.35);
  display: flex; align-items: center; gap: 13px;
}
.float-card.price { left: -28px; bottom: 64px; }
.float-card.review { right: -22px; top: 40px; max-width: 230px; }
.float-card .ic {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.float-card .ic svg { width: 20px; height: 20px; }
.float-card .ttl { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.float-card .sub { font-size: 0.8rem; color: var(--muted); }
.float-card.review .stars svg { width: 14px; height: 14px; }
.float-card.review p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; margin-top: 4px; }

/* ---------- TRUST STRIP ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; padding: 22px 28px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 2.2; }

/* ---------- CONTRACTS ---------- */
.contracts { background: var(--bg); }
.contracts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.contract-card {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 22px; padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.contract-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -34px rgba(20,30,50,.32);
  border-color: transparent;
}
.contract-card .c-ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 4px;
}
.contract-card .c-ic svg { width: 26px; height: 26px; stroke-width: 1.9; }
.contract-card h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 1.5rem; color: var(--ink); letter-spacing: -0.01em; }
.contract-card p { font-size: 0.98rem; color: var(--muted); flex: 1; }
.contract-card .c-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.contract-card .price { font-weight: 700; color: var(--ink); }
.contract-card .price span { font-weight: 500; color: var(--muted); font-size: 0.82rem; }
.contract-card .c-go {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--ink); font-size: 0.95rem;
}
.contract-card .c-go .pill {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--on-ink);
  display: grid; place-items: center; transition: transform .2s, background .2s;
}
.contract-card .c-go svg { width: 16px; height: 16px; }
.contract-card:hover .c-go .pill { background: var(--accent); transform: translateX(3px); }
.contract-card .ribbon {
  position: absolute; top: 34px; right: -56px;
  width: 200px; text-align: center;
  transform: rotate(45deg);
  background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: .07em; padding: 7px 0; text-transform: uppercase;
  box-shadow: 0 6px 14px -8px rgba(20,30,50,.4);
}
.contract-card .ribbon.soon { background: var(--ink); color: var(--on-ink); }

/* ---- coming-soon cards ---- */
.contract-card.soon { cursor: default; }
.contract-card.soon:hover { transform: none; box-shadow: none; border-color: var(--line-2); }
.contract-card.soon .c-ic { background: var(--line-2); color: var(--muted); }
.contract-card.soon h3 { color: var(--muted); }
.contract-card.soon p { color: var(--muted); opacity: .85; }
.contract-card.soon .price { color: var(--muted); }
.contract-card.soon .price span { color: var(--muted); }
.c-soon {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
}
.c-soon svg { width: 15px; height: 15px; stroke-width: 2.2; }
.contracts-foot { text-align: center; margin-top: 44px; }
.contracts-foot p { color: var(--muted); margin-bottom: 18px; }

/* ---------- HOW IT WORKS ---------- */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 6px; }
.step {
  display: flex; gap: 20px; padding: 24px 4px; border-bottom: 1px solid var(--line);
}
.step:last-of-type { border-bottom: none; }
.step .num {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  background: var(--ink); color: var(--on-ink);
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 600; font-size: 1.2rem;
}
.step h4 { font-size: 1.3rem; color: var(--ink); font-family: var(--font-display); font-weight: var(--display-weight); margin-bottom: 4px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 1rem; }
.how-aside { position: relative; }
.how-aside image-slot { width: 100%; aspect-ratio: 4/4.6; border-radius: 26px; box-shadow: 0 40px 80px -44px rgba(20,30,50,.4); }
.how-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 18px 20px; margin-top: 24px;
}
.how-note .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.how-note .ic svg { width: 20px; height: 20px; }
.how-note p { font-size: 0.96rem; color: var(--ink-soft); }
.how-note b { color: var(--ink); }

/* ---------- WHY / FEATURES ---------- */
.why { background: var(--bg-2); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat {
  background: var(--surface); border-radius: 20px; padding: 30px 26px;
  border: 1px solid var(--line-2);
}
.feat .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--ink); color: var(--on-ink); display: grid; place-items: center; margin-bottom: 18px; }
.feat .ic svg { width: 24px; height: 24px; stroke-width: 2; }
.feat h4 { font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.feat p { font-size: 0.96rem; color: var(--muted); }

/* ---------- REVIEWS ---------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.reviews-head .g-badge { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px; padding: 14px 20px; }
.reviews-head .g-badge .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.55; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 1rem; }
.review-card .who .name { font-weight: 700; color: var(--ink); font-size: 0.96rem; line-height: 1.2; }
.review-card .who .date { font-size: 0.82rem; color: var(--muted); }
.review-card .gmark { margin-left: auto; }
.review-card .gmark svg { width: 20px; height: 20px; }

/* ---------- HELP BAND ---------- */
.help-band { background: var(--ink); color: var(--on-ink); border-radius: 32px; overflow: hidden; }
.help-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.help-copy { padding: 64px 56px; }
.help-copy .eyebrow { color: color-mix(in srgb, var(--accent) 75%, white); }
.help-copy h2 { font-family: var(--font-display); font-weight: var(--display-weight); color: var(--on-ink); font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 14px 0 16px; letter-spacing: -0.015em; }
.help-copy p { color: var(--on-ink-mut); font-size: 1.1rem; margin-bottom: 28px; max-width: 42ch; }
.help-copy .help-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.help-copy .ghost-light { background: transparent; color: var(--on-ink); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--on-ink) 40%, transparent); }
.help-copy .ghost-light:hover { box-shadow: inset 0 0 0 1.5px var(--on-ink); transform: translateY(-2px); }
.help-media { position: relative; min-height: 340px; }
.help-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; text-align: left; font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-q .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s ease, background .2s; }
.faq-q .chev svg { width: 17px; height: 17px; color: var(--ink); transition: transform .25s ease; }
.faq-item.open .faq-q .chev { background: var(--ink); }
.faq-item.open .faq-q .chev svg { color: var(--on-ink); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 24px; color: var(--muted); font-size: 1.02rem; max-width: 56ch; }

/* ---------- FINAL CTA ---------- */
.final-cta { text-align: center; }
.final-cta .panel { background: var(--surface); border: 1px solid var(--line-2); border-radius: 32px; padding: 72px 40px; box-shadow: 0 40px 90px -60px rgba(20,30,50,.4); }
.final-cta h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.final-cta p { font-size: 1.18rem; color: var(--muted); max-width: 46ch; margin: 0 auto 32px; }
.final-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .reassure { margin-top: 22px; font-size: 0.92rem; color: var(--muted); display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.final-cta .reassure span { display: inline-flex; align-items: center; gap: 7px; }
.final-cta .reassure svg { width: 16px; height: 16px; color: var(--star); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--on-ink-mut); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid color-mix(in srgb, var(--on-ink) 14%, transparent); }
.site-footer .brand { color: var(--on-ink); margin-bottom: 16px; }
.site-footer .brand .mark { background: var(--on-ink); color: var(--ink); }
.footer-about p { color: var(--on-ink-mut); font-size: 0.96rem; max-width: 34ch; }
.footer-col h5 { color: var(--on-ink); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--on-ink-mut); font-size: 0.98rem; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--on-ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; font-size: 0.88rem; flex-wrap: wrap; }

/* ---------- MOBILE NAV + STICKY CTA (hidden on desktop) ---------- */
.nav-toggle { display: none; }
.mobile-menu { display: none; }
.mobile-cta-bar { display: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid, .how-grid, .faq-grid, .help-grid { grid-template-columns: 1fr; gap: 40px; }
  .contracts-grid, .reviews-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav { height: 64px; gap: 16px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 13px; margin-left: auto;
    background: color-mix(in srgb, var(--ink) 6%, transparent);
  }
  .nav-toggle svg { width: 26px; height: 26px; color: var(--ink); stroke-width: 2.2; }
  .mobile-menu {
    display: block; position: fixed; left: 0; right: 0; top: 64px; z-index: 49;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -24px rgba(20,30,50,.3);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    display: block; padding: 16px 24px; font-size: 1.12rem; font-weight: 600;
    color: var(--ink); border-bottom: 1px solid var(--line-2);
  }
  .mobile-menu a:active { background: var(--bg-2); }
  .mobile-menu .mm-cta { padding: 18px 24px 22px; border-bottom: none; }
  .mobile-menu .mm-cta .btn { width: 100%; }
  .help-media { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================== PHONE ===================== */
@media (max-width: 620px) {
  body { font-size: 16.5px; padding-bottom: 84px; }
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }
  .section-tight { padding: 48px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 2rem; }
  .section-head p { font-size: 1.04rem; }

  /* grids -> single column */
  .contracts-grid, .reviews-grid, .feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }

  /* hero */
  .hero { padding: 28px 0 44px; }
  .hero h1 { font-size: 2.85rem; margin: 16px 0 18px; line-height: 1.06; }
  .hero .lead { max-width: none; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; gap: 12px; margin-bottom: 26px; }
  .hero-cta .btn { width: 100%; }
  .hero-rating { flex-wrap: wrap; gap: 8px 12px; }
  .float-card { display: none !important; }      /* drop overlapping cards */
  .hero-media { max-width: none; margin: 26px 0 0; }
  .hero-media image-slot {
    aspect-ratio: 5/4; border-radius: 22px;
    box-shadow: 0 24px 50px -30px rgba(20,30,50,.4);
  }

  /* trust strip -> tidy wrap */
  .trust-strip .wrap { gap: 12px 22px; padding: 18px 18px; justify-content: flex-start; }
  .trust-item { font-size: 0.9rem; }
  .trust-item svg { width: 18px; height: 18px; }

  /* contracts */
  .contract-card { padding: 24px 22px 22px; border-radius: 20px; }
  .contract-card h3 { font-size: 1.4rem; }
  .contract-card .ribbon { font-size: 0.66rem; padding: 4px 38px; }
  .contracts-foot { margin-top: 28px; }

  /* how it works */
  .how-grid { gap: 32px; }
  .step { padding: 20px 2px; gap: 16px; }
  .step .num { width: 42px; height: 42px; font-size: 1.1rem; }
  .how-aside image-slot { aspect-ratio: 5/4; }

  /* features */
  .feat { padding: 26px 22px; }
  .feat .ic { width: 46px; height: 46px; }

  /* reviews */
  .reviews-head { margin-bottom: 28px; gap: 18px; }
  .reviews-head .g-badge { width: 100%; }
  .review-card { padding: 24px; }

  /* help band */
  .help-band { border-radius: 24px; }
  .help-grid { grid-template-columns: 1fr; }
  .help-copy { padding: 38px 26px; order: 2; }
  .help-copy .help-cta { flex-direction: column; gap: 12px; }
  .help-copy .help-cta .btn { width: 100%; }
  .help-media { min-height: 220px; order: 1; }

  /* faq */
  .faq-grid { gap: 28px; }
  .faq-q { font-size: 1.06rem; padding: 20px 0; gap: 14px; }

  /* final cta */
  .final-cta .panel { padding: 48px 24px; border-radius: 26px; }
  .final-cta p { font-size: 1.06rem; }
  .final-cta .cta-row { flex-direction: column; gap: 12px; }
  .final-cta .cta-row .btn { width: 100%; }
  .final-cta .reassure { gap: 10px 16px; }

  /* footer */
  .site-footer { padding: 56px 0 28px; }
  .footer-grid { padding-bottom: 36px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* sticky mobile CTA */
  .mobile-cta-bar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 48;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta-bar .btn { width: 100%; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.5rem; }
  .section-head h2 { font-size: 1.85rem; }
}
