/* ==========================================================================
   SLADE NETWORKS — DESIGN SYSTEM
   Complete redesign: modern, trustworthy, clean
   ========================================================================== */


:root {
  /* ── Brand palette ── */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;

  /* ── Neutrals ── */
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  --success: #059669;
  --success-light: #d1fae5;

  /* ── Semantic aliases (used by page-specific styles) ── */
  --ink: var(--gray-900);
  --muted: var(--gray-500);
  --muted2: var(--gray-400);
  --accent: var(--primary);
  --glass: var(--white);
  --stroke: var(--gray-200);
  --radius: 16px;
  --shadow: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);

  /* ── Typography ── */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ── Layout ── */
  --max-w: 1140px;

  /* ── Radius scale ── */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 999px;

  /* ── Shadow scale ── */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.04);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,.08), 0 4px 6px -4px rgba(15,23,42,.03);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,.08), 0 8px 10px -6px rgba(15,23,42,.03);
  --shadow-2xl: 0 25px 50px -12px rgba(15,23,42,.18);
  --shadow-blue: 0 4px 14px rgba(37,99,235,.25);
  --shadow-blue-lg: 0 8px 24px rgba(37,99,235,.3);

  /* ── Ease ── */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box }
html { overflow-x: hidden; scroll-behavior: smooth }
html, body { height: 100% }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit }
img { display: block; max-width: 100% }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gray-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.topbar.scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,.2), 0 4px 12px rgba(0,0,0,.15);
  border-color: rgba(255,255,255,.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brandLogoImg {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
}

.navlinks a {
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: color .15s var(--ease), background .15s var(--ease);
  position: relative;
}
.navlinks a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.navlinks a.active {
  color: var(--white);
  font-weight: 600;
  background: rgba(255,255,255,.1);
}

.cta { display: flex; gap: 10px }

.navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-300);
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.navToggle:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.navToggle svg { width: 20px; height: 20px; display: block }

/* Mobile nav */
@media (max-width: 820px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
  }

  .brand { justify-self: center }
  .brandLogoImg { height: 44px }

  .navToggle {
    display: inline-flex;
    justify-self: start;
  }

  .cta { justify-self: end }

  .btn.btnCta {
    height: auto;
    min-height: 44px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: var(--r-md);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    width: 76px;
  }
  .btnCta span { display: inline }

  .navlinks {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 8px;
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.1);
    background: var(--gray-800);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    flex-direction: column;
    gap: 2px;
    z-index: 60;
    animation: navSlideDown .25s var(--ease-out);
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px) }
    to   { opacity: 1; transform: translateY(0) }
  }

  .navOpen .navlinks { display: flex }

  .navlinks a {
    padding: 12px 16px;
    border-radius: var(--r-md);
    width: 100%;
    font-size: 15px;
  }
  .navlinks a:hover { background: rgba(255,255,255,.08) }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s var(--ease);
  box-shadow: var(--shadow-xs);
}

.btn:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}

.btn.primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-1px);
}

.btn svg { width: 16px; height: 16px }


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  margin: 0 0 20px;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

.subtext {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0;
}

.sectionTitle {
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.sectionIntro {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 28px;
}

.sectionIntroFull {
  max-width: 720px;
}

.sectionLabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 72px 0 48px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37,99,235,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(37,99,235,.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .wrap { position: relative }

/* ── Dark hero (background image variant) ── */
.heroDark {
  padding: 100px 0 80px;
  overflow: hidden;
}

.heroDark::before {
  background:
    linear-gradient(135deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.4) 100%),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0,0,0,.3) 0%, transparent 100%);
  z-index: 1;
}

.heroBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.heroDark .wrap { z-index: 2 }

.heroDark h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.heroDark .subtext {
  color: rgba(255,255,255,.82);
}

.heroDark .heroBadge {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.heroDark .heroBadge svg { color: var(--primary-light) }

.heroDark .heroButtons .btn:not(.primary) {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  box-shadow: none;
}
.heroDark .heroButtons .btn:not(.primary):hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  box-shadow: none;
}

.heroDark .heroButtons .btn.primary {
  box-shadow: var(--shadow-blue-lg);
}

.heroDark .trustBar {
  border-top-color: rgba(255,255,255,.12);
}

.heroDark .trustItem {
  color: rgba(255,255,255,.7);
}

.heroDark .trustIcon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--primary-light);
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.heroBadge svg { width: 14px; height: 14px }

.heroButtons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Trust bar below hero */
.trustBar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

.trustIcon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.trustIcon svg { width: 16px; height: 16px }


/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 56px 0;
}

.sectionAlt {
  background: var(--white);
}


/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.infoCard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

.infoCard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--primary-200);
}

.infoCard h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.infoCard p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.gridTwo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.cardIcon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.cardIcon svg { width: 20px; height: 20px }


/* ==========================================================================
   CAROUSEL (install photos)
   ========================================================================== */

.scrollWrapper {
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.scrollWrapper::-webkit-scrollbar { display: none }

.productScroll {
  --tile: clamp(260px, 38vw, 320px);
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding: 6px 0 18px;
  scroll-snap-type: x mandatory;
}

.productScroll .tile {
  flex: 0 0 var(--tile);
  scroll-snap-align: start;
}

.productScroll .tile .media {
  width: var(--tile);
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.productScroll .tile .media:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.productScroll .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   SERVICE AREA
   ========================================================================== */

.serviceAreaWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}

.serviceAreaSquare {
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}

.serviceAreaSquare:hover {
  box-shadow: var(--shadow-lg);
}

.serviceAreaMap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gray-50);
}

.serviceAreaCard {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serviceAreaCard h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.serviceAreaCard p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: var(--gray-500);
}


/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.ctaSection { padding: 40px 0 64px }

.ctaInner {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-2xl);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ctaInner h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ctaInner p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 50ch;
}

.ctaButtons .btn:not(.primary) {
  background: transparent;
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  box-shadow: none;
}
.ctaButtons .btn:not(.primary):hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  box-shadow: none;
}

.ctaButtons { display: flex; gap: 10px; flex-wrap: wrap }


/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */

.testimonialSection { padding: 0 0 48px }

.testimonialCard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 32px 36px;
  max-width: 720px;
  position: relative;
  transition: box-shadow .3s var(--ease);
}

.testimonialCard:hover {
  box-shadow: var(--shadow-xl);
}

.quoteMark {
  display: block;
  font-size: 60px;
  line-height: .75;
  color: var(--primary-200);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.quoteText {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
  margin: 0 0 16px;
  font-style: italic;
}

.quoteAttrib {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
  font-style: normal;
}

/* Full-bleed testimonial band */
.testimonialBand {
  background: #0f172a;
  padding: 60px 0;
}

.testimonialBand .wrap {
  text-align: center;
}

.testimonialBand .sectionLabel {
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

.testimonialBand .quoteMark {
  color: rgba(37,99,235,0.7);
  font-size: 72px;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonialBand .quoteText {
  color: rgba(255,255,255,0.9);
  font-size: 21px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 22px;
}

.testimonialBand .quoteAttrib {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}


/* ==========================================================================
   CALLOUT
   ========================================================================== */

.callout {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.callout h2 { margin: 0; font-size: 17px; letter-spacing: -0.02em }
.callout p { margin: 6px 0 0; color: var(--gray-500); font-size: 14px; line-height: 1.6 }


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  margin-top: 0;
  padding: 36px 0 28px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 48px;
  align-items: start;
}

.footerBrand p {
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 0 0;
  color: var(--gray-400);
  max-width: 30ch;
}

.footerCol h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin: 0 0 16px;
}

.footerCol a:not(.socialBtn) {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color .15s var(--ease);
}
.footerCol a:not(.socialBtn):hover { color: var(--white) }

.footerBottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footerLeft {}

.footerRight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.disclaimer {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
}

.socialLinks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socialBtn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.socialBtn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.socialIcon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.55);
  display: block;
  flex-shrink: 0;
  transition: color .15s var(--ease);
}
.socialBtn:hover .socialIcon { color: var(--white) }

.footerPhone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
  transition: color .15s var(--ease);
  margin-bottom: 8px;
}
.footerPhone:hover { color: var(--white) }
.footerPhone svg { width: 16px; height: 16px }

.footerEmail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
  transition: color .15s var(--ease);
}
.footerEmail:hover { color: var(--white) }
.footerEmail svg { width: 16px; height: 16px }


/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin: 0 0 6px;
}

input, textarea, select {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-900);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

textarea { min-height: 130px; resize: vertical }

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

input::placeholder, textarea::placeholder {
  color: var(--gray-400);
}


/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */

.steps {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.step.featured {
  background: linear-gradient(135deg, rgba(37,99,235,.03) 0%, rgba(37,99,235,.06) 100%);
  border-color: var(--primary-200);
}

.step.featured:hover {
  border-color: var(--primary-light);
}

.stepBadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  padding: 5px 10px;
  margin-bottom: 14px;
}

.stepHeader {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.number {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: 0 0 auto;
}

.step h2 {
  margin: 6px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 95ch;
}

.step p + p { margin-top: 10px }


/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faqGroup {
  margin-top: 36px;
}
.faqGroup:first-child { margin-top: 0 }

.groupLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
  padding-left: 2px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
details:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
}

details[open] {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--gray-800);
}
summary::-webkit-details-marker { display: none }

.chev {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
details[open] .chev {
  transform: rotate(180deg) translateY(1px);
  background: var(--primary-50);
  color: var(--primary);
  border-color: var(--primary-100);
}

.answer {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 92ch;
}

.answer a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,.3);
  text-underline-offset: 2px;
}
.answer a:hover {
  text-decoration-color: var(--primary);
}


/* ==========================================================================
   BENEFIT LIST (shared across pages)
   ========================================================================== */

.benefitList {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
}

.benefitList li {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefitList li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-50);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s }
.reveal-delay-2 { transition-delay: .16s }
.reveal-delay-3 { transition-delay: .24s }
.reveal-delay-4 { transition-delay: .32s }

/* Stagger children inside grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .05s }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .1s }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .15s }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .2s }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .25s }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .3s }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .gridTwo { grid-template-columns: 1fr }
  .serviceAreaWrap { grid-template-columns: 1fr }
  .footerGrid { grid-template-columns: 1fr 1fr; gap: 32px }
  .benefitList { grid-template-columns: 1fr 1fr }
}

@media (max-width: 700px) {
  h1 { font-size: 36px; letter-spacing: -0.03em }
  .subtext { font-size: 16px }
  .sectionTitle { font-size: 26px }
  .hero { padding: 48px 0 32px }
  .section { padding: 40px 0 }
  .wrap { padding: 0 18px }

  .scrollWrapper {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .ctaInner {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footerInner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonialCard { padding: 24px }

  .heroDark { padding: 64px 0 48px }

  .heroDark::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.6) 100%);
  }

  .heroBackground img {
    object-position: center top;
  }

  .trustBar {
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .benefitList { grid-template-columns: 1fr }
}
