/*
  Solar Agent Pro Theme — main.css v3.0
  Brand-agnostic. No vendor lock. Works with any solar product or installer.
  Aesthetic: Deep obsidian · Electric amber · Tech cyan · Premium & trustworthy
  Fonts: Syne (headers) + Plus Jakarta Sans (body) — loaded via setup.php
*/

/* ── Design tokens ────────────────────────────────────────────── */
:root {
  --sa-bg:       #090d18;
  --sa-bg2:      #0d1525;
  --sa-card:     #111c2e;
  --sa-card2:    #162134;
  --sa-accent:   #f59e0b;
  --sa-accent2:  #e07b00;
  --sa-cyan:     #06b6d4;
  --sa-text:     #f1f5f9;
  --sa-muted:    #94a3b8;
  --sa-border:   rgba(255,255,255,.09);
  --sa-shadow:   0 28px 80px rgba(0,0,0,.35);
  --sa-input-bg: rgba(0,0,0,.28);
  --sa-radius:   22px;
  --sa-radius-sm: 14px;
  --sa-gutter:   clamp(20px, 6vw, 80px);
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(245,158,11,.14) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 5%, rgba(6,182,212,.12) 0%, transparent 35%),
    linear-gradient(180deg, #070b14 0%, #0d1525 100%);
  background-attachment: fixed;
  color: var(--sa-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Header ───────────────────────────────────────────────────── */
.sa-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--sa-gutter);
  background: rgba(9,13,24,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--sa-border);
}
.sa-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px;
  text-decoration: none; color: var(--sa-text); white-space: nowrap;
}
.sa-brand img { max-height: 44px; width: auto; }
.sa-logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sa-accent), var(--sa-accent2));
  display: grid; place-items: center; font-size: 18px; color: #111;
  box-shadow: 0 8px 24px rgba(245,158,11,.3);
  flex-shrink: 0;
}
.sa-nav { flex: 1; }
.sa-nav ul { display: flex; justify-content: center; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.sa-nav a { display: block; padding: 9px 14px; border-radius: 999px; text-decoration: none; color: var(--sa-muted); font-weight: 700; font-size: 14px; transition: all .2s; }
.sa-nav a:hover, .sa-nav .current-menu-item > a { color: var(--sa-text); background: rgba(255,255,255,.07); }
.sa-nav .sub-menu { position: absolute; top: 110%; left: 0; min-width: 220px; padding: 10px; background: rgba(9,13,24,.97); border: 1px solid var(--sa-border); border-radius: 18px; box-shadow: var(--sa-shadow); display: none; flex-direction: column; z-index: 200; }
.sa-nav li:hover > .sub-menu { display: flex; }
.sa-nav li { position: relative; }
.sa-header-cta, .sa-button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px; border-radius: 999px; font-weight: 800; font-size: 14px;
  text-decoration: none; border: 0; cursor: pointer; transition: all .2s;
  background: linear-gradient(135deg, var(--sa-accent), var(--sa-accent2));
  color: #111; box-shadow: 0 8px 28px rgba(245,158,11,.25);
}
.sa-button:hover, .sa-header-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(245,158,11,.38); }
.sa-button.ghost { background: rgba(255,255,255,.06); color: var(--sa-text); border: 1px solid var(--sa-border); box-shadow: none; }
.sa-button.ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.sa-menu-toggle { display: none; background: rgba(255,255,255,.07); border: 1px solid var(--sa-border); color: var(--sa-text); border-radius: 12px; padding: 9px 13px; cursor: pointer; }

/* ── Hero ─────────────────────────────────────────────────────── */
.sa-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 90px var(--sa-gutter) 60px;
  position: relative; overflow: hidden;
}
.sa-hero::before {
  content: ''; position: absolute; top: -10%; right: -8%;
  width: 55vw; height: 55vw; border-radius: 999px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 62%);
  pointer-events: none; filter: blur(2px);
}
.sa-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  color: var(--sa-accent); margin-bottom: 16px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  padding: 6px 14px; border-radius: 999px;
}
.sa-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6.5vw, 84px); line-height: .96;
  margin: 0 0 20px; letter-spacing: -.04em; font-weight: 800;
}
.sa-hero h1 em { font-style: normal; color: var(--sa-accent); }
.sa-hero-sub { font-size: 18px; color: var(--sa-muted); max-width: 520px; margin: 0 0 28px; line-height: 1.65; }
.sa-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.sa-trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.sa-trust-strip span {
  background: rgba(255,255,255,.06); border: 1px solid var(--sa-border);
  border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700;
}
.sa-trust-strip span::before { content: '✓ '; color: var(--sa-accent); }

/* ── Hero visual (solar panel art) ───────────────────────────── */
.sa-hero-visual {
  position: relative; min-height: 460px; border-radius: 28px;
  background: linear-gradient(150deg, rgba(6,182,212,.14), rgba(245,158,11,.1)), var(--sa-card);
  border: 1px solid var(--sa-border); box-shadow: var(--sa-shadow); overflow: hidden;
}
.sa-sun {
  position: absolute; right: 28px; top: 28px; width: 100px; height: 100px;
  border-radius: 999px;
  background: radial-gradient(circle, #fde68a, #f59e0b 60%, rgba(245,158,11,0) 100%);
  box-shadow: 0 0 70px rgba(245,158,11,.6);
  animation: saPulse 4s ease-in-out infinite;
}
@keyframes saPulse { 0%,100% { box-shadow: 0 0 70px rgba(245,158,11,.6); } 50% { box-shadow: 0 0 110px rgba(245,158,11,.85); } }
.sa-roof {
  position: absolute; left: 8%; right: 8%; bottom: 80px; height: 180px;
  transform: skewY(-8deg); border-radius: 16px;
  background: linear-gradient(135deg, #1e293b, #2d3f5c);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.sa-panel-grid {
  position: absolute; inset: 18px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px;
}
.sa-panel-grid span {
  border-radius: 6px;
  background: linear-gradient(135deg, #0e7490, #1e3a8a);
  border: 1px solid rgba(6,182,212,.35);
  animation: saFlicker 5s ease-in-out infinite;
}
.sa-panel-grid span:nth-child(odd) { animation-delay: .4s; }
.sa-panel-grid span:nth-child(3n) { animation-delay: .8s; }
@keyframes saFlicker { 0%,100% { opacity: .85; } 50% { opacity: 1; } }
.sa-house-body {
  position: absolute; left: 12%; right: 12%; bottom: 10px; height: 105px;
  background: linear-gradient(180deg, #e2e8f0, #f8fafc);
  border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.2);
  display: flex; align-items: flex-end; justify-content: space-around; padding: 0 16px 10px;
}
.sa-house-body span {
  width: 42px; height: 55px; border-radius: 8px; background: #bfdbfe;
  border: 1px solid rgba(59,130,246,.4);
}
.sa-data-chip {
  position: absolute; left: 22px; bottom: 24px;
  padding: 14px 18px; border-radius: 18px;
  background: rgba(9,13,24,.88); border: 1px solid var(--sa-border);
  backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,.3);
  min-width: 170px;
}
.sa-data-chip-label { font-size: 11px; color: var(--sa-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.sa-data-chip-value { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #4ade80; line-height: 1.1; }
.sa-data-chip-sub { font-size: 12px; color: var(--sa-muted); }
.sa-energy-bar {
  position: absolute; right: 22px; bottom: 24px; width: 44px;
  background: rgba(9,13,24,.88); border: 1px solid var(--sa-border);
  border-radius: 14px; padding: 10px 8px; display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(12px);
}
.sa-energy-bar span {
  height: 8px; border-radius: 999px; background: var(--sa-cyan);
}
.sa-energy-bar span:nth-child(1) { width: 100%; opacity: 1; }
.sa-energy-bar span:nth-child(2) { width: 80%; opacity: .75; }
.sa-energy-bar span:nth-child(3) { width: 60%; opacity: .5; }
.sa-energy-bar span:nth-child(4) { width: 40%; opacity: .35; }

/* ── Sections ─────────────────────────────────────────────────── */
.sa-section { padding: 0 var(--sa-gutter) 70px; }
.sa-section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 24px; }
.sa-section h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; margin: 0 0 8px; letter-spacing: -.03em;
}
.sa-section p { color: var(--sa-muted); line-height: 1.7; }
.sa-section-sub { color: var(--sa-muted); font-size: 17px; max-width: 560px; margin: 0; }

/* ── Cards ────────────────────────────────────────────────────── */
.sa-card {
  background: var(--sa-card);
  border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius);
  padding: 28px;
  box-shadow: var(--sa-shadow);
}
.sa-card-form { background: linear-gradient(180deg, var(--sa-card), var(--sa-card2)); }

/* ── Feature grid (solutions) ─────────────────────────────────── */
.sa-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.sa-feature {
  background: var(--sa-card); border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius); padding: 28px; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sa-feature:hover { transform: translateY(-3px); box-shadow: 0 28px 60px rgba(0,0,0,.3); border-color: rgba(245,158,11,.25); }
.sa-feature-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(245,158,11,.12); display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px;
  border: 1px solid rgba(245,158,11,.2);
}
.sa-feature h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--sa-accent); margin: 0 0 8px; }
.sa-feature p { color: var(--sa-muted); font-size: 14px; margin: 0; line-height: 1.65; }
.sa-feature-badge { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 900; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; background: rgba(6,182,212,.15); color: var(--sa-cyan); border: 1px solid rgba(6,182,212,.25); }

/* ── Split layout ─────────────────────────────────────────────── */
.sa-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sa-split-reverse { grid-template-columns: 1fr 1fr; }

/* ── Process steps ────────────────────────────────────────────── */
.sa-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.sa-process::before {
  content: ''; position: absolute; top: 24px; left: 48px; right: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sa-accent), transparent);
  opacity: .3; z-index: 0;
}
.sa-process-step { position: relative; z-index: 1; }
.sa-step-num {
  width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-weight: 900; font-size: 16px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--sa-accent), var(--sa-accent2));
  color: #111; box-shadow: 0 8px 24px rgba(245,158,11,.3);
}
.sa-process-step h3 { font-family: 'Syne', sans-serif; font-size: 17px; margin: 0 0 6px; }
.sa-process-step p { font-size: 14px; color: var(--sa-muted); margin: 0; line-height: 1.6; }

/* ── Financing comparison block ───────────────────────────────── */
.sa-finance-visual {
  background: var(--sa-card); border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius); padding: 28px; display: grid; gap: 12px;
}
.sa-finance-visual strong { font-family: 'Syne', sans-serif; font-size: 22px; display: block; color: var(--sa-text); }
.sa-finance-visual .sa-finance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: var(--sa-radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--sa-border);
  font-weight: 700; font-size: 14px;
}
.sa-finance-row .sa-fin-badge { font-size: 11px; font-weight: 900; padding: 3px 9px; border-radius: 999px; }
.sa-fin-badge.own { background: rgba(74,222,128,.15); color: #4ade80; }
.sa-fin-badge.rent { background: rgba(251,191,36,.15); color: #fbbf24; }
.sa-fin-badge.none { background: rgba(148,163,184,.1); color: var(--sa-muted); }

/* ── Checklist ────────────────────────────────────────────────── */
.sa-checklist { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.sa-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--sa-muted); }
.sa-checklist li::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: rgba(74,222,128,.15); color: #4ade80; display: grid; place-items: center; font-size: 12px; font-weight: 900; margin-top: 1px; }

/* ── Mini tag pills ───────────────────────────────────────────── */
.sa-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.sa-pills span { background: rgba(255,255,255,.07); border: 1px solid var(--sa-border); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; }

/* ── CTA band ─────────────────────────────────────────────────── */
.sa-cta-band {
  margin: 0 var(--sa-gutter) 70px;
  padding: 60px 48px;
  border-radius: var(--sa-radius);
  background: linear-gradient(135deg, rgba(245,158,11,.18) 0%, rgba(6,182,212,.12) 100%), var(--sa-card);
  border: 1px solid rgba(245,158,11,.2);
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.sa-cta-band::after {
  content: ''; position: absolute; right: -5%; top: -30%;
  width: 300px; height: 300px; border-radius: 999px;
  background: radial-gradient(circle, rgba(6,182,212,.18), transparent 70%);
  pointer-events: none;
}
.sa-cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.5vw, 46px); margin: 0 0 8px; letter-spacing: -.03em; }
.sa-cta-band p { color: var(--sa-muted); margin: 0; font-size: 16px; }

/* ── Footer ───────────────────────────────────────────────────── */
.sa-footer {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding: 50px var(--sa-gutter) 30px;
  background: #060a12;
  border-top: 1px solid var(--sa-border);
  color: var(--sa-muted);
}
.sa-footer-brand { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--sa-text); margin-bottom: 10px; }
.sa-footer-copy { font-size: 13px; margin-top: 16px; }
.sa-footer h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--sa-text); margin: 0 0 12px; }
.sa-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sa-footer a { text-decoration: none; color: var(--sa-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.sa-footer a:hover { color: var(--sa-text); }
.sa-footer-disclaimer { font-size: 12px; margin-top: 8px; line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .sa-menu-toggle { display: block; }
  .sa-nav { order: 4; display: none; width: 100%; }
  .sa-nav.is-open { display: block; }
  .sa-nav ul { flex-direction: column; align-items: flex-start; }
  .sa-nav .sub-menu { position: static; display: flex; box-shadow: none; }
  .sa-header { flex-wrap: wrap; }
  .sa-header-cta { margin-left: auto; }
  .sa-hero { grid-template-columns: 1fr; }
  .sa-hero-visual { min-height: 360px; }
  .sa-split { grid-template-columns: 1fr; }
  .sa-features-grid { grid-template-columns: 1fr 1fr; }
  .sa-process { grid-template-columns: 1fr 1fr; }
  .sa-process::before { display: none; }
}
@media (max-width: 680px) {
  .sa-features-grid, .sa-footer { grid-template-columns: 1fr; }
  .sa-hero { padding-top: 48px; }
  .sa-cta-band { padding: 36px 24px; }
  .sa-header-cta { display: none; }
  .sa-process { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FLOATING CALL NOW BUTTON
═══════════════════════════════════════════════════════ */
.sa-call-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-weight: 800; font-size: 15px;
  text-decoration: none; box-shadow: 0 12px 40px rgba(34,197,94,.45);
  transition: transform .2s, box-shadow .2s;
}
.sa-call-float:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 20px 50px rgba(34,197,94,.55); }
.sa-call-ring {
  position: absolute; inset: -5px; border-radius: 999px;
  border: 2px solid rgba(34,197,94,.55);
  animation: saRing 2.4s ease-out infinite;
  pointer-events: none;
}
.sa-call-ring-2 { animation-delay: 1.2s; }
@keyframes saRing {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0;  }
}
.sa-call-icon { font-size: 18px; animation: saWiggle 2s ease-in-out infinite; }
@keyframes saWiggle {
  0%,100% { transform: rotate(0deg);  }
  20%     { transform: rotate(-15deg); }
  40%     { transform: rotate(12deg);  }
  60%     { transform: rotate(-8deg);  }
  80%     { transform: rotate(5deg);   }
}

/* Green call button variant */
.sa-call-green {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important; box-shadow: 0 8px 28px rgba(34,197,94,.3) !important;
}
.sa-call-green:hover { box-shadow: 0 14px 38px rgba(34,197,94,.5) !important; }
.sa-call-dot {
  width: 8px; height: 8px; border-radius: 999px; background: #fff;
  animation: saDotPulse 1.6s ease-in-out infinite; flex-shrink: 0;
}
@keyframes saDotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }

/* Inline call card (in form section, own-vs-rent) */
.sa-call-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.2);
  border-radius: 18px; padding: 16px 20px; margin-top: 28px;
}
.sa-call-card-left { display: flex; align-items: center; gap: 12px; }
.sa-call-avatar {
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid; place-items: center; font-weight: 900; font-size: 18px; color: #fff;
}
.sa-call-card-left div { display: flex; flex-direction: column; gap: 2px; }
.sa-call-card-left strong { font-size: 14px; font-weight: 800; color: var(--sa-text); }
.sa-call-card-left span { font-size: 12px; color: var(--sa-muted); }
.sa-call-inline { font-size: 14px !important; padding: 9px 16px !important; white-space: nowrap; }
.sa-call-big { font-size: 17px !important; padding: 15px 28px !important; }

/* ═══════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════ */
.sa-stats-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--sa-border); border-bottom: 1px solid var(--sa-border);
  padding: 28px var(--sa-gutter);
}
.sa-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 32px; text-align: center; }
.sa-stat-num {
  font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800;
  color: var(--sa-accent); line-height: 1;
}
.sa-stat-num em { font-style: normal; font-size: 22px; }
.sa-stat-label { font-size: 13px; font-weight: 700; color: var(--sa-muted); text-transform: uppercase; letter-spacing: .06em; }
.sa-stat-div { width: 1px; height: 48px; background: var(--sa-border); }
@media (max-width: 680px) { .sa-stat-div { display: none; } .sa-stat { padding: 12px 16px; } }

/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════════════════ */
.sa-benefits-section {
  position: relative; padding: 80px 0;
  background: linear-gradient(180deg,
    rgba(245,158,11,.04) 0%,
    rgba(6,182,212,.04) 50%,
    transparent 100%);
  border-top: 1px solid var(--sa-border); border-bottom: 1px solid var(--sa-border);
  overflow: hidden;
}
.sa-benefits-section::before {
  content: ''; position: absolute; left: -10%; top: 20%;
  width: 40vw; height: 40vw; border-radius: 999px;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 65%);
  pointer-events: none;
}
.sa-benefits-inner { padding: 0 var(--sa-gutter); }

/* Bill compare visual */
.sa-bill-compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px;
  align-items: center; margin: 40px 0;
  background: var(--sa-card); border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius); padding: 32px;
}
.sa-bill-box { display: flex; flex-direction: column; gap: 10px; }
.sa-bill-box-label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--sa-muted); }
.sa-bill-amount { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: #f87171; line-height: 1; }
.sa-bill-amount span { font-size: 22px; color: var(--sa-muted); }
.sa-bill-bar-track { height: 10px; background: rgba(255,255,255,.07); border-radius: 999px; overflow: hidden; }
.sa-bill-bar-fill { height: 100%; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); transition: width 1s ease; }
.sa-bill-note { font-size: 13px; color: var(--sa-muted); }
.sa-bill-badge { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px; background: rgba(74,222,128,.15); color: #4ade80; font-weight: 800; font-size: 14px; border: 1px solid rgba(74,222,128,.3); width: fit-content; }
.sa-bill-vs { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--sa-accent); font-weight: 900; font-size: 28px; }
.sa-bill-vs small { font-size: 11px; color: var(--sa-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
@media (max-width: 640px) { .sa-bill-compare { grid-template-columns: 1fr; } .sa-bill-vs { transform: rotate(90deg); } }

/* Benefits grid */
.sa-benefits-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; margin-bottom: 40px;
}
.sa-benefit-card {
  background: var(--sa-card); border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.sa-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.sa-benefit-featured { grid-row: 1 / 2; border-color: rgba(245,158,11,.25); background: linear-gradient(160deg, rgba(245,158,11,.08), var(--sa-card)); }
.sa-benefit-icon-bg {
  width: 52px; height: 52px; border-radius: 16px; display: grid;
  place-items: center; font-size: 24px;
}
.sa-bg-gold   { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.25); }
.sa-bg-cyan   { background: rgba(6,182,212,.12);  border: 1px solid rgba(6,182,212,.25); }
.sa-bg-green  { background: rgba(74,222,128,.12);  border: 1px solid rgba(74,222,128,.25); }
.sa-bg-amber  { background: rgba(251,191,36,.12);  border: 1px solid rgba(251,191,36,.25); }
.sa-bg-blue   { background: rgba(96,165,250,.12);  border: 1px solid rgba(96,165,250,.25); }
.sa-bg-purple { background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.25); }
.sa-benefit-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; margin: 0; color: var(--sa-text); }
.sa-benefit-card p  { font-size: 14px; color: var(--sa-muted); margin: 0; line-height: 1.65; }
.sa-benefit-stat { font-size: 13px; color: var(--sa-muted); background: rgba(255,255,255,.05); border-radius: 10px; padding: 8px 12px; border: 1px solid var(--sa-border); margin-top: auto; }
.sa-benefit-stat strong { color: var(--sa-accent); }
@media (max-width: 900px) { .sa-benefits-grid { grid-template-columns: 1fr 1fr; } .sa-benefit-featured { grid-column: 1 / -1; } }
@media (max-width: 560px) { .sa-benefits-grid { grid-template-columns: 1fr; } }

/* Benefits CTA */
.sa-benefits-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; padding: 32px 36px;
  background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.06));
  border: 1px solid rgba(34,197,94,.2); border-radius: var(--sa-radius);
}
.sa-benefits-cta h3 { font-family: 'Syne', sans-serif; font-size: 22px; margin: 0 0 6px; }
.sa-benefits-cta p { color: var(--sa-muted); margin: 0; font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS — IMMERSIVE TIMELINE
═══════════════════════════════════════════════════════ */
.sa-hiw-section {
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.sa-hiw-section::before {
  content: ''; position: absolute; right: -8%; top: 10%;
  width: 45vw; height: 45vw; border-radius: 999px;
  background: radial-gradient(circle, rgba(6,182,212,.09) 0%, transparent 65%);
  pointer-events: none;
}
.sa-hiw-inner { padding: 0 var(--sa-gutter); }
.sa-hiw-header { max-width: 680px; margin-bottom: 64px; }
.sa-hiw-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4.5vw, 58px); font-weight: 800; margin: 10px 0 16px; letter-spacing: -.04em; line-height: 1.06; }

/* Timeline layout */
.sa-hiw-timeline { display: flex; flex-direction: column; gap: 0; }
.sa-hiw-step {
  display: grid; grid-template-columns: 100px 1fr; gap: 36px;
  align-items: flex-start;
}
/* Left column — number + connector line */
.sa-hiw-step-num-col { display: flex; flex-direction: column; align-items: center; }
.sa-hiw-num-wrap { position: relative; flex-shrink: 0; }
.sa-hiw-num {
  width: 72px; height: 72px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--sa-accent), var(--sa-accent2));
  color: #111; box-shadow: 0 12px 36px rgba(245,158,11,.35);
  position: relative; z-index: 2;
}
.sa-num-cyan { background: linear-gradient(135deg, var(--sa-cyan), #0284c7) !important; color: #fff !important; box-shadow: 0 12px 36px rgba(6,182,212,.3) !important; }
.sa-hiw-num-glow {
  position: absolute; inset: -8px; border-radius: 999px;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 65%);
  animation: saHiwGlow 3s ease-in-out infinite; z-index: 1;
}
.sa-glow-cyan { background: radial-gradient(circle, rgba(6,182,212,.2), transparent 65%) !important; }
@keyframes saHiwGlow { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.sa-hiw-line { width: 2px; flex: 1; min-height: 40px; background: linear-gradient(180deg, var(--sa-accent) 0%, rgba(245,158,11,.1) 100%); margin: 8px 0; }

/* Step card */
.sa-hiw-step-card {
  background: var(--sa-card); border: 1px solid var(--sa-border);
  border-radius: var(--sa-radius); padding: 32px;
  margin-bottom: 24px;
  transition: border-color .3s, box-shadow .3s;
}
.sa-hiw-step:hover .sa-hiw-step-card { border-color: rgba(245,158,11,.2); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.sa-hiw-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sa-hiw-step-icon { font-size: 32px; line-height: 1; }
.sa-hiw-duration {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--sa-accent); background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2); border-radius: 999px; padding: 5px 12px;
}
.sa-hiw-step-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.sa-hiw-step-card p { color: var(--sa-muted); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }

/* Deliverables */
.sa-hiw-deliverables { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sa-hiw-deliverables span {
  font-size: 13px; font-weight: 700;
  background: rgba(74,222,128,.08); color: #86efac;
  border: 1px solid rgba(74,222,128,.2); border-radius: 999px; padding: 5px 12px;
}

/* Mini comparison table inside step 2 */
.sa-hiw-mini-compare {
  background: rgba(0,0,0,.2); border: 1px solid var(--sa-border);
  border-radius: 14px; overflow: hidden; margin: 12px 0 16px;
}
.sa-hiw-mini-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; font-size: 14px; font-weight: 700;
  border-bottom: 1px solid var(--sa-border);
}
.sa-hiw-mini-row:last-child { border-bottom: 0; }
.sa-hiw-mini-row .sa-pos { color: #4ade80; }
.sa-hiw-mini-row .sa-amb { color: #fbbf24; }
.sa-hiw-mini-row .sa-neg { color: #f87171; }

/* Call button inside timeline */
.sa-hiw-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-weight: 800; font-size: 14px;
  text-decoration: none; margin: 12px 0 16px;
  box-shadow: 0 8px 24px rgba(34,197,94,.3);
  transition: transform .2s, box-shadow .2s;
}
.sa-hiw-call-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(34,197,94,.45); }

/* Bottom CTA */
.sa-hiw-bottom {
  text-align: center; padding: 52px 0 0;
  border-top: 1px solid var(--sa-border); margin-top: 12px;
}
.sa-hiw-bottom p { font-size: 18px; color: var(--sa-muted); margin: 0 0 20px; }
.sa-hiw-bottom-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive HIW */
@media (max-width: 700px) {
  .sa-hiw-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .sa-hiw-num { width: 52px; height: 52px; font-size: 16px; }
  .sa-hiw-step-card { padding: 22px; }
  .sa-call-float .sa-call-text { display: none; }
  .sa-call-float { padding: 14px 18px; }
}
