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

:root {
  --brand-blue:    #1565d8;
  --brand-blue-dk: #0f4faf;
  --brand-cyan:    #0891b2;
  --brand-purple:  #7c5cef;
  --brand-green:   #0d9f6e;
  --brand-orange:  #e08a00;
  --accent-grad:   linear-gradient(135deg, #1565d8 0%, #0891b2 100%);

  --navy:          #0c1c33;
  --bg:            #ffffff;
  --bg-soft:       #f5f8fc;
  --bg-soft-2:     #eef3fa;

  --text-heading:  #0d1f3a;
  --text-body:     #475569;
  --text-muted:    #6b7a90;

  --surface:       #ffffff;
  --border:        #e6ecf4;
  --border-strong: #d4deea;

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-xs:     0 1px 2px rgba(13,31,58,0.04);
  --shadow-sm:     0 4px 16px rgba(13,31,58,0.06), 0 1px 3px rgba(13,31,58,0.04);
  --shadow-md:     0 12px 32px rgba(13,31,58,0.09), 0 2px 8px rgba(13,31,58,0.05);
  --shadow-lg:     0 24px 60px rgba(13,31,58,0.14), 0 6px 16px rgba(13,31,58,0.07);

  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ── */
h1, h2, h3 { color: var(--text-heading); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 3.85rem); letter-spacing: -0.035em; line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(21,101,216,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21,101,216,0.36); }
.btn-ghost {
  background: #fff;
  color: var(--text-heading);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Section shared ── */
.section-header { text-align: center; margin-bottom: 64px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.12rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 18px;
  padding: 5px 14px;
  background: rgba(21,101,216,0.07);
  border-radius: 100px;
}

/* ── NAV ── */
/* At the top of the page the header is fully transparent for a cinematic, full-screen
   hero. As the user scrolls through the first 15% of the hero, JS drives --bar from 0→1
   and the translucent light bar (on ::before) gradually fades in. */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  --bar: 0;
}
/* the translucent bar itself — opacity tracks scroll progress */
.nav-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--bar, 0);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  background:
    linear-gradient(90deg, rgba(21,101,216,0.14) 0%, rgba(21,101,216,0.05) 14%, rgba(255,255,255,0) 34%, rgba(255,255,255,0) 66%, rgba(8,145,178,0.04) 86%, rgba(8,145,178,0.10) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(247,251,255,0.52) 100%);
  border-bottom: 1px solid rgba(13,31,58,0.06);
  box-shadow: 0 8px 30px rgba(13,31,58,0.08);
  transition: opacity .12s linear;
}
/* gradient accent line — fades in with the bar */
.nav-wrapper::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 8%, rgba(21,101,216,0.45) 35%, rgba(8,145,178,0.45) 65%, transparent 92%);
  opacity: var(--bar, 0);
  transition: opacity .12s linear;
  pointer-events: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
/* default: white logo so it reads on the dark hero */
.nav-logo-img { height: 54px; width: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
.nav-links { display: flex; align-items: center; gap: 8px; }
/* pill-style nav buttons — light by default (over hero) */
.nav-pill {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 9px;
  transition: color var(--transition), background var(--transition);
}
.nav-pill:hover { color: #fff; background: rgba(255,255,255,0.14); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Once the bar is mostly opaque, flip the logo/links to dark so they stay readable */
.nav-wrapper.scrolled .nav-logo-img { filter: none; }
.nav-wrapper.scrolled .nav-pill { color: var(--text-body); }
.nav-wrapper.scrolled .nav-pill:hover { color: var(--brand-blue); background: rgba(21,101,216,0.07); }
.nav-wrapper.scrolled .nav-toggle span { background: var(--text-heading); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,7,14,0.97) 0%, rgba(3,7,14,0.93) 34%, rgba(4,9,18,0.72) 50%, rgba(5,11,22,0.32) 64%, transparent 78%),
    linear-gradient(160deg, rgba(6,11,22,0.55) 0%, rgba(6,11,22,0.2) 45%, rgba(9,22,44,0.4) 100%),
    radial-gradient(ellipse 55% 45% at 80% 42%, rgba(21,101,216,0.2) 0%, transparent 62%),
    url('images/hero.jpg') center 35% / cover no-repeat;
  background-color: #070d1a;
  /* parallax: image layer stays fixed while the section scrolls */
  background-attachment: scroll, scroll, scroll, fixed;
}
/* soft fade into the next section */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, rgba(245,248,252,0.18) 70%, var(--bg-soft) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 45%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 45%, black 10%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Hero text sits on a dark photo → light treatment */
.hero-content h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero .gradient-text {
  background: linear-gradient(120deg, #7dd3fc 0%, #67e8f9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: #ffffff; text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 2px 22px rgba(0,0,0,0.7); }
.hero .stat-num {
  background: linear-gradient(120deg, #ffffff 0%, #bae6fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero .stat-label { color: rgba(255,255,255,0.6); }
.hero .stat-divider { background: rgba(255,255,255,0.18); }
.hero .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: #fff; }
.scroll-hint span { color: rgba(255,255,255,0.5); }
.scroll-line { background: linear-gradient(to bottom, #67e8f9, transparent); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(13,159,110,0.18);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(13,159,110,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(13,159,110,0.05); }
}
.hero-content h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }
.hero-stats { display: flex; align-items: center; gap: 30px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2.3rem; font-weight: 800; line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.stat-divider { width: 1px; height: 42px; background: var(--border-strong); }

/* ── Hero Visual (clean overview card) ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.dash-title { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); }
.dash-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--brand-green);
  background: rgba(13,159,110,0.1);
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.dash-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
  animation: pulse2 2s infinite;
}
@keyframes pulse2 { 0%,100%{opacity:1} 50%{opacity:0.4} }

.dash-metrics { display: flex; justify-content: space-around; gap: 12px; margin-bottom: 24px; }
.metric { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.metric-ring { position: relative; width: 74px; height: 74px; }
.metric-ring svg { width: 100%; height: 100%; }
.metric-ring span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 700; color: var(--text-heading);
}
.metric-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

.dash-services-list { display: flex; flex-direction: column; gap: 9px; }
.dsl-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.83rem; font-weight: 500; color: var(--text-heading);
}
.dsl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(13,159,110,0.12); color: var(--brand-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dsl-check svg { width: 11px; height: 11px; }
.dsl-status {
  margin-left: auto; font-size: 0.72rem; font-weight: 600;
  color: var(--brand-green);
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 3;
}
.float-top { top: -42px; left: -48px; animation: floatA 4s ease-in-out infinite; }
.float-bottom { bottom: -34px; right: -44px; animation: floatB 4.6s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-icon svg { width: 17px; height: 17px; }
.fc-green { background: rgba(13,159,110,0.12); color: var(--brand-green); }
.fc-blue  { background: rgba(21,101,216,0.12); color: var(--brand-blue); }
.fc-title { font-size: 0.84rem; font-weight: 700; color: var(--text-heading); }
.fc-sub   { font-size: 0.74rem; color: var(--text-muted); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1;
}
.scroll-hint span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, var(--brand-blue), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── SERVICES ── */
.services {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 85% 8%, rgba(21,101,216,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 95%, rgba(8,145,178,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 55%, var(--bg-soft) 100%);
}
.services .container { position: relative; z-index: 1; }
/* animated node-network background */
.services-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}
.section-blob { display: none; }

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

/* Featured card */
.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 38px;
  background: linear-gradient(120deg, #ffffff 0%, #eef5ff 100%);
  border-color: rgba(21,101,216,0.22);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.featured-bg {
  position: absolute;
  top: -40%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.service-card.featured .service-icon { grid-row: 1; grid-column: 1; align-self: start; }
.service-card.featured .service-priority { grid-row: 1; grid-column: 2; align-self: center; }
.service-card.featured h3 { grid-row: 2; grid-column: 2; }
.service-card.featured p  { grid-row: 3; grid-column: 2; }
.service-card.featured .service-features { grid-row: 4; grid-column: 2; }
.service-card.featured .service-cta     { grid-row: 5; grid-column: 2; }

/* Icons - soft pastel tints */
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.service-icon svg { width: 26px; height: 26px; }
.icon-glow-cyan   { background: rgba(8,145,178,0.1);  color: var(--brand-cyan); }
.icon-glow-blue   { background: rgba(21,101,216,0.1); color: var(--brand-blue); }
.icon-glow-purple { background: rgba(124,92,239,0.1); color: var(--brand-purple); }
.icon-glow-green  { background: rgba(13,159,110,0.1); color: var(--brand-green); }
.icon-glow-orange { background: rgba(224,138,0,0.1);  color: var(--brand-orange); }

.service-priority {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: var(--accent-grad);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px; width: fit-content;
  box-shadow: 0 4px 12px rgba(21,101,216,0.25);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.22rem; position: relative; z-index: 1; }
.service-card.featured h3 { font-size: 1.6rem; }
.service-card p {
  color: var(--text-body); font-size: 0.94rem; line-height: 1.7;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.service-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px 20px; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.service-features li {
  font-size: 0.86rem; color: var(--text-body);
  padding-left: 26px; position: relative; font-weight: 500;
}
.service-features li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 17px; height: 17px;
  background: rgba(13,159,110,0.12);
  border-radius: 50%;
}
.service-features li::after {
  content: '';
  position: absolute; left: 5px; top: 7px;
  width: 6px; height: 3px;
  border-left: 1.6px solid var(--brand-green);
  border-bottom: 1.6px solid var(--brand-green);
  transform: rotate(-45deg);
}
.service-cta {
  margin-top: auto;
  font-size: 0.9rem; font-weight: 600;
  color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
  position: relative; z-index: 1;
}
.service-cta:hover { gap: 11px; }

/* ── WHY US ── */
.why-us {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(9,17,33,0.94) 0%, rgba(10,26,52,0.9) 50%, rgba(9,17,33,0.95) 100%),
    url('images/blue-aisle.jpg') center center / cover no-repeat;
  background-color: var(--navy);
  /* parallax: image layer fixed, overlay scrolls */
  background-attachment: scroll, fixed;
}
.why-bg-art { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; mix-blend-mode: screen; }
.why-bg-art svg { width: 100%; height: 100%; }
.why-inner { position: relative; z-index: 1; }

/* dark-band header treatment */
.why-us .section-header h2 { color: #fff; }
.why-us .section-header p { color: rgba(255,255,255,0.72); }
.why-us .section-tag { color: #7dd3fc; background: rgba(125,211,252,0.12); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(125,211,252,0.4);
  background: rgba(255,255,255,0.08);
}
.pillar-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(21,101,216,0.5);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 12px; font-size: 1.1rem; color: #fff; }
.pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.why-cta {
  text-align: center;
  background: linear-gradient(120deg, rgba(21,101,216,0.18), rgba(8,145,178,0.14));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.why-cta p { color: #fff; margin-bottom: 22px; font-size: 1.35rem; font-weight: 600; }

/* ── CONTACT ── */
.contact {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 50% at 90% 10%, rgba(8,145,178,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(21,101,216,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13,31,58,0.04) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black, transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 60%);
  pointer-events: none;
}
.blob { display: none; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-tag { display: inline-block; }
.contact-info h2 { margin: 14px 0 20px; }
.contact-info > p { color: var(--text-body); font-size: 1rem; line-height: 1.8; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(21,101,216,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue); flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.ci-value { font-size: 1rem; font-weight: 600; color: var(--text-heading); transition: color var(--transition); }
.ci-value:hover { color: var(--brand-blue); }

.response-note {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-body); font-weight: 500;
  padding: 13px 16px;
  background: rgba(13,159,110,0.07);
  border-radius: 10px;
  margin-bottom: 32px;
}
.response-note svg { width: 16px; height: 16px; color: var(--brand-green); flex-shrink: 0; }

.contact-services > span { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 12px; font-weight: 500; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 6px 15px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--brand-blue);
  background: rgba(21,101,216,0.07);
  border-radius: 100px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-heading); letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-heading);
  font-family: var(--font); font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab6c6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(21,101,216,0.12);
  background: #fff;
}
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 4px; }

/* Honeypot — hidden from real users, bots tend to fill it */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
/* Human-check challenge */
.captcha-group label { display: flex; align-items: center; gap: 6px; }
#captchaQuestion {
  font-weight: 700;
  color: var(--brand-blue);
  background: rgba(21,101,216,0.08);
  padding: 2px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.form-error {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d62b2b;
  text-align: center;
  background: rgba(214,43,43,0.08);
  border: 1px solid rgba(214,43,43,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}
.form-success {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-green);
  text-align: center;
  background: rgba(13,159,110,0.09);
  border: 1px solid rgba(13,159,110,0.25);
  border-radius: 8px;
  padding: 12px 16px;
}

/* ── FOOTER ── */
.footer {
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(21,101,216,0.22) 0%, transparent 62%),
    radial-gradient(ellipse 40% 60% at 88% 30%, rgba(8,145,178,0.12) 0%, transparent 60%),
    var(--navy);
  padding: 66px 0 40px;
  position: relative;
  overflow: hidden;
}
/* dotted texture */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 72%);
  pointer-events: none;
}
/* top gradient accent line */
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, rgba(21,101,216,0.6) 40%, rgba(8,145,178,0.6) 60%, transparent 90%);
}
.footer .container { position: relative; z-index: 1; }
.footer-top-line { display: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col a:not(.btn) {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  padding: 6px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:not(.btn):hover { color: #fff; padding-left: 4px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  margin: 18px 0 22px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-logo { display: inline-block; }
/* invert the black logo to white for the dark footer */
.footer-logo-img { height: 76px; width: auto; filter: brightness(0) invert(1); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-contact svg { width: 16px; height: 16px; color: #7dd3fc; flex-shrink: 0; }
.footer-contact a:hover { color: #fff; }

.footer-cta-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-cta-col .btn { align-self: flex-start; margin-top: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

/* ── Sticky nav: bar fades in on scroll (no size change — keeps the logo crisp) ── */

/* ── Status strip ── */
.status-strip {
  background: linear-gradient(90deg, #0b1a30 0%, #112a48 50%, #0b1a30 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 15px 0;
}
.status-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; }
.status-headline { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.status-headline strong { color: #fff; font-weight: 700; }
.status-pulse { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: statusPulse 2s infinite; }
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.status-sep { color: rgba(255,255,255,0.3); }
.status-sub { font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.status-items { display: flex; gap: 22px; flex-wrap: wrap; }
.status-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.sdot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }

/* ── Partner marquee ── */
.marquee-band { background: var(--bg-soft); padding: 42px 0 46px; border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em;
  color: #5b6b81; white-space: nowrap; box-shadow: var(--shadow-xs);
  transition: color .2s ease, border-color .2s ease;
}
.brand-chip:hover { color: var(--brand-blue); border-color: rgba(21,101,216,0.3); }

/* ── Animated gradient mesh ── */
.gradient-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(62px); opacity: 0.62; }
.mb1 { width: 540px; height: 540px; background: rgba(21,101,216,0.5); top: -150px; left: -100px; animation: mesh1 19s ease-in-out infinite; }
.mb2 { width: 500px; height: 500px; background: rgba(8,145,178,0.42); bottom: -170px; right: -80px; animation: mesh2 23s ease-in-out infinite; }
.mb3 { width: 400px; height: 400px; background: rgba(124,92,239,0.32); top: 24%; left: 48%; animation: mesh3 27s ease-in-out infinite; }
.mb4 { width: 360px; height: 360px; background: rgba(13,159,110,0.22); bottom: 8%; left: 8%; animation: mesh1 25s ease-in-out infinite reverse; }
@keyframes mesh1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,52px) scale(1.18); } }
@keyframes mesh2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-64px,-40px) scale(1.12); } }
@keyframes mesh3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-52px,40px) scale(0.88); } }

/* ── Pricing / Build your plan ── */
.pricing { position: relative; overflow: hidden; padding: 110px 0; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
/* faint blueprint grid over the mesh for extra texture */
.pricing::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(21,101,216,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,216,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 78%);
}
.pricing .container { position: relative; z-index: 1; }
.plan-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: start; }
.plan-subhead { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin: 0 0 16px; }
.bundle-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-sm); }
.bundle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; }
.bundle-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; padding-right: 38px;
  border: 1.5px solid var(--border); border-radius: 14px;
  background: var(--bg-soft); cursor: pointer; font-family: var(--font); text-align: left;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
  position: relative;
}
.bundle-tile:hover { border-color: var(--brand-blue); transform: translateY(-2px); }
.bt-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(21,101,216,0.1); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .18s ease, color .18s ease; }
.bt-icon svg { width: 19px; height: 19px; }
.bt-name { font-size: 0.9rem; font-weight: 600; color: var(--text-heading); }
.bt-check { position: absolute; top: 50%; right: 12px; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border-strong); transition: border-color .18s ease, background .18s ease; }
.bundle-tile[aria-pressed="true"] { border-color: var(--brand-blue); background: linear-gradient(120deg, #fff, #eef5ff); box-shadow: 0 8px 22px rgba(21,101,216,0.12); }
.bundle-tile[aria-pressed="true"] .bt-icon { background: var(--accent-grad); color: #fff; }
.bundle-tile[aria-pressed="true"] .bt-check { border-color: var(--brand-blue); background: var(--brand-blue); }
.bundle-tile[aria-pressed="true"] .bt-check::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.slider-row { display: flex; align-items: center; gap: 18px; }
.emp-range { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan)); outline: none; }
.emp-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--brand-blue); box-shadow: var(--shadow-sm); cursor: pointer; }
.emp-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--brand-blue); box-shadow: var(--shadow-sm); cursor: pointer; }
.emp-out { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); white-space: nowrap; }
.emp-unit { font-weight: 500; color: var(--text-muted); font-size: 0.85rem; }

.estimate-card { position: relative; overflow: hidden; background: linear-gradient(160deg, #0c1c33 0%, #10284a 100%); color: #fff; border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow-lg); }
.est-glow { position: absolute; top: -70px; right: -70px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(8,145,178,0.45) 0%, transparent 65%); pointer-events: none; }
.estimate-card > * { position: relative; z-index: 1; }
.est-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); font-weight: 600; }
.est-amount { display: flex; align-items: baseline; gap: 3px; margin: 10px 0 4px; }
.est-currency { font-size: 1.7rem; font-weight: 700; color: #7dd3fc; }
#estMonthly { font-size: 3.3rem; font-weight: 800; line-height: 1; background: linear-gradient(120deg, #fff, #bae6fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-variant-numeric: tabular-nums; }
.est-per { font-size: 1.1rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.est-annual { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.est-annual strong { color: #fff; }
.est-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 24px 0; }
.est-summary-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.est-count { font-size: 0.72rem; font-weight: 600; color: #7dd3fc; background: rgba(125,211,252,0.12); padding: 3px 11px; border-radius: 100px; }
.est-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; min-height: 42px; }
.est-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.88); }
.est-tick { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(13,159,110,0.25); color: #34d399; font-size: 0.7rem; flex-shrink: 0; }
.est-empty { color: rgba(255,255,255,0.45); font-style: italic; }
.est-note { font-size: 0.74rem; color: rgba(255,255,255,0.5); text-align: center; margin-top: 12px; }

/* ── FAQ accordion ── */
.faq { padding: 110px 0; background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: rgba(21,101,216,0.3); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 1.02rem; font-weight: 600; color: var(--text-heading); text-align: left; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--brand-blue); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-body); font-size: 0.94rem; line-height: 1.75; margin: 0; }

/* ── 3D tilt + micro-interactions ── */
.services-grid { perspective: 1200px; }
.service-card { will-change: transform; }
.service-card .service-icon { transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.pillar-icon { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.pillar:hover .pillar-icon { transform: translateY(-3px) scale(1.06); }
/* button shine sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* ── Cloudflare Turnstile ── */
.cf-turnstile { margin: 2px 0; min-height: 65px; }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.28s; }
.pillars-grid .pillar:nth-child(2) { transition-delay: 0.08s; }
.pillars-grid .pillar:nth-child(3) { transition-delay: 0.16s; }
.pillars-grid .pillar:nth-child(4) { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-badge, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .service-card.featured .service-icon,
  .service-card.featured .service-priority,
  .service-card.featured h3,
  .service-card.featured p,
  .service-card.featured .service-features,
  .service-card.featured .service-cta { grid-column: 1; grid-row: auto; }

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

  .plan-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  /* dropdown is white, so pills are always dark on mobile regardless of scroll state */
  .nav-pill,
  .nav-wrapper.scrolled .nav-pill { display: flex; border-radius: 0; padding: 13px 28px; font-size: 1rem; justify-content: flex-start; color: var(--text-body); }
  .nav-pill:hover { background: rgba(21,101,216,0.07); color: var(--brand-blue); }
  .nav-links .btn { margin: 14px 28px 6px; justify-content: center; }
  .nav-toggle { display: flex; }

  /* disable fixed-attachment parallax on mobile (janky / unsupported on iOS) */
  .hero, .why-us { background-attachment: scroll; }

  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 22px; }
  .stat-divider { display: none; }
  .scroll-hint { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; }
  .service-card.featured h3 { font-size: 1.35rem; }
  .service-features { grid-template-columns: 1fr; }

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

  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-card, .estimate-card { padding: 26px 22px; }
  .status-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .status-items { gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.85rem; }

  .services, .why-us, .contact, .pricing, .faq { padding: 80px 0; }
}
