/* ============================================================
   JD Plumbers — Production Stylesheet
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:         #59A6FF;
  --blue-dark:    #2E88F0;
  --blue-light:   #EBF4FF;
  --blue-mid:     #A8D1FF;
  --navy:         #0B1628;
  --navy-2:       #111E33;

  /* Foreground */
  --fg1:          #0F1C2E;
  --fg2:          #4A5568;
  --fg3:          #8A9BB0;

  /* Surfaces */
  --white:        #FFFFFF;
  --bg:           #F5F9FF;
  --border:       #E2EBF5;

  /* Status */
  --green:        #22C55E;
  --green-light:  #F0FDF4;
  --amber:        #F59E0B;

  /* Radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  /* Shadows */
  --sh1: 0 2px 8px rgba(89, 166, 255, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  --sh2: 0 8px 28px rgba(89, 166, 255, 0.14), 0 2px 8px rgba(0, 0, 0, 0.07);
  --sh3: 0 20px 60px rgba(89, 166, 255, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);

  /* Animation */
  --dur-fast:   150ms;
  --dur-base:   200ms;
  --dur-slow:   300ms;
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --ease-inout: cubic-bezier(0.4, 0.0, 0.2, 1.0);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Urbanist", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg1);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  border-radius: var(--r-pill);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--sh2);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue-light);
}

.btn--white {
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  background: #f0f4ff;
}

.btn--ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.20);
}

.btn--lg {
  font-size: 17px;
  padding: 18px 34px;
}

.btn--sm {
  font-size: 13px;
  padding: 10px 18px;
}

.btn--full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(89, 166, 255, 0.2);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
  box-shadow: var(--sh1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color var(--dur-slow);
}

.nav.scrolled .nav-logo-text {
  color: var(--fg1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--dur-fast);
}

.nav-links a:hover {
  color: #fff;
}

.nav.scrolled .nav-links a {
  color: var(--fg2);
}

.nav.scrolled .nav-links a:hover {
  color: var(--fg1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-actions .btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.burger {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: #fff;
  transition: color var(--dur-slow);
  align-items: center;
  justify-content: center;
}

.nav.scrolled .burger {
  color: var(--fg1);
}

.burger svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.burger .icon-close {
  display: none;
}

.burger.is-open .icon-menu {
  display: none;
}

.burger.is-open .icon-close {
  display: block;
}

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 199;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  box-shadow: var(--sh2);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg1);
  border-bottom: 1px solid #F0F4FB;
}

.mobile-menu a:last-of-type {
  border: none;
}

.mobile-menu .mm-cta {
  margin-top: 14px;
}

.mobile-menu .mm-cta svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 166, 255, 0.18) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.hero-glow-2 {
  position: absolute;
  pointer-events: none;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 166, 255, 0.10) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 28px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 56px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89, 166, 255, 0.12);
  border: 1px solid rgba(89, 166, 255, 0.25);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-right {
  flex-shrink: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 12px;
}

.hero-card-badge-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
}

.hero-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hero-card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hc-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hc-svc:last-child {
  border: none;
  padding-bottom: 0;
}

.hc-svc-icon {
  color: var(--blue);
  flex-shrink: 0;
}

.hc-svc svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.75;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg1);
  border-right: 1px solid var(--border);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon {
  color: var(--blue);
  flex-shrink: 0;
}

.trust-bar-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* ── SECTION HEADER ──────────────────────────────────────────── */
.sec-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg1);
  margin-bottom: 14px;
  line-height: 1.1;
}

.sec-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--fg2);
  line-height: 1.65;
  max-width: 560px;
}

.sec-header {
  margin-bottom: 52px;
}

.sec-header--center {
  text-align: center;
}

.sec-header--center .sec-sub {
  margin: 0 auto;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(89, 166, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.svc-card:hover {
  background: #fff;
  box-shadow: var(--sh2);
  transform: translateY(-3px);
  border-color: rgba(89, 166, 255, 0.2);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.svc-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--fg1);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.svc-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.65;
}

.svc-card--feature {
  grid-column: span 2;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 40px;
}

.svc-card--feature:hover {
  background: #0f1e35;
  border-color: rgba(89, 166, 255, 0.2);
  transform: translateY(-2px);
}

.svc-card--feature .svc-icon {
  background: rgba(89, 166, 255, 0.15);
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
}

.svc-card--feature .svc-icon svg {
  width: 30px;
  height: 30px;
}

.svc-card--feature .svc-title {
  font-size: 22px;
  color: #fff;
}

.svc-card--feature .svc-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  max-width: 480px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 10px;
}

.feature-badge-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
}

.svc-feature-right {
  margin-left: auto;
  flex-shrink: 0;
}

.svc-feature-right .btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how {
  padding: 96px 0;
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  list-style: none;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  pointer-events: none;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg1);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.65;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-text {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg1);
}

.about-feat-icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-feat-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

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

.about-ctas .btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.about-hero-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 166, 255, 0.20) 0%, transparent 70%);
}

.ahc-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.ahc-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 24px;
}

.ahc-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ahc-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.ahc-cred svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  color: var(--blue);
  flex-shrink: 0;
}

.about-hero-card .btn {
  margin-bottom: 0;
}

.about-hero-card .btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
}

.about-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.about-mini {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  padding: 16px;
}

.ahc-num {
  font-size: 48px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.05em;
  line-height: 1;
}

.ahc-num--sm {
  font-size: 32px;
}

.ahc-num-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 2px;
}

.address-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh1);
  flex-shrink: 0;
}

.address-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.address-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.address-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.address-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg1);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  padding: 96px 0;
  background: var(--bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh1);
  display: flex;
  flex-direction: column;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 16px;
}

.testi-text {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-text::before {
  content: '\201C';
  font-size: 28px;
  color: var(--blue);
  font-style: normal;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

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

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light) 0%, #D1E8FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg1);
}

.testi-loc {
  font-size: 12px;
  color: var(--fg3);
  font-weight: 500;
}

/* ── COVERAGE ────────────────────────────────────────────────── */
.coverage {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 166, 255, 0.12) 0%, transparent 65%);
  top: -300px;
  right: -200px;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.coverage .sec-title {
  color: #fff;
}

.coverage .sec-sub {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.coverage .sec-eyebrow {
  color: rgba(89, 166, 255, 0.9);
}

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.area-chip-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.coverage-cta {
  margin-top: 32px;
}

.coverage-cta .btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.coverage-map {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-pin-wrap {
  position: relative;
}

.map-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(89, 166, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2.4s ease-in-out infinite;
}

.map-pulse svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  stroke-width: 1.75;
}

.map-pulse-2 {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(89, 166, 255, 0.06);
  animation: pulse 2.4s ease-in-out infinite 0.8s;
}

.map-pulse-3 {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: rgba(89, 166, 255, 0.04);
  animation: pulse 2.4s ease-in-out infinite 1.6s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.coverage-label {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}

.coverage-sublabel {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow var(--dur-base), background var(--dur-base);
}

.faq-item.open {
  background: #fff;
  box-shadow: var(--sh1);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item.open .faq-btn {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg1);
  line-height: 1.4;
}

.faq-chevron {
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out);
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

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

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

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

.faq-body-inner {
  padding: 18px 22px;
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.7;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-intro {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.65;
}

.contact-cta-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 166, 255, 0.2) 0%, transparent 70%);
}

.ccc-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.ccc-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
  line-height: 1.55;
}

.contact-cta-card .btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--sh1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.ci-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg1);
}

.ci-value--sm {
  font-size: 13px;
}

.ci-value a {
  color: var(--blue);
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh1);
}

.form-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--fg1);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.form-sub {
  font-size: 14px;
  color: var(--fg2);
  margin-bottom: 28px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg1);
  margin-bottom: 6px;
}

.input {
  width: 100%;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg1);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.input::placeholder {
  color: var(--fg3);
  font-weight: 400;
}

.input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(89, 166, 255, 0.15);
}

textarea.input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A9BB0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-submit {
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  color: var(--fg3);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.f-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.f-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 22px;
}

.f-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.f-phone svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  stroke-width: 2.5;
}

.f-col-title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.f-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color var(--dur-fast);
}

.f-links a:hover {
  color: #fff;
}

.f-address-block {
  margin-top: 24px;
}

.f-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit-link {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
}

.footer-credit-link:hover {
  color: #fff;
}

/* ── STICKY MOBILE BAR ───────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 10px 16px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.10);
  display: none;
}

.sticky-bar-inner {
  background: var(--navy);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sb-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sb-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.sticky-bar .btn {
  border-radius: 12px;
}

.sticky-bar .btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card--feature {
    grid-column: span 2;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid .testi-card:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    padding: 48px 24px 56px;
    gap: 32px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card--feature {
    grid-column: span 1;
    flex-direction: column;
    gap: 16px;
  }

  .svc-feature-right {
    margin-left: 0;
    width: 100%;
  }

  .svc-feature-right .btn {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    order: -1;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid .testi-card:last-child {
    display: flex;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coverage-map {
    display: none;
  }

  .coverage-areas {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .trust-bar-item {
    flex-shrink: 0;
    padding: 10px 20px;
  }

  .sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 100px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ── MOTION ──────────────────────────────────────────────────── */

/* Hero — staggered entrance on page load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow { animation: heroFadeUp     0.55s var(--ease-out) 0.10s both; }
.hero-title   { animation: heroFadeUp     0.65s var(--ease-out) 0.25s both; }
.hero-sub     { animation: heroFadeUp     0.55s var(--ease-out) 0.42s both; }
.hero-ctas    { animation: heroFadeUp     0.55s var(--ease-out) 0.56s both; }
.hero-trust   { animation: heroFadeUp     0.55s var(--ease-out) 0.68s both; }
.hero-right   { animation: heroSlideRight 0.65s var(--ease-out) 0.30s both; }

/* Scroll-triggered — keyframe definitions */
@keyframes scrollFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollFadeLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollFadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollScaleUp {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: none; }
}

/* Initial hidden state — only active when JS has loaded */
.js-ready [data-anim]:not(.in-view) {
  opacity: 0;
  will-change: opacity, transform;
}
.js-ready [data-anim="up"]:not(.in-view)    { transform: translateY(28px); }
.js-ready [data-anim="left"]:not(.in-view)  { transform: translateX(-32px); }
.js-ready [data-anim="right"]:not(.in-view) { transform: translateX(32px); }
.js-ready [data-anim="scale"]:not(.in-view) { transform: scale(0.93); }

/* Playing state */
.js-ready [data-anim="up"].in-view    { animation: scrollFadeUp    0.6s var(--ease-out) both; }
.js-ready [data-anim="left"].in-view  { animation: scrollFadeLeft  0.6s var(--ease-out) both; }
.js-ready [data-anim="right"].in-view { animation: scrollFadeRight 0.6s var(--ease-out) both; }
.js-ready [data-anim="scale"].in-view { animation: scrollScaleUp   0.6s var(--ease-out) both; }

/* Stagger delays — must come after animation rules */
.js-ready [data-delay="1"].in-view { animation-delay: 0.08s; }
.js-ready [data-delay="2"].in-view { animation-delay: 0.16s; }
.js-ready [data-delay="3"].in-view { animation-delay: 0.24s; }
.js-ready [data-delay="4"].in-view { animation-delay: 0.32s; }
.js-ready [data-delay="5"].in-view { animation-delay: 0.40s; }
.js-ready [data-delay="6"].in-view { animation-delay: 0.48s; }
.js-ready [data-delay="7"].in-view { animation-delay: 0.56s; }

/* Done state — clear animation so hover transitions work normally */
.js-ready [data-anim].anim-done {
  animation: none;
  opacity: 1;
  will-change: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub,
  .hero-ctas, .hero-trust, .hero-right {
    animation: none;
  }
  .js-ready [data-anim]:not(.in-view) {
    opacity: 0;
    transform: none;
  }
  .js-ready [data-anim].in-view {
    animation: none;
    opacity: 1;
  }
}

/* ── PAGE CHROME ─────────────────────────────────────────────── */

body { background: var(--navy); }

.nav.scrolled {
  background: rgba(11, 22, 40, 0.96);
  border-color: rgba(255, 255, 255, 0.07);
}
.nav.scrolled .nav-logo-text { color: #fff; }
.nav.scrolled .nav-links a   { color: rgba(255, 255, 255, 0.75); }
.nav.scrolled .nav-links a:hover { color: #fff; }
.nav.scrolled .burger        { color: #fff; }
