/* ==========================================================================
   XpertWorker — SEO landing-page design system  (premium-calm)
   Dedicated to /seo/* pages ONLY. Does NOT touch base.css or global chrome.
   Brand: navy #0B1930 · black CTA #0A0A0A · gold #C8A24C · Plus Jakarta + Inter
   Single shared file → tweak design here and re-upload without regenerating.
   ========================================================================== */

:root {
  --ink:        #0B1930;  /* navy — headings, primary text, links            */
  --ink-soft:   #1E3454;  /* secondary navy                                  */
  --black:      #0A0A0A;  /* primary CTA                                     */
  --gold:       #C8A24C;  /* premium hairline / accent (decorative)         */
  --gold-dark:  #A07C2E;
  --gold-soft:  #FBF3DF;  /* soft gold wash (icon/check backgrounds)        */
  --surface:    #F7F8FA;  /* page background                                 */
  --card:       #FFFFFF;
  --muted-fill: #EEF1F4;
  --line:       #E6E9EF;  /* borders                                         */
  --text:       #1F2A3D;  /* body text (AA on white)                         */
  --text-2:     #64748B;  /* secondary text                                  */
  --text-3:     #94A3B8;  /* labels / disclaimers (large/non-essential)      */
  --ok:         #0E9F6E;  /* success / verified                              */
  --ok-bg:      #E7F6EF;
  --ok-text:    #066B49;
  --radius-lg:  16px;
  --radius:     12px;
  --shadow-sm:  0 1px 2px rgba(11,25,48,.04), 0 1px 3px rgba(11,25,48,.05);
  --maxw:       960px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.22;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Inline SVG icon base */
.i { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }

/* Accessibility utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ── Sticky header ──────────────────────────────────────────────────────── */
.seo-hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.seo-hdr-in {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 60px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.seo-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.seo-brand:hover { text-decoration: none; }
.seo-brand .dot { color: var(--gold); }
.seo-nav { display: flex; align-items: center; gap: 4px; }
.seo-nav a {
  padding: 8px 12px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 10px;
}
.seo-nav a:hover { color: var(--ink); background: var(--muted-fill); text-decoration: none; }
.seo-nav a.cta {
  background: var(--black);
  color: #fff;
  font-weight: 600;
  padding: 9px 16px;
}
.seo-nav a.cta:hover { background: #000; color: #fff; }
@media (max-width: 560px) {
  .seo-nav a.ghost { display: none; }   /* keep just the CTA on small phones */
}

/* ── Layout column ──────────────────────────────────────────────────────── */
.seo-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 16px 48px;
}

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.seo-bc {
  font-size: .82rem;
  color: var(--text-3);
  margin: 6px 0 20px;
  line-height: 1.7;
}
.seo-bc a { color: var(--text-2); }
.seo-bc a:hover { color: var(--ink); }
.seo-bc .sep { margin: 0 6px; color: var(--line); }

/* ── Hero — navy gradient panel (signature) ─────────────────────────────── */
.seo-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(125% 130% at 100% 0%, #1A2F52 0%, var(--ink) 52%, #081224 100%);
  color: #fff;
  padding: 30px 30px 28px;
  margin: 4px 0 22px;
  box-shadow: 0 12px 30px rgba(8,18,36,.18);
}
/* Photo hero (SPLIT): full navy panel on the LEFT holds the text; the photo sits
   on the RIGHT — no text over the image. On mobile it stacks: photo on top (full
   view), text below. Opt in per page:
   <section class="seo-hero has-photo" style="--hero-photo:url('/assets/img/seo/plumber.jpg')"> */
.seo-hero.has-photo {
  background: radial-gradient(120% 130% at 100% 0%, #1A2F52 0%, var(--ink) 55%, #081224 100%);
  padding-right: 45%;                    /* left = text */
  min-height: 400px;
  display: flex; flex-direction: column; justify-content: center;
}
.seo-hero.has-photo::before {            /* the photo — clean rounded card on the right (UC-style) */
  content: "";
  position: absolute; top: 22px; right: 22px; bottom: 22px; left: auto;
  width: 40%;
  border-radius: 14px;
  background: var(--hero-photo, none) right center / cover no-repeat;
  background-color: #0d1b30;
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}
.seo-hero.has-photo .seo-eyebrow {       /* drop the gold pill border on the photo hero */
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.seo-hero.has-photo .seo-h1  { font-size: 1.9rem; }
.seo-hero.has-photo .seo-sub { font-size: 1rem; max-width: 46ch; }
@media (max-width: 640px) {
  .seo-hero.has-photo { padding-right: 18px; min-height: 0; display: block; }
  .seo-hero.has-photo::before {          /* photo on top, full-bleed to the rounded corners */
    position: relative; display: block; top: auto; right: auto; bottom: auto; left: auto;
    width: auto; aspect-ratio: 3 / 2;
    margin: -24px -18px 18px;
    border-radius: 0; box-shadow: none;
    background: var(--hero-photo, none) center 30% / cover no-repeat;
    background-color: var(--ink);
  }
  .seo-hero.has-photo .seo-h1  { font-size: 1.5rem; }   /* rein in the desktop-hero size on phones */
  .seo-hero.has-photo .seo-sub { font-size: .95rem; max-width: none; }
  .seo-hero.has-photo .seo-eyebrow { margin-bottom: 12px; }
}
.seo-hero::before {                       /* faint diagonal texture + gold glow */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 92% 8%, rgba(200,162,76,.16), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 11px);
  pointer-events: none;
}
.seo-hero > * { position: relative; }
.seo-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(200,162,76,.55);
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.seo-eyebrow .i { width: 14px; height: 14px; }
.seo-h1 { font-size: 2.05rem; font-weight: 800; margin: 0 0 12px; color: #fff; }
.seo-hero .seo-h1 { color: #fff; }
.seo-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin: 0;
  line-height: 1.6;
  max-width: 54ch;
}

/* Stats row (real data only) */
.seo-stats {
  display: flex;
  margin: 22px 0 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  overflow: hidden;
}
.seo-stat { flex: 1; padding: 13px 16px; border-left: 1px solid rgba(255,255,255,.12); }
.seo-stat:first-child { border-left: 0; }
.seo-stat .n {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.32rem; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums; line-height: 1.1;
}
.seo-stat .l { font-size: .73rem; color: rgba(255,255,255,.62); margin-top: 3px; line-height: 1.3; }

/* Hero actions */
.seo-hero .seo-actions { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.seo-call-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.88); font-weight: 600; font-size: .92rem;
}
.seo-call-link .i { width: 17px; height: 17px; color: var(--gold); }
.seo-call-link:hover { color: #fff; }
.seo-fineprint { font-size: .78rem; color: rgba(255,255,255,.55); margin: 14px 0 0; line-height: 1.5; }

/* CTA on the navy hero (white button) */
.seo-cta.on-navy { background: #fff; color: var(--ink); }
.seo-cta.on-navy:hover { background: #fff; color: var(--ink); box-shadow: 0 6px 18px rgba(0,0,0,.28); }

/* ── "About" band — its own card so the keyword text reads cleanly ──────── */
.seo-about {
  margin: 0 0 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.seo-about .seo-h2 { margin-top: 0; }
.seo-body {
  font-size: 1rem;
  color: var(--text-2);
  margin: 0 0 14px;
  line-height: 1.78;
  max-width: 72ch;
}
.seo-body:last-child, .seo-locality:last-child { margin-bottom: 0; }
.seo-locality {
  font-size: .98rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.78;
  max-width: 72ch;
}
.seo-block { margin: 0 0 32px; }

/* ── Hero trust strip — confident stat row ──────────────────────────────── */
.seo-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.seo-trust .t { padding: 28px 30px; position: relative; transition: background .2s ease; }
.seo-trust .t + .t { border-left: 1px solid var(--line); }
.seo-trust .t:hover { background: #FCFDFE; }
.seo-trust .lead {
  font: 800 2rem/1 "Plus Jakarta Sans", sans-serif;
  color: var(--ink); letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.seo-trust .lead em { font-style: normal; color: var(--gold-dark); }
.seo-trust .lead em.unit { font-size: 1.05rem; font-weight: 700; }
.seo-trust .ttl { font: 700 1rem/1.2 "Plus Jakarta Sans", sans-serif; color: var(--ink); margin: 13px 0 0; }

/* ── Trust pill ─────────────────────────────────────────────────────────── */
.seo-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 10px 18px;
  margin: 0 0 24px;
  font-size: .92rem;
  font-weight: 600;
}
.seo-pill.ok   { background: var(--ok-bg); color: var(--ok-text); }
.seo-pill.info { background: var(--muted-fill); color: var(--ink-soft); font-weight: 500; }
.seo-pill .i { width: 18px; height: 18px; }

/* ── Section heading ────────────────────────────────────────────────────── */
.seo-h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-h2::before {              /* gold hairline accent before each section */
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Price / service tables ─────────────────────────────────────────────── */
.seo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.seo-table thead th {
  background: var(--surface);
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.seo-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.seo-table tbody tr:last-child td { border-bottom: 0; }
.seo-table tbody tr:hover td { background: #FCFDFE; }
.seo-rate {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.seo-dur { color: var(--text-2); white-space: nowrap; }
.seo-tag {
  display: inline-block;
  background: #FBF3DF;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.seo-note {
  font-size: .82rem;
  color: var(--text-2);
  margin: 14px 0 0;
  line-height: 1.7;
  background: var(--muted-fill);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 16px;
}
.seo-note strong { color: var(--ink); }

/* ── CTA button ─────────────────────────────────────────────────────────── */
.seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .97rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}
.seo-cta:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11,25,48,.16);
}
.seo-cta:active { transform: translateY(0); }
.seo-cta .i { width: 18px; height: 18px; }

/* ── How it works (3-step sequence) ─────────────────────────────────────── */
.seo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; }
.seo-step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 18px; box-shadow: var(--shadow-sm);
}
.seo-step .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .82rem; font-weight: 800; color: var(--gold-dark); letter-spacing: .08em;
}
.seo-step h3 { font-size: 1.04rem; margin: 9px 0 6px; color: var(--ink); }
.seo-step p { font-size: .9rem; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ── Mid-page CTA band ──────────────────────────────────────────────────── */
.seo-cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 100% 0%, #1A2F52, var(--ink) 60%, #081224);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 20px;
  box-shadow: 0 10px 26px rgba(8,18,36,.16);
  margin: 0 0 32px;
}
.seo-cta-band .bt { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.18rem; color: #fff; }
.seo-cta-band p { margin: 5px 0 0; font-size: .9rem; color: rgba(255,255,255,.72); max-width: 44ch; }

/* ── Reviews slot (reserved — no fake reviews / no schema yet) ──────────── */
.seo-reviews-slot {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm);
}
.seo-reviews-slot .ri {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ok-bg); color: var(--ok-text);
}
.seo-reviews-slot .ri .i { width: 22px; height: 22px; }
.seo-reviews-slot strong { display: block; color: var(--ink); font-size: 1rem; font-weight: 700; }
.seo-reviews-slot span { font-size: .9rem; color: var(--text-2); }

/* ── Sticky mobile action bar (mobile only) ─────────────────────────────── */
.seo-sticky { display: none; }
.seo-sticky-in { display: flex; gap: 10px; max-width: var(--maxw); margin: 0 auto; }
.seo-call {
  flex: 0 0 52px; width: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--ok); color: #fff; border: 0;
}
.seo-call:hover { background: #0C8A60; }
.seo-call .i { width: 23px; height: 23px; }
@media (max-width: 600px) {
  .seo-sticky {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(180%) blur(8px);
    border-top: 1px solid var(--line);
  }
  .seo-cta.sticky { flex: 1; justify-content: center; margin: 0; min-height: 50px; }
  body { padding-bottom: 84px; }   /* reserve room so footer isn't hidden */
}

/* ── "Why XpertWorker" card ─────────────────────────────────────────────── */
.seo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin: 0 0 32px;
  box-shadow: var(--shadow-sm);
}
.seo-card .seo-h2 { margin-top: 0; }
/* ── "Why book" — split navy panel + gold-check list ────────────────────── */
.seo-why {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  margin: 0 0 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.seo-why-side {
  background: radial-gradient(130% 150% at 80% -10%, #16294a, var(--ink) 60%, #081223);
  color: #fff;
  padding: 38px 34px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  border-right: 1px solid rgba(200,162,76,.25);
}
.seo-why-side::after {
  content: ""; position: absolute; left: 34px; bottom: 34px;
  width: 42px; height: 3px; background: var(--gold); border-radius: 2px;
}
.seo-why-side .kick {
  font: 700 .72rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
.seo-why-side h3 { font: 800 1.7rem/1.2 "Plus Jakarta Sans", sans-serif; color: #fff; margin: 0 0 12px; letter-spacing: -.01em; }
.seo-why-side p { font-size: .92rem; color: #A9B8D0; margin: 0; line-height: 1.6; }
.seo-why-body { padding: 30px 36px; }
.seo-uvps { list-style: none; margin: 0; padding: 0; }
.seo-uvps li { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; }
.seo-uvps li + li { border-top: 1px solid var(--line); }
.seo-uvps .chk {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-dark);
}
.seo-uvps .chk .i { width: 15px; height: 15px; }
.seo-uvps li > span:last-child { font-size: .95rem; color: var(--text); line-height: 1.5; }

/* ── Service tiles — directory rows with gold rail + chevron ─────────────── */
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}
.seo-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease;
}
.seo-tile::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.seo-tile:hover { text-decoration: none; background: #FCFBF6; border-color: #E7DCC0; }
.seo-tile:hover::before { transform: scaleY(1); }
.seo-tile-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.seo-tile:hover .seo-tile-ic { background: var(--gold-soft); border-color: #EAD9AC; color: var(--gold-dark); }
.seo-tile-ic .i { width: 23px; height: 23px; }
.seo-tile-meta { flex: 1; min-width: 0; }
.seo-tile-meta strong { display: block; font: 700 1rem/1.2 "Plus Jakarta Sans", sans-serif; color: var(--ink); }
.seo-tile-meta small { color: var(--text-2); font-size: .8rem; }
.seo-tile-chev { color: var(--text-3); display: inline-flex; flex-shrink: 0; transition: transform .25s ease, color .25s ease; }
.seo-tile-chev .i { width: 20px; height: 20px; }
.seo-tile:hover .seo-tile-chev { transform: translateX(4px); color: var(--gold-dark); }

/* ── FAQ accordions ─────────────────────────────────────────────────────── */
.seo-faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.seo-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  padding: 16px 48px 16px 20px;
  position: relative;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-3);
  transition: transform .15s ease;
}
.seo-faq details[open] summary::after { content: "\2212"; }
.seo-faq details[open] summary { color: var(--ink); }
.seo-faq .ans {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── Related-area chips ─────────────────────────────────────────────────── */
.seo-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .89rem;
  font-weight: 600;
}
.seo-chip:hover { text-decoration: none; border-color: var(--ink-soft); background: var(--surface); }

/* ── Rich footer ────────────────────────────────────────────────────────── */
.seo-ft {
  background: var(--ink);
  color: #C9D2E0;
  margin-top: 56px;
  border-top: 3px solid var(--gold);
}
.seo-ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 44px 16px 28px;
}
.seo-ft-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px 24px;
}
.seo-ft-brand .b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.seo-ft-brand .b .dot { color: var(--gold); }
.seo-ft-brand p { font-size: .9rem; color: #93A1B8; margin: 10px 0 0; line-height: 1.7; max-width: 32ch; }
.seo-ft h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.seo-ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.seo-ft ul a { color: #AEB9CC; font-size: .9rem; }
.seo-ft ul a:hover { color: #fff; text-decoration: none; }
.seo-ft-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 16px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: #8595AD;
}
.seo-ft-bottom .pay { color: #AEB9CC; }

/* Anchor targets clear the sticky header when scrolled to */
#services { scroll-margin-top: 84px; }

/* Uniform vertical rhythm between top-level sections (overrides per-section margins) */
.seo-wrap > * { margin-bottom: 28px; }
.seo-wrap > .seo-bc { margin-bottom: 18px; }
.seo-wrap > *:last-child { margin-bottom: 0; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .seo-ft-cols { grid-template-columns: 1fr 1fr; }
  .seo-ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .seo-hero { padding: 24px 18px 22px; border-radius: 14px; }
  .seo-h1 { font-size: 1.7rem; line-height: 1.22; }
  .seo-sub { font-size: 1rem; }
  .seo-h2 { font-size: 1.16rem; margin: 0 0 12px; }
  .seo-wrap { padding: 16px 16px 40px; }
  .seo-wrap > * { margin-bottom: 22px; }
  .seo-wrap > .seo-bc { margin-bottom: 14px; }
  .seo-hero .seo-cta { display: none; }     /* sticky bar carries the primary action */
  /* stats compress without overflow */
  .seo-stats { margin-top: 18px; }
  .seo-stat { padding: 11px 9px; }
  .seo-stat .n { font-size: 1.12rem; }
  .seo-stat .l { font-size: .67rem; }
  /* trust strip: 3 compact stat columns in ONE row */
  .seo-trust { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .seo-trust .t { padding: 16px 8px; text-align: center; }
  .seo-trust .lead { font-size: 1.4rem; justify-content: center; }
  .seo-trust .ttl { font-size: .76rem; line-height: 1.2; margin: 7px 0 0; }
  /* service rows: single column directory rows */
  .seo-grid { grid-template-columns: 1fr; gap: 10px; }
  .seo-tile { padding: 13px 15px; gap: 13px; }
  .seo-tile-ic { width: 40px; height: 40px; border-radius: 11px; }
  .seo-tile-ic .i { width: 20px; height: 20px; }
  .seo-tile-meta strong { font-size: .95rem; }
  /* "Why" split stacks: navy panel on top, list below */
  .seo-why { grid-template-columns: 1fr; }
  .seo-why-side { padding: 26px 22px; border-right: 0; border-bottom: 1px solid rgba(200,162,76,.25); }
  .seo-why-side::after { display: none; }
  .seo-why-side h3 { font-size: 1.35rem; }
  .seo-why-body { padding: 6px 22px 4px; }
  /* stack multi-column blocks */
  .seo-steps { grid-template-columns: 1fr; }
  .seo-chip { min-height: 44px; }
}
@media (max-width: 440px) {
  .seo-ft-cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
