/* ═══════════════════════════════════════════════════════════════
   SEO Agency Tools — Main Stylesheet
   Syne (display) + Figtree (body)
   White #ffffff + Indigo #4f35d4 + Citrus #f5c518 + Ink #0f0e1a
   CSS prefix: sat-
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
  --white:      #ffffff;
  --off:        #f8f7ff;
  --off-deep:   #eeedf8;
  --indigo:     #4f35d4;
  --indigo-mid: #6650e0;
  --indigo-lt:  #8874ea;
  --indigo-pale:#e8e6f8;
  --indigo-dim: rgba(79,53,212,.1);
  --citrus:     #f5c518;
  --citrus-lt:  #f8d34a;
  --citrus-dim: rgba(245,197,24,.15);
  --ink:        #0f0e1a;
  --ink-soft:   #1e1c35;
  --body:       #3d3b52;
  --muted:      #7c7a8f;
  --border:     #e4e2f0;
  --border-in:  rgba(79,53,212,.18);
  --shadow-sm:  0 2px 12px rgba(15,14,26,.06);
  --shadow-md:  0 6px 32px rgba(15,14,26,.09);
  --shadow-lg:  0 16px 64px rgba(15,14,26,.13);
  --shadow-in:  0 8px 32px rgba(79,53,212,.22);

  --ff-disp: 'Syne', system-ui, sans-serif;
  --ff-body: 'Figtree', system-ui, sans-serif;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --r:       8px;
  --r-lg:    16px;
  --r-pill:  100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
p { margin-bottom: 1rem; color: var(--body); }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--ff-disp); line-height: 1.1; font-weight: 700; }

/* ── Type helpers ─────────────────────────────────────────── */
.sat-kicker {
  font-family: var(--ff-body); font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--indigo);
  display: block; margin-bottom: .9rem;
}
.sat-kicker--citrus { color: var(--citrus); }
.sat-kicker--muted  { color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────── */
.sat-btn-indigo {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--indigo); color: var(--white);
  font-family: var(--ff-disp); font-size: .9rem; font-weight: 700;
  padding: .85rem 2rem; border-radius: var(--r-pill);
  transition: background .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
}
.sat-btn-indigo:hover {
  background: var(--indigo-mid);
  box-shadow: var(--shadow-in);
  transform: translateY(-1px);
}

.sat-btn-citrus {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--citrus); color: var(--ink);
  font-family: var(--ff-disp); font-size: .9rem; font-weight: 700;
  padding: .85rem 2rem; border-radius: var(--r-pill);
  transition: background .2s, transform .15s; white-space: nowrap;
}
.sat-btn-citrus:hover { background: var(--citrus-lt); transform: translateY(-1px); }

.sat-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--indigo);
  font-family: var(--ff-disp); font-size: .9rem; font-weight: 700;
  padding: .82rem 2rem; border: 2px solid var(--indigo);
  border-radius: var(--r-pill); transition: all .2s; white-space: nowrap;
}
.sat-btn-outline:hover { background: var(--indigo); color: var(--white); }

.sat-btn-ghost-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); color: var(--white);
  font-family: var(--ff-disp); font-size: .88rem; font-weight: 600;
  padding: .78rem 1.8rem; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: all .2s; white-space: nowrap;
}
.sat-btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }

.sat-arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-disp); font-size: .88rem; font-weight: 700;
  color: var(--indigo); transition: gap .2s;
}
.sat-arrow-link:hover { gap: .7rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Sticky with sliding pill indicator
   ═══════════════════════════════════════════════════════════════ */
.sat-topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.sat-topnav.sat-nav-scrolled { box-shadow: var(--shadow-sm); }

.sat-nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}

.sat-nav-logo {
  font-family: var(--ff-disp); font-size: 1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em; white-space: nowrap;
}
.sat-nav-logo .sat-logo-dot { color: var(--indigo); }

/* Link group with sliding pill */
.sat-nav-links {
  display: flex; align-items: center;
  position: relative; gap: 0;
}
.sat-nav-pill {
  position: absolute; height: 32px; background: var(--indigo-dim);
  border-radius: var(--r-pill); transition: left .3s var(--ease), width .3s var(--ease);
  pointer-events: none;
}

/* Services dropdown trigger */
.sat-nav-drop-wrap { position: relative; }
.sat-nav-drop-btn {
  font-family: var(--ff-body); font-size: .82rem; font-weight: 600;
  color: var(--body); padding: .4rem 1rem; border-radius: var(--r-pill);
  cursor: pointer; display: flex; align-items: center; gap: .25rem;
  transition: color .2s; white-space: nowrap; background: none; border: none;
}
.sat-nav-drop-btn:hover, .sat-nav-drop-btn.sat-nav-current { color: var(--indigo); }
.sat-nav-drop-btn svg { transition: transform .2s; }
.sat-nav-drop-wrap.sat-dd-open .sat-nav-drop-btn svg { transform: rotate(180deg); }

.sat-nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: .5rem; width: 280px;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.sat-nav-drop-wrap.sat-dd-open .sat-nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sat-dd-item {
  display: flex; gap: .8rem; align-items: center; padding: .65rem .9rem;
  border-radius: var(--r); transition: background .15s; font-size: .82rem;
}
.sat-dd-item:hover { background: var(--indigo-pale); }
.sat-dd-tag {
  width: 22px; height: 22px; border-radius: 50%; background: var(--indigo-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; color: var(--indigo); flex-shrink: 0;
}
.sat-dd-name { font-weight: 600; color: var(--ink); }

.sat-nav-link {
  font-family: var(--ff-body); font-size: .82rem; font-weight: 600;
  color: var(--body); padding: .4rem 1rem; border-radius: var(--r-pill);
  transition: color .2s; white-space: nowrap; position: relative; z-index: 1;
}
.sat-nav-link:hover, .sat-nav-link.sat-nav-current { color: var(--indigo); }

.sat-nav-cta {
  background: var(--indigo); color: var(--white);
  font-family: var(--ff-disp); font-size: .8rem; font-weight: 700;
  padding: .5rem 1.4rem; border-radius: var(--r-pill);
  margin-left: .8rem; transition: background .2s, box-shadow .2s;
  display: inline-flex; align-items: center; white-space: nowrap;
}
.sat-nav-cta:hover { background: var(--indigo-mid); box-shadow: var(--shadow-in); }

.sat-burger {
  display: none; flex-direction: column; gap: 4px; padding: 8px; cursor: pointer;
}
.sat-burger span {
  width: 20px; height: 1.5px; background: var(--ink); display: block; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.sat-burger.sat-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.sat-burger.sat-open span:nth-child(2) { opacity: 0; }
.sat-burger.sat-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.sat-mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--white);
  padding: 5rem 2rem 2rem; opacity: 0; pointer-events: none;
  transition: opacity .25s; display: flex; flex-direction: column;
}
.sat-mobile-nav.sat-mob-open { opacity: 1; pointer-events: auto; }
.sat-mobile-nav a {
  font-family: var(--ff-disp); font-size: 1.6rem; font-weight: 700;
  color: var(--ink); padding: .55rem 0; border-bottom: 1px solid var(--border);
  display: block; transition: color .2s;
}
.sat-mobile-nav a:hover { color: var(--indigo); }

/* ═══════════════════════════════════════════════════════════════
   HERO — Diagonal Split
   ═══════════════════════════════════════════════════════════════ */
.sat-hero-section {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  padding-top: 64px;
}

/* Left panel — white */
.sat-hero-left {
  background: var(--white);
  padding: 6rem 3rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.sat-hero-kicker {
  font-family: var(--ff-body); font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--indigo);
  margin-bottom: 1.5rem; display: block;
}
.sat-hero-headline {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.05; margin-bottom: 1.5rem;
}
.sat-hero-headline em { font-style: normal; color: var(--indigo); }
.sat-hero-sub {
  font-size: 1rem; font-weight: 400; color: var(--body);
  max-width: 44ch; line-height: 1.75; margin-bottom: 2.5rem;
}
.sat-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats row under actions */
.sat-hero-counters {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 2rem; margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.sat-counter-val { font-family: var(--ff-disp); font-size: 1.8rem; font-weight: 800; color: var(--indigo); line-height: 1; margin-bottom: .2rem; }
.sat-counter-lbl { font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* Right panel — indigo */
.sat-hero-right {
  background: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 3rem;
  position: relative; overflow: hidden;
}
/* Diagonal cut */
.sat-hero-right::before {
  content: ''; position: absolute;
  left: -60px; top: 0; bottom: 0; width: 120px;
  background: var(--white);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
/* Abstract circles */
.sat-hero-right::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -20%; right: -20%; pointer-events: none;
}
.sat-hero-dashboard-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
}
.sat-dashboard-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); backdrop-filter: blur(8px);
  overflow: hidden;
}
.sat-dash-top { background: rgba(0,0,0,.2); padding: .7rem 1rem; display: flex; align-items: center; gap: .5rem; }
.sat-dash-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sat-dash-dot:nth-child(1) { background: #ff5f57; }
.sat-dash-dot:nth-child(2) { background: #febc2e; }
.sat-dash-dot:nth-child(3) { background: #28c840; }
.sat-dash-title { font-size: .72rem; color: rgba(255,255,255,.5); margin-left: .5rem; font-family: var(--ff-body); }
.sat-dash-body { padding: 1.5rem; }
.sat-dash-img { width: 100%; border-radius: var(--r); overflow: hidden; background: rgba(255,255,255,.08); aspect-ratio: 16/9; }
.sat-dash-img img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.sat-dash-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.sat-dash-stat { background: rgba(255,255,255,.06); border-radius: var(--r); padding: .75rem; text-align: center; }
.sat-dash-stat-val { font-family: var(--ff-disp); font-size: 1.2rem; color: var(--citrus); font-weight: 800; }
.sat-dash-stat-lbl { font-size: .6rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Card grid with colour-coded top borders
   ═══════════════════════════════════════════════════════════════ */
.sat-services-zone { background: var(--off); padding: 8rem 2rem; }
.sat-services-shell { max-width: 1320px; margin: 0 auto; }
.sat-services-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.sat-services-hed { font-size: clamp(2.2rem, 4.5vw, 4.5rem); }

.sat-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sat-svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem; overflow: hidden;
  position: relative; transition: box-shadow .25s, transform .25s;
  cursor: pointer; text-decoration: none; color: inherit;
  display: block;
}
.sat-svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sat-svc-card-bar {
  height: 4px; border-radius: 4px 4px 0 0;
  position: absolute; top: 0; left: 0; right: 0;
}
.sat-svc-tag {
  font-family: var(--ff-body); font-size: .6rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .6rem; display: block;
}
.sat-svc-name { font-family: var(--ff-disp); font-size: 1.2rem; color: var(--ink); margin-bottom: .5rem; }
.sat-svc-desc { font-size: .82rem; color: var(--body); line-height: 1.6; margin-bottom: 1.5rem; }
.sat-svc-from { font-size: .7rem; font-weight: 600; color: var(--muted); margin-bottom: .2rem; }
.sat-svc-price { font-family: var(--ff-disp); font-size: 1.4rem; color: var(--indigo); }
.sat-svc-arrow { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--ff-disp); font-size: .8rem; color: var(--indigo); margin-top: .8rem; transition: gap .2s; }
.sat-svc-card:hover .sat-svc-arrow { gap: .6rem; }

/* ═══════════════════════════════════════════════════════════════
   FEATURED CASE — Full-width magazine style
   ═══════════════════════════════════════════════════════════════ */
.sat-case-feature-zone {
  background: var(--ink-soft);
  padding: 0;
}
.sat-case-feat-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.sat-feat-left {
  padding: 6rem 5rem 6rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
}
.sat-feat-tag { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--citrus); margin-bottom: .8rem; display: block; }
.sat-feat-client { font-family: var(--ff-disp); font-size: clamp(2rem, 4vw, 4rem); color: var(--white); margin-bottom: .4rem; }
.sat-feat-sector { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 2rem; }
.sat-feat-result { font-family: var(--ff-disp); font-size: clamp(2.5rem, 5vw, 5rem); color: var(--citrus); line-height: 1; margin-bottom: .4rem; }
.sat-feat-period { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 2rem; }
.sat-feat-story { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 2rem; }
.sat-feat-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.sat-feat-chip {
  font-size: .7rem; font-weight: 600;
  background: rgba(245,197,24,.12); color: var(--citrus);
  border: 1px solid rgba(245,197,24,.25); padding: .28rem .9rem; border-radius: var(--r-pill);
}
.sat-feat-right { overflow: hidden; background: var(--indigo-pale); }
.sat-feat-right img { width: 100%; height: 100%; object-fit: cover; opacity: .7; filter: grayscale(15%); transition: opacity .4s, filter .4s; }
.sat-feat-right:hover img { opacity: .85; filter: grayscale(0%); }

/* ═══════════════════════════════════════════════════════════════
   NUMBERS BAND — Citrus background
   ═══════════════════════════════════════════════════════════════ */
.sat-numbers-band { background: var(--citrus); padding: 4rem 2rem; }
.sat-numbers-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sat-num-block { text-align: center; padding: 1rem 2rem; border-right: 1px solid rgba(15,14,26,.1); }
.sat-num-block:last-child { border-right: none; }
.sat-num-val { font-family: var(--ff-disp); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--ink); line-height: 1; margin-bottom: .25rem; }
.sat-num-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(15,14,26,.6); }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES GRID
   ═══════════════════════════════════════════════════════════════ */
.sat-cases-zone { background: var(--white); padding: 8rem 2rem; }
.sat-cases-shell { max-width: 1320px; margin: 0 auto; }
.sat-cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.sat-cases-hed { font-size: clamp(2rem, 4vw, 4rem); }
.sat-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sat-case-tile {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.sat-case-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sat-case-img { aspect-ratio: 16/9; overflow: hidden; background: var(--off); }
.sat-case-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .4s, transform .5s; }
.sat-case-tile:hover .sat-case-img img { filter: grayscale(0%); transform: scale(1.04); }
.sat-case-body { padding: 1.8rem; }
.sat-case-sec { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--indigo); margin-bottom: .4rem; }
.sat-case-name { font-family: var(--ff-disp); font-size: 1.2rem; color: var(--ink); margin-bottom: .2rem; }
.sat-case-loc { font-size: .72rem; color: var(--muted); margin-bottom: .8rem; }
.sat-case-result { font-family: var(--ff-disp); font-size: 1.6rem; color: var(--indigo); margin-bottom: .8rem; }
.sat-case-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.sat-case-tag { font-size: .65rem; font-weight: 600; background: var(--indigo-pale); color: var(--indigo); border-radius: var(--r-pill); padding: .2rem .75rem; }

/* ═══════════════════════════════════════════════════════════════
   PROCESS — Horizontal numbered steps
   ═══════════════════════════════════════════════════════════════ */
.sat-process-zone { background: var(--off); padding: 8rem 2rem; }
.sat-process-shell { max-width: 1320px; margin: 0 auto; }
.sat-process-hd { text-align: center; margin-bottom: 5rem; }
.sat-process-hed { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: .5rem; }
.sat-process-sub { font-size: .92rem; color: var(--muted); max-width: 48ch; margin: 0 auto; }

.sat-proc-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; position: relative;
}
.sat-proc-row::before {
  content: ''; position: absolute;
  top: 28px; left: calc(100%/12); right: calc(100%/12);
  height: 2px; background: var(--border); z-index: 0;
}
.sat-proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.sat-proc-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-disp); font-size: .8rem; font-weight: 800; color: var(--muted);
  margin-bottom: 1.2rem; transition: all .3s;
}
.sat-proc-step:hover .sat-proc-dot { background: var(--indigo); border-color: var(--indigo); color: var(--citrus); }
.sat-proc-time { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--indigo); margin-bottom: .4rem; }
.sat-proc-title { font-family: var(--ff-disp); font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.sat-proc-desc { font-size: .72rem; color: var(--body); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS — 2+1 mosaic layout
   ═══════════════════════════════════════════════════════════════ */
.sat-testimonials-zone { background: var(--white); padding: 8rem 2rem; border-top: 1px solid var(--border); }
.sat-testimonials-shell { max-width: 1320px; margin: 0 auto; }
.sat-tmon-hd { margin-bottom: 4rem; }
.sat-tmon-hed { font-size: clamp(2rem, 4vw, 4rem); }

.sat-tmon-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
.sat-tmon-left { display: flex; flex-direction: column; gap: 1.5rem; }
.sat-tmon-right { }

.sat-tmon-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: box-shadow .25s;
}
.sat-tmon-card:hover { box-shadow: var(--shadow-md); }
.sat-tmon-card--indigo { background: var(--indigo); border-color: var(--indigo); }
.sat-tmon-quote { font-size: .85rem; color: var(--body); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.sat-tmon-card--indigo .sat-tmon-quote { color: rgba(255,255,255,.8); }
.sat-tmon-attr { display: flex; gap: .75rem; align-items: center; }
.sat-tmon-av { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--indigo-pale); flex-shrink: 0; }
.sat-tmon-av img { width: 100%; height: 100%; object-fit: cover; }
.sat-tmon-name { font-family: var(--ff-disp); font-size: .9rem; color: var(--ink); }
.sat-tmon-card--indigo .sat-tmon-name { color: var(--white); }
.sat-tmon-role { font-size: .7rem; color: var(--muted); margin-top: .1rem; }
.sat-tmon-card--indigo .sat-tmon-role { color: rgba(255,255,255,.5); }
.sat-tmon-stars { color: var(--citrus); font-size: .7rem; margin-bottom: .4rem; }

/* ═══════════════════════════════════════════════════════════════
   BUNDLE PRICING — Horizontal comparison
   ═══════════════════════════════════════════════════════════════ */
.sat-pricing-zone { background: var(--off); padding: 8rem 2rem; border-top: 1px solid var(--border); }
.sat-pricing-shell { max-width: 1200px; margin: 0 auto; }
.sat-pricing-hd { text-align: center; margin-bottom: 4rem; }
.sat-pricing-hed { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: .5rem; }
.sat-pricing-sub { font-size: .92rem; color: var(--muted); max-width: 52ch; margin: 0 auto; }

.sat-bundle-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sat-bundle-card {
  border-radius: var(--r-lg); padding: 2.5rem 2rem; overflow: hidden;
  position: relative; transition: box-shadow .25s, transform .25s;
}
.sat-bundle-card--light { background: var(--white); border: 1.5px solid var(--border); }
.sat-bundle-card--indigo { background: var(--indigo); border: 1.5px solid var(--indigo); }
.sat-bundle-card--ink { background: var(--ink); border: 1.5px solid var(--ink); }
.sat-bundle-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sat-bundle-pop-badge {
  position: absolute; top: -1px; right: 2rem;
  background: var(--citrus); color: var(--ink);
  font-family: var(--ff-disp); font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem 1rem; border-radius: 0 0 var(--r) var(--r);
}
.sat-bundle-name { font-family: var(--ff-disp); font-size: 1.5rem; margin-bottom: .3rem; }
.sat-bundle-card--light .sat-bundle-name { color: var(--ink); }
.sat-bundle-card--indigo .sat-bundle-name, .sat-bundle-card--ink .sat-bundle-name { color: var(--white); }
.sat-bundle-tag { font-size: .78rem; font-weight: 400; line-height: 1.55; margin-bottom: 1.8rem; }
.sat-bundle-card--light .sat-bundle-tag { color: var(--muted); }
.sat-bundle-card--indigo .sat-bundle-tag, .sat-bundle-card--ink .sat-bundle-tag { color: rgba(255,255,255,.55); }

.sat-bundle-price-row { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .3rem; }
.sat-bundle-sym { font-size: 1.1rem; font-weight: 500; }
.sat-bundle-card--light .sat-bundle-sym { color: var(--ink); }
.sat-bundle-card--indigo .sat-bundle-sym, .sat-bundle-card--ink .sat-bundle-sym { color: var(--citrus); }
.sat-bundle-int { font-family: var(--ff-disp); font-size: 3rem; line-height: 1; }
.sat-bundle-card--light .sat-bundle-int { color: var(--ink); }
.sat-bundle-card--indigo .sat-bundle-int, .sat-bundle-card--ink .sat-bundle-int { color: var(--white); }
.sat-bundle-dec { font-size: 1.1rem; }
.sat-bundle-card--light .sat-bundle-dec { color: var(--ink); }
.sat-bundle-card--indigo .sat-bundle-dec, .sat-bundle-card--ink .sat-bundle-dec { color: var(--citrus); }
.sat-bundle-billing { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2rem; }
.sat-bundle-card--light .sat-bundle-billing { color: var(--muted); }
.sat-bundle-card--indigo .sat-bundle-billing, .sat-bundle-card--ink .sat-bundle-billing { color: rgba(255,255,255,.4); }
.sat-bundle-divider { height: 1px; margin-bottom: 1.5rem; }
.sat-bundle-card--light .sat-bundle-divider { background: var(--border); }
.sat-bundle-card--indigo .sat-bundle-divider { background: rgba(255,255,255,.12); }
.sat-bundle-card--ink .sat-bundle-divider { background: rgba(255,255,255,.1); }
.sat-bundle-feats { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.sat-bundle-feat { font-size: .82rem; display: flex; gap: .6rem; align-items: flex-start; line-height: 1.45; }
.sat-bundle-card--light .sat-bundle-feat { color: var(--body); }
.sat-bundle-card--indigo .sat-bundle-feat, .sat-bundle-card--ink .sat-bundle-feat { color: rgba(255,255,255,.7); }
.sat-bundle-check { flex-shrink: 0; font-size: .65rem; margin-top: .2rem; }
.sat-bundle-card--light .sat-bundle-check { color: var(--indigo); }
.sat-bundle-card--indigo .sat-bundle-check { color: var(--citrus); }
.sat-bundle-card--ink .sat-bundle-check { color: var(--citrus); }

/* Addon shelf */
.sat-addon-shelf { background: var(--white); padding: 5rem 2rem; border-top: 1px solid var(--border); }
.sat-addon-shell { max-width: 1000px; margin: 0 auto; }
.sat-addon-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 1rem; margin-top: 2rem; }
.sat-addon-box {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.2rem;
  transition: border-color .2s, transform .2s;
}
.sat-addon-box:hover { border-color: var(--indigo-mid); transform: translateY(-2px); }
.sat-addon-lbl { font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; line-height: 1.4; }
.sat-addon-price { font-family: var(--ff-disp); font-size: 1.15rem; color: var(--indigo); }

/* ═══════════════════════════════════════════════════════════════
   FAQ — Numbered single column
   ═══════════════════════════════════════════════════════════════ */
.sat-faq-zone { background: var(--off); padding: 8rem 2rem; border-top: 1px solid var(--border); }
.sat-faq-shell { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.sat-faq-left { }
.sat-faq-hed { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: .5rem; }
.sat-faq-sub { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

.sat-faq-list { }
.sat-faq-node { border-bottom: 1px solid var(--border); }
.sat-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0; cursor: pointer; background: none; border: none; text-align: left;
}
.sat-faq-q { font-family: var(--ff-disp); font-size: .95rem; color: var(--ink); line-height: 1.35; }
.sat-faq-ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--indigo-dim); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--indigo); flex-shrink: 0; transition: all .2s;
}
.sat-faq-node.sat-faq-open .sat-faq-ico { background: var(--indigo); color: var(--white); transform: rotate(45deg); }
.sat-faq-ans { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.sat-faq-ans-inner { padding: 0 0 1.2rem; font-size: .88rem; color: var(--body); line-height: 1.8; }
.sat-faq-node.sat-faq-open .sat-faq-ans { max-height: 400px; }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND — Indigo gradient
   ═══════════════════════════════════════════════════════════════ */
.sat-cta-band {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-soft, #3a26a0) 100%);
  padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.sat-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sat-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.sat-cta-hed { font-size: clamp(2.5rem, 5vw, 5.5rem); color: var(--white); margin-bottom: 1rem; }
.sat-cta-hed em { font-style: normal; color: var(--citrus); }
.sat-cta-sub { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 2.5rem; }
.sat-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE MASTHEAD
   ═══════════════════════════════════════════════════════════════ */
.sat-mast {
  background: var(--white); padding: 9rem 2rem 5.5rem;
  border-bottom: 3px solid var(--citrus);
  position: relative; overflow: hidden;
}
.sat-mast::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(to left, var(--indigo-pale) 0%, transparent 100%);
}
.sat-mast-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.sat-mast-h { font-size: clamp(3rem, 7vw, 8rem); color: var(--ink); margin-bottom: .7rem; }
.sat-mast-h em { font-style: normal; color: var(--indigo); }
.sat-mast-sub { font-size: 1rem; color: var(--muted); max-width: 58ch; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES
   ═══════════════════════════════════════════════════════════════ */
.sat-svc-body-zone { background: var(--white); padding: 6rem 2rem; }
.sat-svc-body-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 6rem; align-items: center; }
.sat-svc-body-text p { font-size: .96rem; color: var(--body); line-height: 1.9; margin-bottom: 1.2rem; }
.sat-svc-body-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--off); }
.sat-svc-body-img img { width: 100%; height: 100%; object-fit: cover; }

.sat-svc-includes-zone { background: var(--off); padding: 5rem 2rem; border-top: 1px solid var(--border); }
.sat-svc-incl-inner { max-width: 1100px; margin: 0 auto; }
.sat-svc-incl-hed { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 2.5rem; }
.sat-incl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.sat-incl-cell { background: var(--white); padding: 1.2rem 1.5rem; display: flex; gap: .8rem; align-items: flex-start; font-size: .87rem; color: var(--body); line-height: 1.5; }
.sat-incl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); flex-shrink: 0; margin-top: .3rem; }

.sat-svc-price-zone { background: var(--indigo); padding: 5rem 2rem; }
.sat-svc-price-inner { max-width: 880px; margin: 0 auto; }
.sat-svc-p-hed { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: .4rem; }
.sat-svc-p-sub { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 2.5rem; }
.sat-svc-price-list { border-radius: var(--r); overflow: hidden; }
.sat-svc-price-row {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.3rem 1.8rem; background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.sat-svc-price-row:hover { background: rgba(255,255,255,.1); }
.sat-svc-price-row:last-child { border-bottom: none; }
.sat-svc-p-name { font-size: .9rem; font-weight: 500; color: var(--white); }
.sat-svc-p-rhs { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.sat-svc-p-val { font-family: var(--ff-disp); font-size: 1.5rem; color: var(--citrus); }

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT / BUILDER FORMS
   ═══════════════════════════════════════════════════════════════ */
.sat-checkout-zone { background: var(--off); min-height: 100vh; padding: 7.5rem 2rem 5rem; }
.sat-checkout-shell { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 3.5rem; align-items: start; }
.sat-checkout-h { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: .4rem; }
.sat-checkout-sub { font-size: .88rem; color: var(--muted); margin-bottom: 2rem; }

.sat-sect-lbl {
  font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--indigo);
  border-left: 2px solid var(--indigo); padding-left: .6rem;
  display: block; margin-bottom: 1rem;
}
.sat-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sat-field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .9rem; }
.sat-field-lbl { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.sat-input, .sat-select, .sat-textarea {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .8rem 1rem; color: var(--ink); font-size: .9rem;
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.sat-input::placeholder, .sat-textarea::placeholder { color: var(--muted); }
.sat-input:focus, .sat-select:focus, .sat-textarea:focus {
  border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-dim);
}
.sat-textarea { resize: vertical; min-height: 80px; }
.sat-tos-row { display: flex; gap: .75rem; align-items: flex-start; font-size: .8rem; color: var(--body); cursor: pointer; margin-bottom: 1.5rem; line-height: 1.55; }
.sat-tos-row input { margin-top: 2px; accent-color: var(--indigo); flex-shrink: 0; }
.sat-tos-row a { color: var(--indigo); }
.sat-pay-btn {
  width: 100%; background: var(--indigo); color: var(--white);
  font-family: var(--ff-disp); font-size: .95rem; font-weight: 700;
  padding: 1.1rem 2rem; border-radius: var(--r-pill); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: background .2s, box-shadow .2s;
}
.sat-pay-btn:hover { background: var(--indigo-mid); box-shadow: var(--shadow-in); }

.sat-order-box { background: var(--indigo); border-radius: var(--r-lg); padding: 2rem; position: sticky; top: 84px; }
.sat-order-hd { font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.sat-order-pkg { font-family: var(--ff-disp); font-size: 1.3rem; color: var(--white); margin-bottom: .2rem; }
.sat-order-price { font-family: var(--ff-disp); font-size: 2.5rem; color: var(--citrus); }
.sat-order-billing { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.sat-order-feats { background: rgba(255,255,255,.05); border-radius: var(--r); padding: .8rem 1rem; margin-bottom: 1rem; }
.sat-order-feats li { font-size: .73rem; color: rgba(255,255,255,.5); padding: .2rem 0 .2rem 1rem; position: relative; }
.sat-order-feats li::before { content: '◆'; position: absolute; left: 0; color: var(--citrus); font-size: .4rem; top: .55rem; }
.sat-order-extra { display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); padding: .3rem 0; }
.sat-order-extra-v { color: var(--white); font-weight: 600; }
.sat-order-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; margin-top: .8rem; }
.sat-order-total-l { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.sat-order-total-v { font-family: var(--ff-disp); font-size: 1.8rem; color: var(--citrus); }
.sat-order-lock { font-size: .65rem; color: rgba(255,255,255,.22); margin-top: 1rem; display: flex; gap: .4rem; align-items: center; }

/* Builder */
.sat-builder-zone { background: var(--off); min-height: 100vh; padding: 7.5rem 2rem 5rem; }
.sat-builder-shell { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.sat-builder-banner { grid-column: 1 / -1; }
.sat-builder-h { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: .5rem; }
.sat-builder-sub { font-size: .9rem; color: var(--muted); max-width: 52ch; }
.sat-pkg-opt { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .6rem; transition: all .2s; }
.sat-pkg-opt:hover { border-color: var(--indigo-mid); }
.sat-pkg-opt.sat-pkg-picked { border-color: var(--indigo); background: var(--indigo-pale); }
.sat-pkg-opt input { display: none; }
.sat-pkg-opt-name { font-family: var(--ff-disp); font-size: 1rem; color: var(--ink); }
.sat-pkg-opt-bill { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }
.sat-pkg-opt-price { font-family: var(--ff-disp); font-size: 1.2rem; color: var(--indigo); white-space: nowrap; }
.sat-addon-opt { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: .85rem 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; transition: all .2s; }
.sat-addon-opt:hover { border-color: var(--indigo-mid); }
.sat-addon-opt.sat-addon-checked { border-color: var(--indigo); background: var(--indigo-pale); }
.sat-addon-opt input { display: none; }
.sat-addon-opt-lhs { display: flex; gap: .75rem; align-items: center; }
.sat-checkbox { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 3px; flex-shrink: 0; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.sat-addon-opt.sat-addon-checked .sat-checkbox { background: var(--indigo); border-color: var(--indigo); }
.sat-addon-opt.sat-addon-checked .sat-checkbox::after { content: '✓'; color: var(--white); font-size: .55rem; font-weight: 800; }
.sat-addon-opt-name { font-size: .84rem; color: var(--ink); font-weight: 500; }
.sat-addon-opt-price { font-size: .85rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.sat-hrs-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--border); outline: none; cursor: pointer; border-radius: 4px; }
.sat-hrs-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--indigo); cursor: pointer; box-shadow: 0 2px 8px rgba(79,53,212,.3); }
.sat-hrs-disp { font-family: var(--ff-disp); font-size: 2.5rem; color: var(--ink); min-width: 3ch; }
.sat-live-panel { background: var(--indigo); border-radius: var(--r-lg); padding: 2rem; position: sticky; top: 84px; }
.sat-live-hd { font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.sat-live-items { min-height: 50px; }
.sat-live-item { display: flex; justify-content: space-between; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.55); padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sat-live-item-v { color: var(--white); font-weight: 600; white-space: nowrap; }
.sat-live-empty { font-size: .78rem; color: rgba(255,255,255,.28); font-style: italic; padding: .5rem 0; }
.sat-live-total-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; margin-top: .8rem; border-top: 1px solid rgba(255,255,255,.15); }
.sat-live-total-l { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.sat-live-total-v { font-family: var(--ff-disp); font-size: 2rem; color: var(--citrus); }
.sat-live-go { display: block; width: 100%; margin-top: 1.5rem; background: var(--citrus); color: var(--ink); font-family: var(--ff-disp); font-size: .9rem; font-weight: 800; text-align: center; padding: 1rem; border-radius: var(--r-pill); border: none; cursor: pointer; transition: background .2s; text-decoration: none; }
.sat-live-go:hover { background: var(--citrus-lt); }
.sat-live-go[disabled] { opacity: .3; pointer-events: none; }
.sat-live-note { font-size: .66rem; color: rgba(255,255,255,.22); text-align: center; margin-top: .8rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT / CONTACT / LEGAL
   ═══════════════════════════════════════════════════════════════ */
.sat-about-zone { background: var(--white); padding: 7rem 2rem; }
.sat-about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 8rem; align-items: start; }
.sat-about-big { font-family: var(--ff-disp); font-size: clamp(5rem, 10vw, 10rem); color: var(--indigo-pale); line-height: .9; }
.sat-about-metrics { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sat-about-metric { border-left: 3px solid var(--citrus); padding-left: 1rem; }
.sat-about-metric-val { font-family: var(--ff-disp); font-size: 2rem; color: var(--indigo); line-height: 1; }
.sat-about-metric-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.sat-about-text p { font-size: .96rem; color: var(--body); line-height: 1.9; margin-bottom: 1.2rem; }
.sat-about-pull { border-left: 3px solid var(--indigo); padding-left: 1.5rem; margin: 2rem 0; }
.sat-about-pull p { font-family: var(--ff-disp); font-size: 1.1rem; color: var(--ink); line-height: 1.65; }

.sat-team-zone { background: var(--off); padding: 6rem 2rem; border-top: 1px solid var(--border); }
.sat-team-inner { max-width: 1200px; margin: 0 auto; }
.sat-team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sat-member { }
.sat-member-img { aspect-ratio: 3/4; overflow: hidden; background: var(--indigo-pale); border-radius: var(--r-lg); margin-bottom: .9rem; filter: grayscale(20%); transition: filter .35s; }
.sat-member:hover .sat-member-img { filter: grayscale(0%); }
.sat-member-img img { width: 100%; height: 100%; object-fit: cover; }
.sat-member-role { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--indigo); margin-bottom: .2rem; }
.sat-member-name { font-family: var(--ff-disp); font-size: 1rem; color: var(--ink); margin-bottom: .35rem; }
.sat-member-bio { font-size: .73rem; color: var(--muted); line-height: 1.55; }

.sat-contact-zone { background: var(--white); min-height: 100vh; padding: 7.5rem 2rem 5rem; }
.sat-contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 7rem; align-items: start; }
.sat-contact-h { font-size: clamp(2.5rem, 6vw, 7rem); color: var(--ink); line-height: 1.05; margin-bottom: 1.5rem; }
.sat-contact-sub { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.sat-contact-deets { display: flex; flex-direction: column; gap: 1.2rem; }
.sat-contact-det { display: flex; gap: .9rem; align-items: flex-start; }
.sat-contact-icon { width: 32px; height: 32px; background: var(--indigo-pale); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--indigo); flex-shrink: 0; }
.sat-contact-dl { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.sat-contact-dv { font-size: .88rem; color: var(--ink); }
.sat-contact-dv a:hover { color: var(--indigo); }
.sat-contact-form-wrap { background: var(--off); border: 1px solid var(--border); border-top: 3px solid var(--indigo); border-radius: var(--r-lg); padding: 2.5rem; }

.sat-legal-zone { background: var(--white); min-height: 100vh; padding: 5.5rem 2rem; }
.sat-legal-doc { max-width: 760px; margin: 0 auto; }
.sat-legal-meta { font-size: .78rem; color: var(--muted); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.sat-legal-doc h2 { font-family: var(--ff-disp); font-size: 1.4rem; color: var(--ink); margin: 2.5rem 0 .7rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.sat-legal-doc h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.sat-legal-doc p { font-size: .9rem; color: var(--body); line-height: 1.8; margin-bottom: 1rem; }
.sat-legal-doc ul, .sat-legal-doc ol { font-size: .9rem; color: var(--body); padding-left: 1.2rem; margin-bottom: 1rem; line-height: 1.75; }
.sat-legal-doc li { margin-bottom: .4rem; }
.sat-legal-doc a { color: var(--indigo); }
.sat-legal-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .83rem; }
.sat-legal-table th { background: var(--off); color: var(--ink); padding: .6rem 1rem; text-align: left; font-weight: 700; }
.sat-legal-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--border); color: var(--body); }

/* ═══════════════════════════════════════════════════════════════
   CONFIRM / RESULT PAGES
   ═══════════════════════════════════════════════════════════════ */
.sat-confirm-zone { background: var(--off); min-height: 100vh; display: flex; align-items: center; padding: 5rem 2rem; }
.sat-confirm-box { max-width: 560px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--indigo); border-radius: var(--r-lg); padding: 3rem; box-shadow: var(--shadow-md); }
.sat-confirm-icon { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.sat-confirm-icon--ok { background: #dcfce7; color: #16a34a; }
.sat-confirm-icon--x  { background: var(--off); color: var(--muted); }
.sat-confirm-h { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: .8rem; }
.sat-confirm-p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.sat-confirm-steps { background: var(--off); border-radius: var(--r); padding: 1.5rem; margin-bottom: 2rem; counter-reset: sat-step; }
.sat-confirm-step { counter-increment: sat-step; display: flex; gap: .8rem; margin-bottom: .8rem; align-items: flex-start; font-size: .82rem; }
.sat-confirm-step:last-child { margin-bottom: 0; }
.sat-confirm-step::before { content: counter(sat-step); width: 20px; height: 20px; background: var(--indigo); color: var(--white); border-radius: 50%; font-family: var(--ff-disp); font-size: .65rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.sat-confirm-step strong { color: var(--ink); display: block; margin-bottom: .1rem; }
.sat-confirm-step span { color: var(--muted); }
.sat-confirm-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.sat-footer { background: var(--ink); padding: 5.5rem 2rem 3rem; }
.sat-footer-inner { max-width: 1320px; margin: 0 auto; }
.sat-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.sat-footer-brand { font-family: var(--ff-disp); font-size: 1.1rem; color: var(--white); display: block; margin-bottom: .6rem; }
.sat-footer-brand .sat-fb-dot { color: var(--citrus); }
.sat-footer-tagline { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.65; max-width: 26ch; margin-bottom: 1.2rem; }
.sat-footer-contact-r { font-size: .76rem; color: rgba(255,255,255,.3); margin-bottom: .3rem; }
.sat-footer-contact-r a:hover { color: var(--citrus); }
.sat-footer-col-h { font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.2rem; }
.sat-footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.sat-footer-nav a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; }
.sat-footer-nav a:hover { color: var(--citrus); }
.sat-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.sat-footer-copy { font-size: .72rem; color: rgba(255,255,255,.2); }
.sat-footer-digital { font-size: .68rem; color: rgba(255,255,255,.16); font-style: italic; }
.sat-footer-legal-row { display: flex; gap: 1.5rem; }
.sat-footer-legal-row a { font-size: .68rem; color: rgba(255,255,255,.2); transition: color .2s; }
.sat-footer-legal-row a:hover { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE + CHAT
   ═══════════════════════════════════════════════════════════════ */
.sat-cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 200; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
  padding: .9rem 1.6rem; max-width: 640px; width: calc(100% - 3rem);
  display: flex; align-items: center; gap: 1.5rem;
  transition: opacity .3s, transform .3s;
}
.sat-cookie-banner.sat-hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(12px); }
.sat-cookie-txt { font-size: .78rem; color: var(--body); flex: 1; line-height: 1.5; }
.sat-cookie-txt a { color: var(--indigo); }
.sat-cookie-acts { display: flex; gap: .5rem; flex-shrink: 0; }
.sat-cookie-yes { background: var(--indigo); color: var(--white); font-family: var(--ff-disp); font-size: .76rem; font-weight: 700; padding: .45rem 1.1rem; border-radius: var(--r-pill); border: none; cursor: pointer; }
.sat-cookie-no  { background: transparent; color: var(--muted); font-size: .76rem; padding: .45rem 1rem; border: 1px solid var(--border); border-radius: var(--r-pill); cursor: pointer; }

.sat-chat-fab { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 199; width: 50px; height: 50px; background: var(--indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: var(--shadow-in); transition: transform .2s; }
.sat-chat-fab:hover { transform: scale(1.1); }
.sat-chat-fab svg { color: var(--white); }
.sat-chat-pop {
  position: fixed; bottom: 5.5rem; right: 1.8rem; z-index: 199;
  width: 310px; background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--indigo); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(.96); transform-origin: bottom right;
  transition: opacity .25s, transform .25s var(--ease);
}
.sat-chat-pop.sat-chat-on { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.sat-chat-head { background: var(--off); padding: .9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.sat-chat-head-lhs { display: flex; gap: .65rem; align-items: center; }
.sat-chat-av { width: 28px; height: 28px; background: var(--indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-disp); font-size: .75rem; color: var(--white); }
.sat-chat-nm { font-family: var(--ff-disp); font-size: .9rem; color: var(--ink); }
.sat-chat-st { font-size: .62rem; color: var(--muted); }
.sat-chat-cls { background: none; border: none; cursor: pointer; color: var(--muted); font-size: .95rem; }
.sat-chat-msgs { padding: 1rem; height: 210px; overflow-y: auto; display: flex; flex-direction: column; gap: .6rem; }
.sat-msg { max-width: 86%; padding: .55rem .9rem; border-radius: var(--r); font-size: .79rem; line-height: 1.55; }
.sat-msg--bot  { background: var(--off); color: var(--ink); border: 1px solid var(--border); align-self: flex-start; }
.sat-msg--user { background: var(--indigo); color: var(--white); align-self: flex-end; }
.sat-chat-entry { display: flex; border-top: 1px solid var(--border); }
.sat-chat-inp { flex: 1; background: none; border: none; padding: .7rem 1rem; font-size: .79rem; color: var(--ink); outline: none; }
.sat-chat-inp::placeholder { color: var(--muted); }
.sat-chat-snd { background: var(--indigo); color: var(--white); border: none; padding: 0 1rem; font-family: var(--ff-disp); font-size: .72rem; font-weight: 700; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS + REVEALS
   ═══════════════════════════════════════════════════════════════ */
@keyframes satFadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.sat-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.sat-reveal.sat-vis { opacity: 1; transform: translateY(0); }
.sat-d1 { transition-delay: .1s; } .sat-d2 { transition-delay: .2s; } .sat-d3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sat-hero-section { grid-template-columns: 1fr; min-height: auto; }
  .sat-hero-right { min-height: 400px; }
  .sat-hero-right::before { display: none; }
  .sat-hero-counters { grid-template-columns: repeat(2, 1fr); }
  .sat-case-feat-inner { grid-template-columns: 1fr; }
  .sat-feat-left { padding: 4rem 2rem; }
  .sat-numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .sat-svc-grid { grid-template-columns: 1fr 1fr; }
  .sat-bundle-row { grid-template-columns: 1fr; }
  .sat-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sat-team-grid { grid-template-columns: repeat(3, 1fr); }
  .sat-footer-top { grid-template-columns: 1fr 1fr; }
  .sat-faq-shell { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .sat-nav-links, .sat-nav-cta { display: none; }
  .sat-burger { display: flex; }
  .sat-checkout-shell, .sat-builder-shell { grid-template-columns: 1fr; }
  .sat-contact-grid { grid-template-columns: 1fr; }
  .sat-svc-body-grid { grid-template-columns: 1fr; }
  .sat-cases-grid { grid-template-columns: 1fr; }
  .sat-services-hd { grid-template-columns: 1fr; }
  .sat-tmon-grid { grid-template-columns: 1fr; }
  .sat-proc-row { grid-template-columns: repeat(3, 1fr); }
  .sat-proc-row::before { display: none; }
  .sat-field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sat-svc-grid { grid-template-columns: 1fr; }
  .sat-hero-counters { grid-template-columns: 1fr 1fr; }
  .sat-numbers-inner { grid-template-columns: 1fr; }
  .sat-proc-row { grid-template-columns: 1fr; }
  .sat-team-grid { grid-template-columns: 1fr 1fr; }
  .sat-footer-top { grid-template-columns: 1fr; }
  .sat-footer-bottom { flex-direction: column; align-items: flex-start; }
}
