/* Stridec GEO Services Pricing — combined static stylesheet */

/* ===== colors_and_type.css ===== */
/* =========================================================
   Stridec Design System — Colors & Type
   ========================================================= */


:root {
  /* ---------- Brand ---------- */
  --brand-teal:       #3DBFD9;
  --brand-blue:       #1B7FBF;
  --brand-blue-deep:  #155F8F;
  --brand-gradient:   linear-gradient(135deg, #3DBFD9 0%, #1B7FBF 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(61,191,217,0.10) 0%, rgba(27,127,191,0.10) 100%);

  /* ---------- Neutrals (cool, slight blue tint) ---------- */
  --ink:        #0E1726;  /* near-black, primary text */
  --ink-2:      #2A3647;  /* secondary text */
  --ink-3:      #5B6878;  /* tertiary text */
  --ink-4:      #8A95A4;  /* placeholder / disabled */
  --line:       #E4E9EE;  /* default border */
  --line-soft:  #EEF2F6;  /* subtle separator */
  --bg:         #FFFFFF;  /* surface */
  --bg-soft:    #F7F9FB;  /* page background, alt sections */
  --bg-2:       #EDF2F7;  /* hover surface */

  /* ---------- Semantic ---------- */
  --success:    #18A957;
  --success-bg: #E7F6EE;
  --warn:       #F59E0B;
  --warn-bg:    #FEF3DC;
  --danger:     #DC3545;
  --danger-bg:  #FBE6E8;
  --info:       var(--brand-blue);
  --info-bg:    #E6F1F9;

  /* ---------- Foreground tokens (semantic aliases) ---------- */
  --fg1: var(--ink);
  --fg2: var(--ink-2);
  --fg3: var(--ink-3);
  --fg4: var(--ink-4);
  --fg-on-brand: #FFFFFF;
  --link: var(--brand-blue);
  --link-hover: var(--brand-teal);

  /* ---------- Type ---------- */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale (clamp for fluid) */
  --t-display:  clamp(40px, 6vw, 72px);
  --t-h1:       clamp(32px, 4vw, 48px);
  --t-h2:       clamp(26px, 3vw, 36px);
  --t-h3:       22px;
  --t-h4:       18px;
  --t-body:     16px;
  --t-body-lg:  18px;
  --t-small:    14px;
  --t-xs:       13px;
  --t-eyebrow:  13px;

  /* Tracking */
  --tr-tight:   -0.02em;
  --tr-display: -0.025em;
  --tr-eyebrow: 0.02em;

  /* Line height */
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-body:    1.6;

  /* ---------- Spacing (4px base) ---------- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* ---------- Radii ---------- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 999px;

  /* ---------- Shadow / elevation ---------- */
  --sh-1: 0 1px 2px rgba(14,23,38,0.04);
  --sh-2: 0 1px 2px rgba(14,23,38,0.04), 0 4px 12px rgba(14,23,38,0.04);
  --sh-3: 0 4px 8px rgba(14,23,38,0.06), 0 12px 24px rgba(14,23,38,0.06);
  --sh-4: 0 12px 32px rgba(14,23,38,0.10), 0 4px 8px rgba(14,23,38,0.04);
  --sh-brand: 0 6px 18px rgba(27,127,191,0.25);

  /* ---------- Layout ---------- */
  --container: 1440px;
  --prose:     720px;
  --header-h:  64px;

  /* ---------- Motion ---------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur:      300ms;
  --dur-slow: 500ms;
}

/* =========================================================
   Base / element styles
   ========================================================= */

html, body {
  font-family: var(--font-sans);
  color: var(--fg1);
  background: var(--bg);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fg1);
  letter-spacing: var(--tr-tight);
  line-height: var(--lh-tight);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); font-weight: 800; letter-spacing: var(--tr-display); }
h2 { font-size: var(--t-h2); font-weight: 700; }
h3 { font-size: var(--t-h3); font-weight: 700; line-height: var(--lh-snug); }
h4 { font-size: var(--t-h4); font-weight: 600; line-height: var(--lh-snug); }

p { margin: 0; color: var(--fg2); line-height: var(--lh-body); text-wrap: pretty; }

a { color: var(--link); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--link-hover); }

code, pre, kbd { font-family: var(--font-mono); font-size: 0.92em; }
code { background: var(--bg-2); color: var(--ink); padding: 2px 6px; border-radius: var(--r-sm); }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-12) 0; }

::selection { background: rgba(61,191,217,0.25); color: var(--ink); }

/* Eyebrow label utility */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand-blue);
  padding: 7px 14px; border: 1px solid var(--line);
  border-radius: var(--r-pill); background: var(--bg-soft);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-teal); flex-shrink: 0; }
/* Canonical headline accent — italic gradient emphasis */
.accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 55%, #1B7FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}


/* Display headline */
.display {
  font-size: var(--t-display);
  font-weight: 800;
  letter-spacing: var(--tr-display);
  line-height: var(--lh-tight);
}

/* Brand-gradient text */
.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ===== ui_kits/marketing-site/site.css ===== */
/* Marketing site shared styles */

body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); }
* { box-sizing: border-box; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.prose { max-width: 720px; margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; height: 64px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner { height: 100%; display:flex; align-items:center; justify-content:space-between; }
.site-header img { height: 32px; display:block; }
.site-header .links { display:flex; gap: 28px; align-items:center; }
.site-header .links a { font-size: 14px; font-weight: 500; color: var(--ink-2); cursor:pointer; }
.site-header .links a:hover { color: var(--brand-blue); }
.site-header .cta { font-size: 14px; font-weight: 600; color:#fff; background: var(--brand-gradient); padding: 9px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-brand); cursor:pointer; }

/* Hero */
.hero { padding: 96px 0 72px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero .hero-inner { max-width: 900px; }
.hero h1 {
  font-size: clamp(44px, 6vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04;
  max-width: 900px;
}
.hero h1 .grad { background: var(--brand-gradient); -webkit-background-clip:text; background-clip:text; color: transparent; }
.hero .lede { font-size: 19px; color: var(--ink-2); line-height: 1.55; max-width: 640px; margin-top: 22px; }
.hero .actions { display:flex; gap: 14px; margin-top: 32px; align-items:center; flex-wrap: wrap; }
.hero .meta { margin-top: 20px; font-size: 13px; color: var(--fg3); display:flex; gap: 10px; align-items:center; }
.hero .stars { color: #F5A623; letter-spacing: 2px; }

/* ============ EDITORIAL DARK HERO ============ */
.hero-editorial {
  position: relative;
  background: #07101C;
  color: #fff;
  padding: 140px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-editorial .container { position: relative; z-index: 2; }

/* Fine dot/grid backdrop */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* Accent glow */
.hero-glow {
  position: absolute; top: -20%; right: -15%;
  width: 60%; height: 110%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.22), transparent 65%);
  pointer-events: none;
}
.hero-editorial::after {
  content:""; position: absolute; bottom: -30%; left: -10%;
  width: 45%; height: 70%;
  background: radial-gradient(closest-side, rgba(27,127,191,0.18), transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Eyebrow — small caps, tracked */
.hero-ed-inner { max-width: 960px; margin: 0 auto; text-align: left; }
.hero-ed-eyebrow {
  display:inline-flex; align-items:center; gap: 10px;
  font-size: 12px; font-weight: 500; color: #8FA6BC;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; background: rgba(255,255,255,0.03);
  margin-bottom: 44px;
}
.hero-ed-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-teal);
  box-shadow: 0 0 0 0 rgba(61,191,217,0.7);
  animation: ed-pulse 2.4s infinite;
}
@keyframes ed-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61,191,217,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(61,191,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,191,217,0); }
}
.hero-ed-sep { color: #3B4A5F; }

/* Headline — editorial massive */
.hero-ed-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 108px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 16ch;
  margin: 0;
  text-wrap: balance;
}
.hero-ed-accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 60%, #1B7FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}

/* Lede */
.hero-ed-lede {
  font-size: 19px;
  line-height: 1.55;
  color: #B8C5D4;
  max-width: 540px;
  margin: 36px 0 0;
  font-weight: 400;
}

/* Actions — one primary, one tertiary */
.hero-ed-actions {
  margin-top: 44px;
  display:flex; align-items:center; gap: 24px;
  flex-wrap: wrap;
}
.btn-dark-primary {
  display:inline-flex; align-items:center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  padding: 14px 22px 14px 24px;
  background: #fff; color: #07101C;
  border: 0; border-radius: 999px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  box-shadow: 0 8px 28px rgba(61,191,217,0.18);
}
.btn-dark-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(61,191,217,0.28);
  color: #07101C;
}
.btn-dark-primary span { font-weight: 500; transition: transform var(--dur-fast) var(--ease); }
.btn-dark-primary:hover span { transform: translateX(3px); }

.hero-ed-link {
  font-size: 14.5px; font-weight: 500; color: #B8C5D4;
  text-decoration: none; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.hero-ed-link:hover { color: #fff; border-bottom-color: var(--brand-teal); }

/* Signature meta row at bottom */
.hero-ed-foot {
  margin-top: 120px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-ed-meta {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-ed-meta-col { display:flex; flex-direction:column; gap: 6px; }
.hero-ed-meta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #5B6F85;
  font-family: var(--font-mono);
}
.hero-ed-meta-val {
  font-size: 14px; font-weight: 500; color: #E2E8F0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 780px) {
  .hero-editorial { padding: 96px 0 56px; }
  .hero-ed-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-ed-foot { margin-top: 72px; }
}
.hero-split { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero-split::before {
  content:""; position:absolute; top:-20%; right:-10%; width: 55%; height: 90%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.18), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-split .container { position: relative; z-index: 1; }
.hero-split .hero-grid {
  display:grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-split .hero-copy h1 { font-size: clamp(40px, 5.2vw, 64px); max-width: 560px; }
.hero-split .hero-copy .lede { max-width: 520px; font-size: 18px; }
.hero-visual { display:flex; justify-content: flex-end; align-items: center; }
.aio-svg { width: 100%; max-width: 540px; height: auto; display: block; }

/* Proof strip under hero */
.proof-strip {
  margin-top: 40px; padding: 18px 4px; border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display:flex; flex-wrap: wrap; gap: 28px 44px; align-items:center;
  font-size: 13.5px; color: var(--fg2);
}
.proof-item { display:flex; align-items:center; gap: 10px; font-weight: 500; }
.proof-item .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-teal); flex-shrink: 0; }

/* AIO mock card */
.aio-card {
  width: 100%; max-width: 480px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-3);
  overflow: hidden; position: relative;
  transform: rotate(0.4deg);
  transition: transform 0.5s var(--ease);
}
.aio-card:hover { transform: rotate(0deg) translateY(-3px); }
.aio-card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none;
  background: linear-gradient(135deg, rgba(61,191,217,0.08), transparent 40%);
}
.aio-searchbar {
  display:flex; align-items:center; gap: 10px;
  padding: 12px 16px; margin: 14px 14px 0;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
  font-size: 13.5px; color: var(--ink-2);
}
.aio-searchbar svg { color: var(--fg3); flex-shrink: 0; }
.aio-searchbar span:nth-child(2) { flex: 1; }
.aio-chip {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--brand-gradient); color:#fff;
  padding: 3px 8px; border-radius: 999px;
}
.aio-answer { padding: 20px 22px 16px; position: relative; }
.aio-label {
  display:inline-flex; align-items:center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-blue-deep);
  padding: 5px 11px 5px 9px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(61,191,217,0.14), rgba(27,127,191,0.08));
  border: 1px solid rgba(27,127,191,0.18);
  margin-bottom: 14px;
}
.aio-label svg { color: var(--brand-blue); }
.aio-text {
  font-size: 14.5px; line-height: 1.6; color: var(--ink);
  margin: 0; text-wrap: pretty;
}
.aio-highlight {
  background: linear-gradient(180deg, transparent 55%, rgba(61,191,217,0.32) 55%);
  font-weight: 600; color: var(--brand-blue-deep); padding: 0 1px;
}
.aio-text sup { color: var(--brand-blue); font-size: 10px; font-weight: 700; }

.aio-sources { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line); }
.aio-src-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg3); margin-bottom: 10px; }
.aio-src-chip {
  display:flex; align-items:center; gap: 10px;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: 7px; background: var(--bg);
  transition: border-color var(--dur-fast) var(--ease);
}
.aio-src-chip:hover { border-color: var(--brand-blue); }
.aio-src-chip--featured {
  border-color: rgba(27,127,191,0.35);
  background: linear-gradient(135deg, rgba(61,191,217,0.06), rgba(27,127,191,0.03));
  box-shadow: 0 1px 0 rgba(27,127,191,0.08);
}
.aio-src-fav {
  width: 26px; height: 26px; border-radius: 7px;
  display:flex; align-items:center; justify-content:center;
  font-size: 12px; font-weight: 700; color:#fff; flex-shrink: 0;
}
.aio-src-text { flex: 1; min-width: 0; }
.aio-src-title { font-size: 12.5px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aio-src-dom { font-size: 11px; color: var(--fg3); margin-top: 1px; }
.aio-src-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--brand-gradient);
  padding: 3px 8px; border-radius: 999px; flex-shrink: 0;
}

.aio-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding: 11px 22px; border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.aio-meta {
  font-size: 11.5px; color: var(--fg3); display:flex; align-items:center; gap: 6px;
  font-weight: 500;
}
.aio-meta--accent { color: var(--brand-blue-deep); font-weight: 600; }
.aio-pulse {
  width: 7px; height: 7px; border-radius: 999px; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: aio-pulse 2s infinite;
}
@keyframes aio-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Buttons */
.btn {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  display:inline-flex; align-items:center; gap: 8px;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  text-decoration: none;
}
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(27,127,191,0.32); color:#fff; }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { background: var(--bg); color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--bg-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); padding: 12px 4px; }
.btn-ghost:hover { color: var(--brand-blue); }

/* Section */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-soft); }
.section-eyebrow { font-size: 13px; font-weight: 500; color: var(--fg3); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.025em; max-width: 820px; }
.section-title span.period { color: var(--brand-teal); }
.section-lede { color: var(--ink-2); font-size: 17px; max-width: 640px; margin-top: 14px; line-height: 1.55; }

/* Service cards */
.services { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-2);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer; display:flex; flex-direction:column; gap: 12px;
}
.service:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.service h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.service p { font-size: 14.5px; color: var(--fg2); line-height: 1.6; flex: 1; }
.service .link { color: var(--brand-blue); font-size: 14px; font-weight: 600; margin-top: 4px; }

/* Feature callout */
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-2);
  display:grid; grid-template-columns: 1.1fr 0.9fr; align-items:center;
}
.feature .left { padding: 40px 44px; }
.feature .right { background: linear-gradient(135deg, #EAF4FA 0%, #D8EBF6 100%); height: 100%; padding: 40px; display:flex; align-items:center; justify-content:center; }
.feature .right .card-float { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 20px 22px; max-width: 320px; font-size: 13px; }
.feature .strip { height: 4px; background: var(--brand-gradient); }

/* Stats row */
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.stat-item .num { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item .lbl { font-size: 13px; color: var(--fg3); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Stats — dark proof block */
.section.stats-dark {
  background: linear-gradient(180deg, #0E1726 0%, #103A5A 100%);
  color: #fff; position: relative; overflow: hidden;
}
.section.stats-dark .section-title { color: #fff; }
.section.stats-dark .section-title span.period { color: var(--brand-teal); }
.stats-dark::before {
  content:""; position:absolute; inset: -20% -10% auto auto; width: 60%; height: 120%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.22), transparent 70%);
  pointer-events: none;
}
.stats-dark::after {
  content:""; position:absolute; inset: auto auto -30% -10%; width: 50%; height: 100%;
  background: radial-gradient(closest-side, rgba(27,127,191,0.18), transparent 70%);
  pointer-events: none;
}
.stats-dark .container { position: relative; z-index: 1; }
.stats-head {
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start;
}
.stats-eyebrow { color: #8FE4F5 !important; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.stats-lede { color: #BFD6E6; font-size: 17px; line-height: 1.6; margin-top: 18px; max-width: 560px; }
.section.stats-dark .section-title .grad {
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-meta {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 20px 24px; backdrop-filter: blur(8px);
}
.stats-meta-row {
  display:flex; justify-content:space-between; align-items:baseline; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13.5px;
}
.stats-meta-row:last-child { border-bottom: 0; }
.stats-meta-row span { color: #8FA6BC; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px; font-weight: 600; }
.stats-meta-row strong { color: #fff; font-weight: 600; font-size: 14px; text-align: right; }

.stats-dark-grid { margin-top: 56px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.stats-dark-grid .stat-item .num {
  font-size: 64px; font-weight: 800; letter-spacing: -0.035em; line-height: 1;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 55%, #1B7FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-dark-grid .stat-item .lbl { color: #8FA6BC; margin-top: 14px; font-size: 12px; font-weight: 600; }

/* Logo cloud (legacy) */
.logos { display:flex; flex-wrap: wrap; gap: 40px 56px; align-items:center; justify-content:center; margin-top: 36px; }
.logos .logo-pill { font-size: 15px; font-weight: 600; color: var(--ink-3); letter-spacing: -0.01em; }

/* ============ CLIENT REGISTER (light, minimalist meta-row) ============ */
.client-register {
  padding: 64px 0 72px;
  background: var(--bg);
}
.client-register-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg3);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.client-register-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.client-register-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.client-register-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg3);
}
.client-register-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (max-width: 960px) {
  .client-register-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}

/* Footer */
.site-footer { background: var(--ink); color: #BFC8D4; padding: 72px 0 36px; }
.site-footer .top { display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h5 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.site-footer a { display:block; font-size: 14px; color: #BFC8D4; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { border-top: 1px solid #1F2A3D; margin-top: 48px; padding-top: 24px; display:flex; justify-content: space-between; font-size: 13px; color: #8999AA; }
.site-footer .mark img { filter: brightness(1.15); height: 28px; }
.site-footer .desc { margin-top: 14px; font-size: 14px; line-height: 1.55; max-width: 280px; color: #C3CCD8; }

/* Testimonials */
.testimonials { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; display:flex; flex-direction:column; gap: 12px; box-shadow: var(--sh-1); }
.testi .stars { color: #F5A623; letter-spacing: 2px; font-size: 14px; }
.testi .body { font-size: 15px; line-height: 1.55; color: var(--ink); }
.testi .who { font-size: 13px; color: var(--fg3); }

/* MRA banner section */
.mra {
  background: linear-gradient(135deg, #103A5A 0%, #0E1726 100%);
  color: #fff; padding: 72px 0; position: relative; overflow: hidden;
}
.mra::before { content:""; position:absolute; inset: auto -20% -40% auto; width: 70%; height: 180%; background: radial-gradient(closest-side, rgba(61,191,217,0.3), transparent); }
.mra .eyebrow { color: var(--brand-teal); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.mra h2 { font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.025em; color: #fff; max-width: 780px; }
.mra .lede { color: #BFD6E6; margin-top: 16px; max-width: 600px; font-size: 17px; line-height: 1.55; }

/* AIO checker inline */
.check-inline { display:flex; gap: 10px; max-width: 520px; margin-top: 28px; }
.check-inline input { flex: 1; font-family: var(--font-sans); font-size: 15px; padding: 14px 18px; border-radius: var(--r-pill); border: 1px solid var(--line); outline: none; }
.check-inline input:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(27,127,191,0.15); }


/* ===== ui_kits/marketing-site/pricing.css ===== */
/* ===========================================================
   Stridec — GEO Services Pricing page
   Built on the marketing-site design system (site.css tokens)
   =========================================================== */

.pricing-page { --promo: #DC3545; }

/* ---------- Announcement bar ---------- */
.announce {
  background: #07101C; color: #fff;
  text-align: center; padding: 11px 20px;
  font-size: 13.5px; line-height: 1.45;
  position: relative; overflow: hidden;
}
.announce .container { position: relative; z-index: 1; }
.announce strong { color: #8FE4F5; font-weight: 600; }
.announce .slots { color: #FF8A7A; font-weight: 600; }
.announce .cake { margin-right: 4px; }

/* ---------- Pricing hero ---------- */
.pricing-hero { padding: 80px 0 0; }
.pricing-hero .container { max-width: var(--container); }
.pricing-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand-blue);
  padding: 7px 14px; border: 1px solid var(--line);
  border-radius: var(--r-pill); background: var(--bg-soft);
  margin-bottom: 26px;
}
.pricing-hero .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-teal); }
.pricing-hero h1 {
  font-size: clamp(40px, 5.6vw, 66px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; max-width: 880px;
}
.pricing-hero h1 .accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 55%, #1B7FBF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-hero .lede {
  font-size: 19px; color: var(--ink-2); line-height: 1.6;
  max-width: 600px; margin-top: 24px;
}
.pricing-hero .lede strong { color: var(--ink); font-weight: 600; }
.pricing-hero .pricenote {
  margin-top: 22px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3);
}

/* ---------- Urgency strip ---------- */
.urgency { margin-top: 36px; }
.urgency-inner {
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 22px 26px;
  max-width: 760px; display: flex; gap: 18px; align-items: flex-start;
}
.urgency-kicker {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue);
  white-space: nowrap; padding-top: 3px;
}
.urgency-rule { width: 1px; align-self: stretch; background: var(--line); flex-shrink: 0; }
.urgency-text { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }
.urgency-text strong { color: var(--ink); font-weight: 600; }

/* ---------- Proof / case study ---------- */
.proof { padding-top: 80px; }
.proof-head { max-width: 620px; margin-bottom: 36px; }
.proof-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue);
  margin-bottom: 14px;
}
.proof-headline { font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; }
.proof-sub { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-top: 14px; }
.proof-panel {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: var(--bg); box-shadow: var(--sh-2);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.proof-stat { padding: 34px 28px; text-align: center; border-right: 1px solid var(--line-soft); }
.proof-stat:last-child { border-right: 0; }
.proof-num {
  font-size: 46px; font-weight: 800; letter-spacing: -0.035em; line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-stat .lbl { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; margin-top: 12px; }

/* ---------- How it works ---------- */
.how { padding-top: 88px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.method {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; background: var(--bg);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.method:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.method-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--brand-blue); margin-bottom: 18px;
}
.method h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.method p { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-top: 10px; }

/* ---------- B.A.D. dark block ---------- */
.bad { padding-top: 80px; }
.bad-inner {
  background: linear-gradient(135deg, #103A5A 0%, #0E1726 100%);
  border-radius: var(--r-xl); padding: 56px 56px;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center;
  position: relative; overflow: hidden;
}
.bad-inner::before {
  content: ""; position: absolute; inset: -30% auto auto -10%;
  width: 55%; height: 160%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.24), transparent 70%);
  pointer-events: none;
}
.bad-inner > * { position: relative; z-index: 1; }
.bad-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8FE4F5; margin-bottom: 16px;
}
.bad-title { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.025em; color: #fff; line-height: 1.1; }
.bad-title .acr {
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bad-desc { font-size: 15.5px; color: #C7D6E4; line-height: 1.75; }
.bad-desc strong { color: #fff; font-weight: 600; }

/* ---------- Pricing grid ---------- */
.pricing-sec { padding-top: 84px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 34px 30px 32px;
  box-shadow: var(--sh-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }

.tier-name {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-blue);
  margin-bottom: 12px;
}
.tier-title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); }
.tier-identity { font-size: 13.5px; font-weight: 500; font-style: italic; color: var(--brand-blue-deep); margin-top: 14px; line-height: 1.5; }
.tier-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-top: 16px; min-height: 88px; }

.tier-price { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.tier-price-row { display: flex; align-items: baseline; gap: 3px; }
.tier-price-row.struck .tier-currency,
.tier-price-row.struck .tier-amount,
.tier-price-row.struck .tier-mo { text-decoration: line-through; opacity: 0.4; }
.tier-currency { font-size: 18px; font-weight: 600; color: var(--ink-2); align-self: flex-start; margin-top: 5px; }
.tier-amount { font-size: 46px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; color: var(--ink); }
.tier-mo { font-size: 16px; color: var(--ink-3); font-weight: 500; align-self: flex-end; padding-bottom: 6px; }
.tier-promo { margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--promo); letter-spacing: 0.01em; }

.tier-cta { margin-top: 24px; width: 100%; justify-content: center; }

.tier-incl-label {
  margin-top: 28px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-4);
}
.tier-feats { list-style: none; margin: 16px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.tier-feats li { display: flex; gap: 12px; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.tier-feats li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-blue); }
.tier-feats li strong { color: var(--ink); font-weight: 600; }

/* Featured (dark) middle tier */
.tier--featured {
  background: linear-gradient(180deg, #0E1726 0%, #103A5A 100%);
  border-color: transparent; color: #fff;
  box-shadow: 0 18px 48px rgba(16,58,90,0.32), 0 4px 12px rgba(14,23,38,0.18);
  overflow: hidden; transform: translateY(-12px);
}
.tier--featured:hover { transform: translateY(-16px); box-shadow: 0 24px 60px rgba(16,58,90,0.4); }
.tier--featured::before {
  content: ""; position: absolute; inset: -28% -20% auto auto;
  width: 72%; height: 110%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.26), transparent 70%);
  pointer-events: none;
}
.tier--featured > * { position: relative; z-index: 1; }
.tier--featured .tier-name { color: #8FE4F5; }
.tier--featured .tier-title { color: #fff; }
.tier--featured .tier-identity { color: #8FE4F5; }
.tier--featured .tier-desc { color: #C7D6E4; }
.tier--featured .tier-price { border-top-color: rgba(255,255,255,0.12); }
.tier--featured .tier-currency { color: #C7D6E4; }
.tier--featured .tier-amount { color: #fff; }
.tier--featured .tier-mo { color: #8FA6BC; }
.tier--featured .tier-incl-label { color: #6E86A0; }
.tier--featured .tier-feats li { color: #D3DEE9; }
.tier--featured .tier-feats li svg { color: var(--brand-teal); }
.tier--featured .tier-feats li strong { color: #fff; }

.tier-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #07101C; background: var(--brand-teal);
  padding: 5px 11px; border-radius: var(--r-pill);
}
.tier--featured .tier-cta.btn-primary { background: #fff; color: #07101C; box-shadow: 0 8px 24px rgba(61,191,217,0.22); }
.tier--featured .tier-cta.btn-primary:hover { background: #fff; color: #07101C; box-shadow: 0 12px 30px rgba(61,191,217,0.34); }
.tier--featured .tier-cta.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.22); }
.tier--featured .tier-cta.btn-secondary:hover { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }

/* ---------- Annual bar ---------- */
.annual { margin-top: 22px; }
.annual-inner {
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 18px 24px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-2);
}
.annual-inner .tag {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px 11px;
  background: var(--bg); white-space: nowrap;
}
.annual-inner strong { color: var(--ink); font-weight: 700; }

/* ---------- Closing CTA band ---------- */
.closing {
  margin-top: 84px;
  background: linear-gradient(135deg, #103A5A 0%, #0E1726 100%);
  color: #fff; padding: 84px 0; position: relative; overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: -30% -10% auto auto;
  width: 50%; height: 150%;
  background: radial-gradient(closest-side, rgba(61,191,217,0.26), transparent 70%);
  pointer-events: none;
}
.closing::after {
  content: ""; position: absolute; inset: auto auto -40% -10%;
  width: 48%; height: 140%;
  background: radial-gradient(closest-side, rgba(27,127,191,0.2), transparent 70%);
  pointer-events: none;
}
.closing .container { position: relative; z-index: 1; max-width: 760px; }
.closing h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.08; }
.closing h2 .accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, #8FE4F5 0%, #3DBFD9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.closing p { color: #C7D6E4; font-size: 17px; line-height: 1.7; margin: 22px 0 0; max-width: 620px; }
.closing .actions { margin-top: 34px; }
.closing .btn-onfill { background: #fff; color: #07101C; }
.closing .btn-onfill:hover { background: #fff; color: #07101C; box-shadow: 0 12px 30px rgba(61,191,217,0.3); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .proof-panel { grid-template-columns: 1fr 1fr; }
  .proof-stat:nth-child(2) { border-right: 0; }
  .proof-stat:nth-child(1), .proof-stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .how-grid { grid-template-columns: 1fr; }
  .bad-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-3px); }
  .tier-desc { min-height: 0; }
}



/* ============================================================
   NAV: Free Tools dropdown + mobile menu (System B)
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display:inline-flex; align-items:center; gap:5px;
  font-size:14px; font-weight:500; color:var(--ink-2);
  background:none; border:0; font-family:inherit; cursor:pointer; padding:0;
}
.nav-dropdown-trigger:hover { color: var(--brand-blue); }
.nav-dropdown-trigger svg { width:11px; height:11px; transition: transform .2s var(--ease); }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display:none; position:absolute; top:calc(100% + 16px); left:0;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--sh-3); padding:8px; min-width:264px; z-index:200;
}
.nav-dropdown:hover .nav-dropdown-menu { display:block; }
.nav-dropdown-menu::before { content:''; position:absolute; top:-16px; left:0; right:0; height:16px; }
.nav-dropdown-menu a { display:block; padding:10px 14px; border-radius:var(--r-md); font-size:13.5px; font-weight:600; color:var(--ink-2); }
.nav-dropdown-menu a small { display:block; font-size:11.5px; font-weight:400; color:var(--fg3); margin-top:3px; }
.nav-dropdown-menu a:hover { background:var(--bg-soft); color:var(--brand-blue); }

/* Hamburger */
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile { display:none; background:#fff; border-bottom:1px solid var(--line); padding:6px 0 22px; }
.nav-mobile.open { display:block; }
.nav-mobile .container > a { display:block; padding:13px 0; font-size:16px; font-weight:600; color:var(--ink-2); border-bottom:1px solid var(--line-soft); }
.nav-mobile .nav-mobile-label { padding:13px 0 6px; font-size:16px; font-weight:600; color:var(--ink-2); }
.nav-mobile .nav-mobile-sub a { display:block; padding:9px 0 9px 16px; font-size:14px; font-weight:500; color:var(--fg2); border-bottom:1px solid var(--line-soft); }
.nav-mobile a.cta { display:inline-flex; margin-top:18px; box-shadow:var(--sh-brand); }

@media (max-width: 880px) {
  .site-header .links { display:none; }
  .site-header .inner > a.cta { display:none; }
  .nav-toggle { display:flex; }
}


/* ============================================================
   SERVICE-PAGE COMPONENTS (System B) — reusable
   ============================================================ */
.prose-narrow { max-width: 760px; margin: 0 auto; }

.included-list { list-style: none; margin-top: 36px; padding: 0; }
.included-list li {
  font-size: 17px; color: var(--ink-2); line-height: 1.6;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
  display: flex; gap: 14px; align-items: flex-start;
}
.included-list li:first-child { border-top: 1px solid var(--line-soft); }
.included-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--brand-teal); }

.callout {
  border-left: 3px solid var(--brand-teal);
  background: var(--bg-soft); border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 24px 28px; margin-top: 36px;
}
.callout-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-blue); margin-bottom: 10px;
}
.callout p { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; }

.proof-shots { display: flex; flex-direction: column; gap: 56px; margin-top: 52px; }
.proof-shot-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--brand-blue); margin-bottom: 14px;
}
.proof-shot img {
  width: 100%; max-width: 940px; border: 1px solid var(--line);
  border-radius: var(--r-xl); display: block; margin: 0 auto; box-shadow: var(--sh-2);
}
.proof-shot figcaption { margin-top: 14px; font-size: 14px; color: var(--fg3); font-style: italic; }

.faq-list { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-question {
  padding: 24px 0; font-size: 18px; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: ''; flex-shrink: 0; width: 12px; height: 12px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%231B7FBF' stroke-width='1.6'%3E%3Cpath d='M6 1v10M1 6h10'/%3E%3C/svg%3E");
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-question::after { transform: rotate(135deg); }
.faq-answer { padding: 0 0 26px; font-size: 16px; color: var(--ink-2); line-height: 1.75; max-width: 720px; }

.single-price {
  max-width: 440px; margin: 48px auto 0; text-align: left;
  border: 2px solid var(--brand-blue); border-radius: var(--r-xl);
  padding: 40px 38px; background: var(--bg);
}
.single-price .tier-name { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg3); }
.single-price .amt { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; margin-top: 14px; line-height: 1; }
.single-price .per { font-size: 14px; color: var(--fg3); margin-top: 6px; }
.single-price .desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin-top: 18px; }
.single-price .btn { width: 100%; margin-top: 26px; justify-content: center; }
.retainer-note {
  max-width: 440px; margin: 24px auto 0; text-align: left;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
  padding: 22px 24px; background: var(--bg-soft); border-radius: var(--r-lg);
}

/* ============================================================
   SERVICE-PAGE COMPONENTS II (System B) — steps, groups, eligibility, form
   ============================================================ */
/* Vertical numbered steps */
.steps { margin-top: 44px; }
.step { display: flex; gap: 26px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.step:first-child { border-top: 1px solid var(--line-soft); }
.step-num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--brand-blue); flex-shrink: 0; width: 28px; padding-top: 4px; letter-spacing: 0.04em; }
.step h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin-top: 6px; }

/* Grouped checklists */
.included-group { margin-top: 40px; }
.included-group h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 4px; }
.included-group .included-list { margin-top: 8px; }
.included-group .included-list li:first-child { border-top: none; }

/* Eligibility checklist */
.eligibility-list { list-style: none; margin-top: 36px; padding: 0; }
.eligibility-list li { font-size: 17px; color: var(--ink-2); line-height: 1.6; padding: 16px 0; border-bottom: 1px solid var(--line-soft); display: flex; gap: 14px; align-items: flex-start; }
.eligibility-list li:first-child { border-top: 1px solid var(--line-soft); }
.eligibility-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-blue); }

/* Grant price highlight (centered single card) */
.grant-card { max-width: 460px; margin: 48px auto 0; text-align: center; border: 2px solid var(--brand-blue); border-radius: var(--r-xl); padding: 48px 40px; background: var(--bg); }
.grant-card .grant-amt { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grant-card .grant-label { font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg3); margin-top: 12px; }
.grant-card .grant-note { font-size: 14.5px; color: var(--ink-2); margin-top: 14px; }
.grant-card .btn { margin-top: 26px; }

/* Dark enquiry band + form */
.enquiry-band { background: linear-gradient(180deg, #0E1726 0%, #103A5A 100%); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.enquiry-band::before { content:""; position:absolute; inset:-20% auto auto -10%; width:50%; height:120%; background: radial-gradient(closest-side, rgba(61,191,217,0.18), transparent 70%); pointer-events:none; }
.enquiry-band .container { position: relative; z-index: 1; }
.enquiry-band h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: #fff; text-align: center; }
.enquiry-band .sub { color: #BFD6E6; font-size: 17px; line-height: 1.55; text-align: center; margin: 14px auto 0; max-width: 560px; }
.enquiry-form { max-width: 580px; margin: 40px auto 0; text-align: left; }
.enquiry-form label { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: #8FA6BC; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.07em; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 13px 16px; font-size: 15px; font-family: inherit; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-md); background: rgba(255,255,255,0.06); color: #fff; margin-bottom: 18px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: none; border-color: var(--brand-teal); background: rgba(255,255,255,0.1); }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.enquiry-form select option { color: var(--ink); background: #fff; }
.enquiry-form textarea { min-height: 110px; resize: vertical; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form .submit-wrap { text-align: center; margin-top: 6px; }
@media (max-width: 600px) { .enquiry-form .form-row { grid-template-columns: 1fr; gap: 0; } }

/* on-fill button usable on any dark band */
.enquiry-band .btn-onfill { background:#fff; color:#07101C; }
.enquiry-band .btn-onfill:hover { background:#fff; color:#07101C; box-shadow: 0 12px 30px rgba(61,191,217,0.3); }

/* ============================================================
   MOBILE RESPONSIVE LAYER (comprehensive) — appended
   Collapses every multi-column grid + tames section/band padding.
   ============================================================ */

/* ---- Tablet / large phone (<= 900px) ---- */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .how { padding-top: 60px; }
  .pricing-sec { padding-top: 60px; }
  .bad { padding-top: 60px; }

  /* Homepage hero: stack copy over visual */
  .hero-split { padding: 56px 0 44px; }
  .hero-split .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { justify-content: center; }
  .aio-svg { max-width: 420px; }

  /* Major content grids → single column */
  .services { grid-template-columns: 1fr; gap: 16px; }
  .feature { grid-template-columns: 1fr; }
  .feature .left { padding: 36px 32px; }
  .stats-head { grid-template-columns: 1fr; gap: 28px; }
  .testimonials { grid-template-columns: 1fr; gap: 16px; }

  /* Stat number rows: 4 → 2 */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }

  /* Dark bands: stack + trim padding */
  .bad-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .mra { padding: 56px 0; }

  /* Footer: 4 → 2 columns */
  .site-footer { padding: 56px 0 32px; }
  .site-footer .top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }

  /* Pricing + service heroes: trim top space */
  .pricing-hero { padding: 56px 0 0; }
  .enquiry-band { padding: 64px 0; }
}

/* ---- Phone (<= 600px) ---- */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .how, .pricing-sec, .bad { padding-top: 48px; }

  /* Everything to a single column */
  .stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .client-register-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .site-footer .top { grid-template-columns: 1fr; gap: 28px; }
  .proof-panel { grid-template-columns: 1fr; }
  .proof-stat { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); }
  .proof-stat:last-child { border-bottom: 0; }

  /* Tighter heroes */
  .hero-split { padding: 40px 0 36px; }
  .pricing-hero { padding: 44px 0 0; }
  .aio-svg { max-width: 340px; }

  /* Dark bands: more padding relief on small screens */
  .bad-inner { padding: 32px 24px; }
  .feature .left { padding: 32px 26px; }
  .enquiry-band { padding: 52px 0; }
  .mra { padding: 48px 0; }

  /* Pricing tiers: comfortable inner padding */
  .tier { padding: 28px 24px; }

  /* Annual savings bar: stack pill above text */
  .annual-inner { align-items: flex-start; gap: 12px; }

  /* Stat numbers a touch smaller so they never clip */
  .stat-item .num,
  .stats-dark-grid .stat-item .num { font-size: 38px; letter-spacing: -0.02em; }
  .stats-dark-grid { margin-top: 36px; padding-top: 28px; }
}

/* ---- Small phone (<= 380px) ---- */
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .client-register-grid { grid-template-columns: 1fr; }
}
