/* =====================================================================
   DMCA.law — MM One Legal Services LLC
   Grey / Platinum professional services theme
   ===================================================================== */

:root {
  /* Palette */
  --ink:        #14171a;
  --charcoal:   #1d2125;
  --slate:      #2b3038;
  --steel:      #4a525c;
  --grey:       #6b7480;
  --silver:     #9aa3ad;
  --platinum:   #c9ccd1;
  --mist:       #e7e9ec;
  --fog:        #f3f4f6;
  --paper:      #fafbfc;
  --white:      #ffffff;

  --accent:     #3a4d63;   /* deep steel-blue accent */
  --accent-2:   #54708f;   /* lighter steel-blue */
  --gold:       #b8a06a;   /* restrained platinum-gold for highlights */
  --gold-soft:  #cdbb8a;
  --success:    #3f7d58;

  --line:       #e2e4e8;
  --line-dark:  #323840;

  --shadow-sm:  0 1px 2px rgba(20,23,26,.06), 0 1px 3px rgba(20,23,26,.08);
  --shadow-md:  0 4px 12px rgba(20,23,26,.08), 0 2px 4px rgba(20,23,26,.06);
  --shadow-lg:  0 18px 50px rgba(20,23,26,.14);

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;

  --maxw:       1180px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif:      'Fraunces', Georgia, 'Times New Roman', serif;

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

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--slate); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin-left: auto; margin-right: auto; }

section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.lead { font-size: 1.18rem; color: var(--steel); }
.muted { color: var(--grey); }
.gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 6px 18px rgba(20,23,26,.18);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(20,23,26,.24); }
.btn-ghost {
  background: var(--white); color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--steel); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,251,252,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(250,251,252,.94); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(150deg, var(--slate), var(--ink));
  display: grid; place-items: center; color: var(--platinum);
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), var(--shadow-sm);
}
.brand .dot { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 9px; font-size: .95rem; font-weight: 500; color: var(--steel);
  transition: all .2s;
}
.nav-links a.nav-link:hover { color: var(--ink); background: var(--mist); }
.nav-links a.nav-link.active { color: var(--ink); }
.caret { width: 13px; height: 13px; opacity: .6; transition: transform .25s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; width: 320px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; gap: 13px; padding: 12px; border-radius: 11px; transition: background .18s;
}
.dropdown a:hover { background: var(--fog); }
.dropdown .di {
  flex: 0 0 38px; height: 38px; border-radius: 10px; background: var(--fog);
  display: grid; place-items: center; color: var(--accent);
}
.dropdown .di svg { width: 20px; height: 20px; }
.dropdown strong { display: block; font-size: .94rem; color: var(--ink); }
.dropdown span { font-size: .82rem; color: var(--grey); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 116px 0 92px;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(58,77,99,.10), transparent 60%),
    radial-gradient(700px 420px at 10% 8%, rgba(184,160,106,.08), transparent 60%),
    linear-gradient(180deg, var(--white), var(--paper));
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.hero h1 { margin: 18px 0 0; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .30em;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold)); opacity: .42; border-radius: 3px; z-index: -1;
}
.hero p.lead { margin: 22px 0 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .ht-num { font-size: 1.7rem; font-weight: 800; color: var(--ink); font-family: var(--serif); letter-spacing: -.02em; }
.hero-trust .ht-lab { font-size: .82rem; color: var(--grey); letter-spacing: .02em; }

/* Hero visual — animated takedown card */
.hero-visual { position: relative; }
.tcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.tcard-head {
  display: flex; align-items: center; gap: 9px; padding: 15px 18px;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
.tcard-head .tdots { display: flex; gap: 6px; }
.tcard-head .tdots i { width: 10px; height: 10px; border-radius: 50%; background: var(--mist); display: inline-block; }
.tcard-head .tlabel { font-size: .8rem; font-weight: 600; color: var(--grey); letter-spacing: .04em; }
.tcard-head .tstat {
  margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--success);
  background: rgba(63,125,88,.1); padding: 4px 10px; border-radius: 100px;
}
.tcard-body { padding: 8px 8px; }
.tstep {
  display: flex; align-items: center; gap: 14px; padding: 14px 14px; border-radius: 12px;
  opacity: .35; transition: all .5s var(--ease);
}
.tstep.on { opacity: 1; background: var(--fog); }
.tstep .tnum {
  flex: 0 0 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: var(--mist); color: var(--grey); font-weight: 700; font-size: .85rem; transition: all .5s;
}
.tstep.on .tnum { background: var(--ink); color: var(--white); }
.tstep.done .tnum { background: var(--success); color: var(--white); }
.tstep .tinfo strong { display: block; font-size: .92rem; color: var(--ink); }
.tstep .tinfo span { font-size: .8rem; color: var(--grey); }
.tstep .tcheck { margin-left: auto; width: 20px; height: 20px; opacity: 0; color: var(--success); transition: opacity .4s; }
.tstep.done .tcheck { opacity: 1; }

/* ---------- Logos / marquee strip ---------- */
.strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.strip .strip-label { font-size: .8rem; color: var(--grey); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.strip .plat { font-weight: 600; color: var(--silver); font-size: 1.02rem; letter-spacing: .01em; transition: color .2s; }
.strip .plat:hover { color: var(--steel); }

/* ---------- Stats band ---------- */
.statsband { background: var(--ink); color: var(--white); }
.statsband .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 12px; }
.stat-item .sn { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; color: var(--white); letter-spacing: -.02em; }
.stat-item .sn .gold { color: var(--gold-soft); }
.stat-item .sl { color: var(--silver); font-size: .92rem; margin-top: 4px; }
.statsband .stat-item + .stat-item { border-left: 1px solid var(--line-dark); }

/* ---------- Section heads ---------- */
.shead { max-width: 720px; margin-bottom: 56px; }
.shead.center { margin-left: auto; margin-right: auto; }
.shead h2 { margin: 14px 0 16px; }
.shead p { font-size: 1.12rem; color: var(--steel); }

/* ---------- Differentiator ---------- */
.diff { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.compare { display: grid; gap: 16px; }
.crow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.cbox { padding: 20px; border-radius: var(--radius); border: 1px solid var(--line); }
.cbox.them { background: var(--fog); }
.cbox.us { background: linear-gradient(160deg, #1f242a, #14171a); border-color: var(--line-dark); }
.cbox h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.cbox.them h4 { color: var(--grey); }
.cbox.us h4 { color: var(--gold-soft); }
.cbox ul { list-style: none; display: grid; gap: 10px; }
.cbox li { display: flex; gap: 9px; font-size: .92rem; line-height: 1.4; }
.cbox li svg { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 2px; }
.cbox.them li { color: var(--grey); }
.cbox.them li svg { color: var(--silver); }
.cbox.us li { color: var(--mist); }
.cbox.us li svg { color: var(--gold); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: all .3s var(--ease); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(155deg, var(--slate), var(--ink)); color: var(--platinum);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.svc-ic svg { width: 27px; height: 27px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: .97rem; flex-grow: 1; }
.svc-card .svc-link {
  margin-top: 20px; font-weight: 600; font-size: .92rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.svc-card .svc-link svg { width: 15px; height: 15px; transition: transform .25s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.svc-tags span { font-size: .76rem; color: var(--grey); background: var(--fog); padding: 4px 10px; border-radius: 100px; }

/* ---------- Process timeline ---------- */
.process { background: linear-gradient(180deg, var(--fog), var(--paper)); }
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: var(--line);
}
.timeline .tprogress {
  position: absolute; left: 27px; top: 10px; width: 2px; background: linear-gradient(180deg, var(--gold), var(--accent));
  height: 0; transition: height 1.2s var(--ease);
}
.tl-step { position: relative; padding: 0 0 38px 78px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 16px; top: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line); display: grid; place-items: center;
  transition: all .5s var(--ease); z-index: 2;
}
.tl-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--platinum); transition: all .5s; }
.tl-step.reveal .tl-dot { border-color: var(--accent); box-shadow: 0 0 0 5px rgba(58,77,99,.1); }
.tl-step.reveal .tl-dot::after { background: var(--accent); }
.tl-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow-sm); transition: all .5s var(--ease);
  opacity: 0; transform: translateY(16px);
}
.tl-step.reveal .tl-card { opacity: 1; transform: translateY(0); box-shadow: var(--shadow-md); }
.tl-card .tl-k { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.tl-card h3 { margin: 6px 0 8px; font-size: 1.22rem; }
.tl-card p { font-size: .96rem; }
.tl-num { float: right; font-family: var(--serif); font-size: 2.4rem; color: var(--mist); font-weight: 600; line-height: 1; }

/* ---------- Escalation ladder ---------- */
.ladder { background: var(--ink); color: var(--white); }
.ladder .shead h2 { color: var(--white); }
.ladder .shead p { color: var(--silver); }
.ladder .eyebrow { color: var(--gold-soft); }
.rungs { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.rung {
  display: flex; align-items: center; gap: 20px; padding: 22px 26px;
  background: var(--charcoal); border: 1px solid var(--line-dark); border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.rung:hover { transform: translateX(8px); border-color: var(--steel); background: var(--slate); }
.rung .rn {
  flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(155deg, var(--steel), var(--slate)); color: var(--gold-soft);
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
}
.rung .rinfo h4 { color: var(--white); font-size: 1.08rem; margin-bottom: 3px; }
.rung .rinfo p { color: var(--silver); font-size: .92rem; }
.rung .rarrow { margin-left: auto; color: var(--steel); }

/* ---------- Pricing ---------- */
.pricing { background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; background: var(--paper);
  display: flex; flex-direction: column; transition: all .3s var(--ease); position: relative;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: linear-gradient(165deg, #1f242a, #14171a); border-color: var(--ink); color: var(--white); }
.price-card.featured h3, .price-card.featured .price { color: var(--white); }
.price-card.featured p { color: var(--silver); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 700;
  padding: 5px 15px; border-radius: 100px; letter-spacing: .04em; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.price-card .ptag { font-size: .9rem; color: var(--grey); margin-bottom: 18px; }
.price-card.featured .ptag { color: var(--silver); }
.price { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.price small { font-size: .95rem; font-weight: 400; color: var(--grey); font-family: var(--font); }
.price-card.featured .price small { color: var(--silver); }
.price-sub { font-size: .86rem; color: var(--grey); margin: 6px 0 22px; }
.price-card.featured .price-sub { color: var(--silver); }
.plist { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; flex-grow: 1; }
.plist li { display: flex; gap: 10px; font-size: .93rem; align-items: flex-start; }
.plist li svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--success); margin-top: 1px; }
.price-card.featured .plist li svg { color: var(--gold-soft); }
.price-card .btn { width: 100%; }

/* ---------- Coverage / platforms ---------- */
.cov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.cov-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px; text-align: center; transition: all .25s var(--ease);
}
.cov-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--platinum); }
.cov-item .ci { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--accent); }
.cov-item strong { display: block; font-size: .96rem; color: var(--ink); }
.cov-item span { font-size: .8rem; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(184,160,106,.16), transparent 60%),
    linear-gradient(160deg, #1f242a, #14171a);
  color: var(--white); border-radius: 0;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { color: var(--silver); font-size: 1.12rem; margin-bottom: 30px; }
.cta .hero-cta { justify-content: center; }
.cta .cta-fine { margin-top: 20px; font-size: .85rem; color: var(--grey); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px; padding: 24px 6px; font-size: 1.08rem; font-weight: 600; color: var(--ink);
  font-family: var(--font);
}
.faq-q .fi {
  margin-left: auto; flex: 0 0 24px; width: 24px; height: 24px; position: relative; transition: transform .3s;
}
.faq-q .fi::before, .faq-q .fi::after {
  content: ""; position: absolute; background: var(--grey); border-radius: 2px; transition: .3s;
}
.faq-q .fi::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-q .fi::after { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .fi::after { transform: scaleY(0); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 6px 24px; color: var(--steel); font-size: 1rem; line-height: 1.65; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--silver); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { color: var(--white); margin-bottom: 16px; }
.foot-brand p { color: var(--silver); font-size: .92rem; max-width: 300px; }
.foot-brand .addr { margin-top: 16px; font-size: .86rem; color: var(--grey); font-style: normal; line-height: 1.7; }
.foot-col h5 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { color: var(--silver); font-size: .92rem; transition: color .2s; }
.foot-col a:hover { color: var(--white); }
.foot-bottom {
  margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center;
}
.foot-bottom p { font-size: .82rem; color: var(--grey); }
.foot-disclaimer { font-size: .8rem; color: var(--grey); line-height: 1.6; margin-top: 18px; padding: 16px 18px; background: var(--charcoal); border-radius: var(--radius-sm); border: 1px solid var(--line-dark); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(700px 380px at 82% -20%, rgba(58,77,99,.10), transparent 60%),
    linear-gradient(180deg, var(--white), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 760px; }
.page-hero p { font-size: 1.15rem; color: var(--steel); max-width: 640px; margin-top: 18px; }
.breadcrumb { font-size: .85rem; color: var(--grey); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- Content / prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 44px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--slate); }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--slate); }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose .lede { font-size: 1.18rem; color: var(--steel); margin-bottom: 28px; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* feature list */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feat {
  display: flex; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.feat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat .fic { flex: 0 0 44px; height: 44px; border-radius: 12px; background: var(--fog); display: grid; place-items: center; color: var(--accent); }
.feat .fic svg { width: 22px; height: 22px; }
.feat h4 { font-size: 1.06rem; margin-bottom: 6px; }
.feat p { font-size: .93rem; }

/* split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media {
  background: linear-gradient(160deg, var(--slate), var(--ink)); border-radius: var(--radius-lg);
  padding: 40px; color: var(--white); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.split-media .sm-stat { font-family: var(--serif); font-size: 3.2rem; color: var(--gold-soft); font-weight: 600; }
.split-media .sm-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.split-media .sm-list li { display: flex; gap: 12px; color: var(--mist); font-size: .96rem; align-items: flex-start; }
.split-media .sm-list li svg { flex: 0 0 19px; width: 19px; height: 19px; color: var(--gold); margin-top: 2px; }

/* note / callout */
.callout {
  background: var(--fog); border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
  padding: 22px 24px; margin: 28px 0;
}
.callout strong { color: var(--ink); }
.callout p { color: var(--steel); font-size: .96rem; margin: 0; }

/* resources */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.res-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .3s var(--ease); display: flex; flex-direction: column;
}
.res-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.res-top { padding: 26px 26px 0; }
.res-card .res-cat { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.res-card h3 { font-size: 1.18rem; margin: 10px 0 10px; }
.res-card p { font-size: .93rem; padding: 0 26px; flex-grow: 1; }
.res-card .res-foot { padding: 18px 26px 24px; font-size: .85rem; color: var(--grey); display: flex; align-items: center; gap: 8px; }

/* reveal animation */
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .diff-grid, .split, .split.rev .split-media { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .svc-grid, .price-grid, .res-grid { grid-template-columns: 1fr; }
  .statsband .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .statsband .stat-item:nth-child(3) { border-left: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 16px; gap: 4px; box-shadow: var(--shadow-lg);
  }
  .nav.open .nav-links > li { width: 100%; }
  .nav.open .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; width: 100%; padding: 4px 0 4px 12px; }
  .hero-trust { gap: 22px; }
  .statsband .container { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .crow { grid-template-columns: 1fr; }
  .timeline::before, .timeline .tprogress { left: 15px; }
  .tl-dot { left: 4px; }
  .tl-step { padding-left: 54px; }
}
