/* ═══════════════════════════════════════════════
   SERVICES PAGE — STYLES
   Depends on styles.css design tokens
═══════════════════════════════════════════════ */

/* ── Active nav link ── */
.nav-link--active {
  color: #8CC63F !important;
  background: rgba(0, 152, 69, 0.15) !important;
}

/* ══════════════════════════════════════════════════════
   HERO — Full-dark with glassmorphism icon grid
   Left: content panel | Right: floating service grid
══════════════════════════════════════════════════════ */
.sv-hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 720px;
  height: 88vh;
  max-height: 920px;
  background: linear-gradient(148deg, #081B29 0%, #0D2137 45%, #060F1A 100%);
  color: #FFFFFF;
  overflow: hidden;
}

/* Background decoration layer */
.sv-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sv-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.sv-hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(0, 152, 69, 0.18) 0%, transparent 68%);
}

.sv-hero-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: 30%;
  background: radial-gradient(circle, rgba(0, 152, 69, 0.1) 0%, transparent 68%);
}

.sv-hero-orb-3 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 2%;
  background: radial-gradient(circle, rgba(0, 152, 69, 0.14) 0%, transparent 68%);
}

.sv-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 152, 69, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 152, 69, 0.038) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── Left panel ── */
.sv-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  /* Left padding matches .container left offset so content edges align */
  padding: 72px clamp(28px, 4vw, 56px) 72px max(24px, calc((100vw - 1160px) / 2));
}

.sv-hero-content {
  max-width: 540px;
}

/* Breadcrumb */
.sv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.83rem;
  font-weight: 500;
}

.sv-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 180ms ease;
}

.sv-breadcrumb a:hover { color: var(--gold); }

.sv-breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.sv-breadcrumb svg { color: rgba(255, 255, 255, 0.25); flex-shrink: 0; }

/* Heading */
.sv-hero-h1 {
  display: block;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.sv-hero-h1 span { display: block; }

/* Subtitle */
.sv-hero-subtitle {
  max-width: 460px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Info chips */
.sv-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.sv-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 220ms ease, border-color 220ms ease;
}

.sv-hero-chip svg { color: var(--gold); flex-shrink: 0; }
.sv-hero-chip:hover {
  background: rgba(0, 152, 69, 0.1);
  border-color: rgba(0, 152, 69, 0.25);
}

/* ── Right panel ── */
.sv-hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

/* Floating CSS shapes behind the icon panel */
.sv-hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.sv-hero-shape {
  position: absolute;
  border-radius: 50%;
  animation: sv-shape-drift 9s ease-in-out infinite;
}

.sv-hero-shape-1 {
  width: 140px; height: 140px;
  top: 8%; right: 10%;
  background: radial-gradient(circle at 34% 34%, rgba(0, 152, 69, 0.16) 0%, rgba(0, 152, 69, 0.08) 60%, transparent 100%);
  border: 1px solid rgba(0, 152, 69, 0.12);
  animation-delay: -1.5s;
}

.sv-hero-shape-2 {
  width: 80px; height: 80px;
  bottom: 14%; right: 28%;
  background: radial-gradient(circle at 30% 30%, rgba(140, 198, 63, 0.14) 0%, transparent 70%);
  border: 1px solid rgba(140, 198, 63, 0.1);
  animation-delay: -4.2s;
  animation-duration: 12s;
}

.sv-hero-shape-3 {
  width: 50px; height: 50px;
  top: 56%; right: 6%;
  background: radial-gradient(circle at 35% 35%, rgba(0, 152, 69, 0.12) 0%, transparent 70%);
  border: 1px solid rgba(0, 152, 69, 0.09);
  animation-delay: -7s;
  animation-duration: 14s;
}

@keyframes sv-shape-drift {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  35%       { transform: translateY(-14px) rotate(6deg) scale(1.05); }
  68%       { transform: translateY(8px) rotate(-4deg) scale(0.97); }
}

/* Glassmorphism icon panel */
.sv-icon-panel {
  position: relative;
  z-index: 2;
  padding: 28px 24px 22px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.07);
  width: 100%;
  max-width: 390px;
}

.sv-icon-panel-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}

.sv-icon-panel-label span {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}

/* 3×2 icon grid */
.sv-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sv-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 18px 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: default;
  transition: background 240ms ease, border-color 240ms ease, transform 280ms var(--ease-spring);
  animation: sv-icon-float var(--float-dur, 7s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.sv-icon-card:hover {
  background: rgba(0, 152, 69, 0.1);
  border-color: rgba(0, 152, 69, 0.25);
  transform: translateY(-5px) scale(1.03);
}

.sv-icard-1 { --float-dur: 8s;   --float-delay: 0s; }
.sv-icard-2 { --float-dur: 9s;   --float-delay: -1.2s; }
.sv-icard-3 { --float-dur: 7.5s; --float-delay: -2.5s; }
.sv-icard-4 { --float-dur: 8.5s; --float-delay: -3.8s; }
.sv-icard-5 { --float-dur: 7s;   --float-delay: -0.9s; }
.sv-icard-6 { --float-dur: 9.5s; --float-delay: -5.1s; }

@keyframes sv-icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.sv-icon-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(0, 152, 69, 0.12);
  border-radius: 13px;
  color: var(--gold);
  transition: background 240ms ease, transform 240ms var(--ease-spring);
}

.sv-icon-card:hover .sv-icon-card-icon {
  background: rgba(0, 152, 69, 0.2);
  transform: scale(1.1) rotate(-5deg);
}

.sv-icon-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.32;
}

.sv-icon-panel-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════
   SERVICES GRID — Premium cards with gradient cap
══════════════════════════════════════════════════════ */
.sv-services-section { background: var(--paper); }

.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

/* Individual card */
.sv-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform 320ms var(--ease-spring), box-shadow 320ms ease, border-color 320ms ease;
  display: flex;
  flex-direction: column;
}

.sv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 152, 69, 0.28);
}

/* Gradient cap at top */
.sv-card-top {
  position: relative;
  height: 108px;
  background: linear-gradient(140deg, #0D2137 0%, #009845 100%);
  border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
  overflow: visible; /* allows icon to overflow below */
  transition: background 320ms ease;
}

.sv-card:hover .sv-card-top {
  background: linear-gradient(140deg, #0A1E30 0%, #009845 100%);
}

/* Subtle diagonal sheen inside cap — clipped to the cap area */
.sv-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

/* Large faded service number */
.sv-card-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
  transition: color 320ms ease;
}

.sv-card:hover .sv-card-num { color: rgba(255, 255, 255, 0.18); }

/* Icon box: absolutely positioned to overflow below the gradient cap */
.sv-card-icon {
  position: absolute;
  bottom: -28px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--navy);
  transition: transform 300ms var(--ease-spring), background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.sv-card:hover .sv-card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Card body — top padding accounts for the overflowing icon (28px overlap + spacing) */
.sv-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 44px 24px 26px;
}

.sv-card-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.sv-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 18px;
}

/* Feature list */
.sv-card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex: 1;
}

.sv-card-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
}

.sv-card-features li svg {
  color: var(--navy-2);
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA link */
.sv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 200ms ease, gap 200ms ease;
  margin-top: auto;
}

.sv-card-link svg { transition: transform 200ms var(--ease-spring); }

.sv-card-link:hover { color: var(--navy-2); gap: 10px; }
.sv-card-link:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════
   PROCESS SECTION — 4-step horizontal timeline
══════════════════════════════════════════════════════ */
.sv-process-section { background: var(--cream); }

.sv-process-wrap {
  position: relative;
  margin-top: 60px;
}

/* Horizontal connecting line */
.sv-process-line {
  position: absolute;
  top: 23px; /* center of 48px circles */
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(0, 152, 69, 0.5) 0%,
    rgba(0, 152, 69, 0.25) 33%,
    rgba(0, 152, 69, 0.12) 66%,
    rgba(0, 152, 69, 0.08) 100%
  );
  z-index: 0;
}

.sv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Individual step */
.sv-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* Step number circle */
.sv-process-circle {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.sv-process-step:hover .sv-process-circle {
  border-color: var(--navy-2);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(0, 152, 69, 0.12);
}

.sv-process-step:hover .sv-process-circle span { color: #FFFFFF; }

.sv-process-circle span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 280ms ease;
}

/* Active (last) step */
.sv-process-circle--active {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: var(--navy);
  box-shadow: var(--shadow-md), 0 0 0 5px rgba(0, 152, 69, 0.12);
}

.sv-process-circle--active span { color: #FFFFFF; }

/* Step icon */
.sv-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 152, 69, 0.07);
  color: var(--navy-2);
  transition: background 280ms ease, color 280ms ease, transform 280ms var(--ease-spring);
}

.sv-process-step:hover .sv-process-icon {
  background: rgba(0, 152, 69, 0.14);
  transform: scale(1.08);
}

.sv-process-icon--active {
  background: rgba(0, 152, 69, 0.12);
  color: var(--gold);
}

.sv-process-step h3 {
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sv-process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.66;
  max-width: 200px;
}

/* ══════════════════════════════════════════════════════
   WHY CHOOSE US — Photo + benefits grid
══════════════════════════════════════════════════════ */
.sv-why-section { background: var(--paper); }

.sv-why-grid {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 72px;
  align-items: center;
}

/* Photo side */
.sv-why-visual { position: relative; }

.sv-why-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.sv-why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms var(--ease-out);
}

.sv-why-visual:hover .sv-why-photo img { transform: scale(1.04); }

.sv-why-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 27, 41, 0.55) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 152, 69, 0.2) 0%, transparent 60%);
}

/* Floating card bottom-right */
.sv-why-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 2;
}

.sv-why-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--aqua), rgba(0,152,69,0.3));
  color: var(--navy);
  flex-shrink: 0;
}

.sv-why-float-text { display: flex; flex-direction: column; gap: 2px; }

.sv-why-float-text strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sv-why-float-text span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Stat badge top-left */
.sv-why-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 50%;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-md);
  z-index: 2;
  text-align: center;
}

.sv-why-badge strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sv-why-badge span {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* Benefits grid */
.sv-why-content .section-title { margin-bottom: 12px; }
.sv-why-content .section-body   { margin-bottom: 32px; }

.sv-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.sv-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sv-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(22, 47, 74, 0.8);
  color: var(--navy);
  flex-shrink: 0;
  transition: background 260ms ease, transform 260ms var(--ease-spring);
}

.sv-benefit:hover .sv-benefit-icon {
  background: rgba(0, 152, 69, 0.12);
  transform: scale(1.08) rotate(-5deg);
}

.sv-benefit h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.sv-benefit p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   IMPACT STATS BAND — Dark with counters
══════════════════════════════════════════════════════ */
.sv-stats-band {
  position: relative;
  background: linear-gradient(155deg, #081B29 0%, #0D2137 55%, #060F1A 100%);
  color: #FFFFFF;
  padding: var(--section-v) 0;
  overflow: hidden;
}

.sv-stats-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sv-stats-inner {
  position: relative;
  z-index: 2;
}

.sv-stats-head {
  text-align: center;
  margin-bottom: 56px;
}

.sv-stats-head .section-title { margin-top: 12px; }

.sv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 152, 69, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.sv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(0, 152, 69, 0.1);
  transition: background 260ms ease;
}

.sv-stat-item:last-child { border-right: none; }

.sv-stat-item:hover { background: rgba(0, 152, 69, 0.05); }

.sv-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 152, 69, 0.1);
  color: var(--gold);
  transition: background 260ms ease, transform 260ms var(--ease-spring);
}

.sv-stat-item:hover .sv-stat-icon {
  background: rgba(0, 152, 69, 0.18);
  transform: scale(1.1);
}

.sv-stat-item .cta-stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #F4B942 0%, #8CC63F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-stat-item span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION — Two-column accordion
══════════════════════════════════════════════════════ */
.sv-faq-section { background: var(--cream); }

.sv-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-top: 52px;
}

.sv-faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.sv-faq-item:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.sv-faq-item--open {
  border-color: rgba(0, 152, 69, 0.2);
  box-shadow: var(--shadow-sm);
}

.sv-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}

.sv-faq-trigger:hover { color: var(--navy); }

.sv-faq-item--open .sv-faq-trigger { color: var(--navy); }

.sv-faq-chevron {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out), color 200ms ease;
}

.sv-faq-item--open .sv-faq-chevron {
  transform: rotate(180deg);
  color: var(--navy);
}

.sv-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 380ms var(--ease-out);
}

.sv-faq-item--open .sv-faq-body { max-height: 260px; }

.sv-faq-body p {
  padding: 0 22px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════════ */
.section-head-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-head-centered .kicker-pill { margin-bottom: 14px; }
.section-head-centered .section-title { margin-bottom: 14px; }

.section-body.centered {
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1080px
══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  /* Hero: stack vertically */
  .sv-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .sv-hero-left {
    padding: 80px 32px 48px;
    justify-content: center;
  }

  .sv-hero-content { max-width: 600px; margin: 0 auto; text-align: center; }

  .sv-hero-chips { justify-content: center; }

  .sv-hero-right {
    padding: 0 32px 64px;
    justify-content: center;
  }

  /* Services: 2 columns */
  .sv-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Process: 2 columns */
  .sv-process-grid { grid-template-columns: repeat(2, 1fr); }

  .sv-process-line {
    /* Line doesn't make sense in 2-column layout — hide it */
    display: none;
  }

  /* Why: stack */
  .sv-why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sv-why-visual { max-width: 520px; margin: 0 auto; }

  /* Stats: 2 columns */
  .sv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-stat-item:nth-child(2) { border-right: none; }
  .sv-stat-item:nth-child(3) { border-right: 1px solid rgba(0, 152, 69, 0.1); }
  .sv-stat-item { border-bottom: 1px solid rgba(0, 152, 69, 0.1); }
  .sv-stat-item:nth-child(3),
  .sv-stat-item:nth-child(4) { border-bottom: none; }

  /* FAQ: single column */
  .sv-faq-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 860px
══════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .sv-hero-left { padding: 72px 24px 40px; }

  .sv-hero-h1 { font-size: 2.6rem; }

  .sv-hero-right { padding: 0 24px 56px; }

  .sv-icon-panel { max-width: 340px; }

  /* Process: still 2 columns, tighter */
  .sv-process-step p { max-width: none; }

  /* Benefits: single column */
  .sv-benefits-grid { grid-template-columns: 1fr; }

  .sv-why-float-card { right: -8px; bottom: -14px; }

  .sv-why-badge { top: -12px; left: -12px; width: 80px; height: 80px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 640px
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .sv-hero-h1 { font-size: 2.1rem; }

  .sv-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-icon-card { padding: 14px 8px 12px; }
  .sv-icon-card-icon { width: 38px; height: 38px; border-radius: 10px; }
  .sv-icon-card span { font-size: 0.65rem; }

  /* Services: single column */
  .sv-cards-grid { grid-template-columns: 1fr; }

  /* Process: single column, hide number circles */
  .sv-process-grid { grid-template-columns: 1fr; }
  .sv-process-circle { display: none; }

  /* Stats: single column */
  .sv-stats-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    border-radius: 0;
    gap: 12px;
  }

  .sv-stat-item {
    border-right: none;
    border-bottom: none;
    border: 1px solid rgba(0, 152, 69, 0.12);
    border-radius: var(--radius-lg);
  }
}

/* ══════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .sv-hero-shape,
  .sv-icon-card { animation: none; }

  .sv-faq-body { transition: max-height 180ms ease; }
}


/* ══════════════════════════════════════════════════════
   ALTERNATING LIGHT / DARK SECTIONS
   sv-hero → always dark
   sv-services → LIGHT (off-white)
   sv-process → DARK (explicit)
   sv-why → LIGHT (white)
   sv-stats-band → always dark (hardcoded)
   sv-faq → LIGHT (off-white)
   cta → always dark
══════════════════════════════════════════════════════ */
.sv-services-section,
.sv-why-section,
.sv-faq-section {
  --ink:       #081B29;
  --ink-2:     #243B53;
  --muted:     #4A6480;
  --paper:     #FFFFFF;
  --cream:     #F4F7FA;
  --aqua:      #E8F5F0;
  --border:    rgba(36, 59, 83, 0.1);
  --border-mid: rgba(36, 59, 83, 0.2);
}

.sv-services-section { background: #F0F5FA; }
.sv-why-section      { background: #FFFFFF; }
.sv-faq-section      { background: #F0F5FA; }
.sv-process-section  { background: #081B29; }

/* Kicker pills in light sections */
.sv-services-section .kicker-pill,
.sv-why-section      .kicker-pill,
.sv-faq-section      .kicker-pill {
  background:   rgba(0, 152, 69, 0.09);
  border-color: rgba(0, 152, 69, 0.25);
  color:        #007835;
}
.sv-services-section .kicker-pill::before,
.sv-why-section      .kicker-pill::before,
.sv-faq-section      .kicker-pill::before { background: #009845; }

/* Benefit icon — fix hardcoded dark bg */
.sv-why-section .sv-benefit-icon {
  background: rgba(0, 152, 69, 0.1);
}

.sv-why-section .sv-benefit:hover .sv-benefit-icon {
  background: rgba(0, 152, 69, 0.18);
}
