/* ============================================================
   OMNITRIX | Main Stylesheet
   Stack: Vanilla CSS · Mobile-first · Dark theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #000000;
  --surface:   #0A0A0A;
  --card:      #141414;
  --border:    #262626;
  --green:     #00C950;
  --green-h:   #00A843;
  --green-dim: rgba(0,201,80,0.12);
  --white:     #FFFFFF;
  --body:      #B6B6B6;
  --muted:     #8E8E8E;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --transition: 0.25s ease;
  --shadow: 0 0 0 1px var(--border), 0 4px 24px rgba(0,0,0,0.4);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 1rem;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 5.5rem 0; }
.home-about-preview { padding-bottom: 0.5rem; }
.home-services-preview { padding-top: 1.25rem; }
.home-services-preview .section-header { margin-bottom: 1.15rem; }
.home-services-preview .section-header p { margin-top: 0.55rem; }
.home-services-preview .service-grid { margin-top: 1.15rem !important; }
.about-origin-section { padding-bottom: 0.5rem; }
.about-experience-section { padding-top: 1.25rem; }
.about-experience-section .section-header { margin-bottom: 1.15rem; }
.about-experience-section .section-header p { margin-top: 0.55rem; }
.about-experience-section .service-grid { margin-top: 1.15rem !important; }
.home-services-preview .section-header,
.about-experience-section .section-header {
  text-align: left;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  align-items: end;
  gap: 2rem;
}
.home-services-preview .section-header .eyebrow,
.about-experience-section .section-header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.35rem;
}
.home-services-preview .section-header h2,
.about-experience-section .section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}
.home-services-preview .section-header p,
.about-experience-section .section-header p {
  max-width: 620px;
  margin: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo-text span { color: var(--green); }
.nav__logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.nav__logo-lockup img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.12));
}
.footer__logo-lockup img {
  width: 44px;
  height: 44px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #AFAFAF;
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #AFAFAF;
  transition: color var(--transition);
}
.nav__dropdown-toggle:hover { color: var(--white); cursor: pointer; }
.nav__dropdown-toggle svg { transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #AFAFAF;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--border); color: var(--white); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #000 !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--green-h); transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--bg);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--body);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .nav__cta {
  display: inline-flex;
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,80,0.25);
  border-radius: 100px;
  padding: 0.35em 1em;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__asset {
  position: absolute;
  right: 0;
  top: 54%;
  transform: translateY(-50%);
  width: min(43vw, 760px);
  opacity: 0.74;
  pointer-events: none;
  z-index: 1;
}
.hero__asset::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.34) 38%, rgba(0,0,0,0) 72%);
  z-index: 2;
  pointer-events: none;
}
.hero__asset::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 28px 80px rgba(0,0,0,0.42);
  z-index: 3;
  pointer-events: none;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #000;
}
.btn--primary:hover {
  background: var(--green-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,80,0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--surface);
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-item__number span { color: var(--green); }
.stat-item__label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 560px; margin: 1rem auto 0; }
.section-header p { margin-top: 0.75rem; max-width: 560px; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card__icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
  position: relative;
  overflow: hidden;
}
.service-card__icon[class*="service-card__icon--"] {
  width: 52px; height: 52px;
  background:
    linear-gradient(135deg, rgba(0,201,80,0.16), rgba(0,201,80,0.04)),
    var(--surface);
  border: 1px solid rgba(0,201,80,0.22);
  border-radius: 14px;
}
.service-card__icon[class*="service-card__icon--"]::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0,201,80,0.16);
  border-radius: 9px;
}
.service-card__icon[class*="service-card__icon--"]::after,
.service-card__icon[class*="service-card__icon--"] span,
.service-card__icon[class*="service-card__icon--"] span::before,
.service-card__icon[class*="service-card__icon--"] span::after {
  content: '';
  position: absolute;
  display: block;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__icon--field span {
  width: 24px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 7px;
  transform: rotate(-28deg);
}
.service-card__icon--field span::before {
  width: 12px;
  height: 2px;
  background: var(--green);
  left: 5px;
  top: 5px;
}
.service-card__icon--field span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  right: -8px;
  top: 3px;
  box-shadow: -30px 6px 0 rgba(0,201,80,0.45);
}
.service-card__icon--lowvolt span {
  width: 28px;
  height: 24px;
  border-left: 2px solid var(--green);
  border-right: 2px solid var(--green);
}
.service-card__icon--lowvolt span::before,
.service-card__icon--lowvolt span::after {
  height: 2px;
  background: var(--green);
  left: -5px;
  right: -5px;
  border-radius: 2px;
}
.service-card__icon--lowvolt span::before { top: 5px; box-shadow: 0 7px 0 var(--green), 0 14px 0 var(--green); }
.service-card__icon--lowvolt span::after {
  width: 7px;
  height: 7px;
  left: 10px;
  top: 9px;
  border-radius: 50%;
  background: var(--green);
}
.service-card__icon--network span {
  width: 28px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 5px;
  top: 15px;
  left: 12px;
  box-shadow: 0 14px 0 -2px var(--surface), 0 14px 0 0 var(--green);
}
.service-card__icon--network span::before,
.service-card__icon--network span::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  top: 2px;
}
.service-card__icon--network span::before { left: 5px; }
.service-card__icon--network span::after { right: 5px; }
.service-card__icon--survey span {
  width: 26px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 5px;
  transform: skew(-8deg);
}
.service-card__icon--survey span::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--green);
  border-radius: 50%;
  right: 3px;
  top: 3px;
}
.service-card__icon--survey span::after {
  width: 10px;
  height: 2px;
  background: var(--green);
  left: 4px;
  top: 6px;
  box-shadow: 0 6px 0 rgba(0,201,80,0.55);
}
.service-card__icon--rollout span {
  width: 30px;
  height: 18px;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}
.service-card__icon--rollout span::before,
.service-card__icon--rollout span::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  top: 4px;
}
.service-card__icon--rollout span::before {
  left: 0;
  box-shadow: 11px 0 0 rgba(0,201,80,0.65), 22px 0 0 var(--green);
}
.service-card__icon--rollout span::after {
  width: 2px;
  height: 18px;
  left: 14px;
  top: 0;
  border-radius: 2px;
}
.service-card__icon--partner span {
  width: 28px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 7px;
}
.service-card__icon--partner span::before {
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  left: 2px;
  top: 4px;
}
.service-card__icon--partner span::after {
  width: 12px;
  height: 2px;
  background: var(--green);
  right: 3px;
  top: 8px;
  box-shadow: 0 5px 0 rgba(0,201,80,0.55);
}
.service-card__icon[class*="service-card__icon--"] {
  width: 92px;
  height: 92px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.service-card__icon[class*="service-card__icon--"]::before,
.service-card__icon[class*="service-card__icon--"]::after {
  display: none;
}
.service-card__icon[class*="service-card__icon--"] svg {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
  fill: none;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.14));
}
.service-card__icon[class*="service-card__icon--"] img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.service-card__icon .metal-line,
.service-card__icon .green-line {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.service-card__icon .metal-line {
  stroke: #dfe4dc;
}
.service-card__icon .green-line {
  stroke: var(--green);
}
.service-card__icon .green-fill {
  fill: var(--green);
}
.service-card__icon:not([class*="service-card__icon--"]),
.feature-item__icon {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(0,201,80,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe4dc;
  box-shadow: inset 0 0 0 1px rgba(0,201,80,0.045);
}
.service-card__icon:not([class*="service-card__icon--"]) svg,
.feature-item__icon svg {
  stroke: currentColor;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.14));
}
.feature-item__icon {
  border-radius: 9px;
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* ── PIPELINE ────────────────────────────────────────────── */
.pipeline { padding: 6rem 0; background: var(--surface); }
.pipeline__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pipeline__stages { display: flex; flex-direction: column; gap: 0; }
.pipeline__stage {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.pipeline__stage:last-child { padding-bottom: 0; }
.pipeline__stage-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.pipeline__stage-num {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,80,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pipeline__stage-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(0,201,80,0.3), var(--border));
  margin: 4px 0;
}
.pipeline__stage:last-child .pipeline__stage-line { display: none; }
.pipeline__stage-content { padding-top: 0.5rem; }
.pipeline__stage-content h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.pipeline__stage-content p { font-size: 0.92rem; line-height: 1.7; }
.pipeline__copy h2 { margin-bottom: 1rem; }
.pipeline__copy p { margin-bottom: 1.5rem; line-height: 1.75; }

/* ── LOGOS ───────────────────────────────────────────────── */
.logos-section { padding: 4rem 0; border-top: 1px solid var(--border); }
.logos-section__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A9A9A;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.logos-grid__item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #A6A6A6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logos-grid__item:hover { color: var(--white); }
.logos-grid__item .logo-dot { width: 6px; height: 6px; background: var(--border); border-radius: 50%; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.75rem;
}
.testimonial-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: #A6A6A6;
}

/* ── VENDORS ─────────────────────────────────────────────── */
.vendors { padding: 4rem 0; border-top: 1px solid var(--border); }
.vendors__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A9A9A;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}
.vendors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.vendor-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45em 1.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body);
  font-family: var(--font-display);
  transition: all var(--transition);
}
.vendor-chip:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,201,80,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, black 40%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; max-width: 700px; }
.page-hero p { max-width: 560px; font-size: 1.1rem; font-weight: 400; }

.visual-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
  object-fit: cover;
}
.visual-frame--hero {
  border-radius: var(--radius-lg);
  min-height: 500px;
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
}
.visual-frame--compact {
  margin-bottom: 0.4rem;
  aspect-ratio: 16 / 9;
}
.visual-frame--wide {
  max-height: 390px;
}

.coverage-panel {
  background:
    linear-gradient(135deg, rgba(0,201,80,0.11), transparent 38%),
    linear-gradient(180deg, rgba(21,26,23,0.96), rgba(11,13,12,0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.coverage-panel__copy {
  align-self: center;
  padding: 0.5rem;
}
.coverage-panel__copy h2 {
  font-size: 1.75rem;
  margin-bottom: 0.9rem;
}
.coverage-panel__copy p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.coverage-panel__routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.coverage-route {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255,255,255,0.035) 58px 59px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,0.035) 58px 59px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.coverage-route::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(0,201,80,0.28);
  border-radius: 50%;
  top: 18px;
  right: -28px;
}
.coverage-route::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  top: 78px;
  right: 78px;
  box-shadow: 0 0 0 7px rgba(0,201,80,0.13);
}
.coverage-route--primary {
  border-color: rgba(0,201,80,0.36);
}
.coverage-route span {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.coverage-route strong {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}
.coverage-route p {
  color: var(--body);
  font-size: 0.86rem;
  line-height: 1.62;
  margin: 0;
}

/* ── CONTENT GRID ────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col--center { align-items: center; }
.content-split {
  align-items: start;
  gap: 3rem;
}
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item__icon {
  width: 36px; height: 36px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.feature-item__icon svg { width: 18px; height: 18px; }
.feature-item__icon {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(0,201,80,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe4dc;
  box-shadow: inset 0 0 0 1px rgba(0,201,80,0.045);
}
.feature-item__icon svg {
  stroke: currentColor;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.14));
}
.feature-item__icon--raster {
  width: 52px;
  height: 52px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.feature-item__icon--raster img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  pointer-events: none;
}
.feature-item h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; line-height: 1.65; }

/* ── INFO CARD ───────────────────────────────────────────── */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.info-card h4 { margin-bottom: 0.5rem; }
.info-card p { font-size: 0.92rem; }

.about-split {
  align-items: start;
  gap: 3rem;
}
.about-proof {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-proof__image {
  aspect-ratio: 16 / 9;
}
.about-proof__image--short {
  aspect-ratio: 16 / 8.5;
}
.about-proof__card {
  padding: 1.45rem;
}

/* ── CHECKLIST ───────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--body);
}
.checklist li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,80,0.3);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300C950' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.process-step:last-child::before { display: none; }
.process-step h4 { margin-bottom: 0.3rem; padding-top: 0.4rem; }
.process-step p { font-size: 0.92rem; line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 40px; height: 40px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 20px; height: 20px; }
.contact-success__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}
.contact-info-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.contact-info-item__value a { transition: color var(--transition); }
.contact-info-item__value a:hover { color: var(--green); }

/* Response Systems */
.response-page {
  --response-body: #C4C4C4;
  --response-soft: #A8A8A8;
}
.response-page p,
.response-page .service-card p,
.response-page .info-card p,
.response-page .checklist li,
.response-page .footer__brand p {
  color: var(--response-body);
}
.response-page .section-header p,
.response-page .cta-band p {
  color: var(--response-body);
}
.response-page .eyebrow,
.response-page .tag-pill {
  color: #13DE68;
}
.response-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 8rem 0 4.5rem;
  background: #070707;
}
.response-hero::before {
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 76% 86% at 35% 42%, black 35%, transparent 100%);
}
.response-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.response-hero h1 {
  max-width: 820px;
}
.response-hero p {
  max-width: 620px;
}
.response-hero__asset {
  position: absolute;
  right: -7vw;
  top: 55%;
  transform: translateY(-50%);
  width: min(68vw, 1180px);
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 82% 80% at 64% 50%, black 0%, black 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 80% at 64% 50%, black 0%, black 68%, transparent 100%);
}
.response-hero__asset::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(90deg, rgba(7,7,7,1) 0%, rgba(7,7,7,0.78) 22%, rgba(7,7,7,0.14) 52%, rgba(7,7,7,0.02) 100%),
    linear-gradient(180deg, rgba(7,7,7,0.72) 0%, rgba(7,7,7,0.02) 34%, rgba(7,7,7,0.03) 64%, rgba(7,7,7,0.72) 100%);
  z-index: 2;
}
.response-hero__asset::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 52% at 68% 50%, rgba(0,201,80,0.16), transparent 64%),
    linear-gradient(90deg, transparent 0%, rgba(7,7,7,0.02) 58%, rgba(7,7,7,0.42) 100%);
  z-index: 3;
}
.response-hero__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: saturate(1.2) contrast(1.1) brightness(1);
}
.response-section {
  padding: 2.75rem 0;
}
.response-bridge {
  padding: 2.25rem 0;
}
.response-bridge__inner {
  align-items: center;
  gap: 3rem;
}
.response-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.response-principles span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(0,201,80,0.25);
  border-radius: 999px;
  background: rgba(0,201,80,0.08);
  color: #12D965;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.response-page .info-card,
.response-page .service-card,
.response-risk-card,
.response-ladder {
  background: #171717;
  border-color: #303030;
}
.response-page .service-card {
  padding: 1.65rem;
}
.response-page .service-card p {
  font-size: 0.92rem;
  line-height: 1.68;
}
.response-page .section-header {
  margin-bottom: 1.5rem;
}
.response-page .section-header--center p {
  margin-top: 0.65rem;
}
.response-page .section-header + .service-grid {
  margin-top: 1.5rem !important;
}
.response-page .service-grid {
  gap: 1rem;
}
.response-page .service-card__icon[class*="service-card__icon--"] {
  width: 128px;
  height: 128px;
  margin-bottom: 1rem;
}
.response-page .service-card__icon[class*="service-card__icon--"] img {
  width: 128px;
  height: 128px;
}
.response-flow-visual {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-color: #303030;
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
}
.response-gaps-card {
  align-self: center;
}
.response-gaps-card .checklist {
  margin: 0;
}
.response-sample-output {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0,201,80,0.09), transparent 42%),
    #171717;
  border: 1px solid #303030;
  border-radius: var(--radius);
  padding: 1.75rem;
}
.response-sample-output h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  margin-bottom: 0.75rem;
}
.response-sample-output p {
  max-width: 460px;
}
.response-sample-card {
  display: grid;
  gap: 0.8rem;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.response-sample-card__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.response-sample-card__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.response-sample-card__row span {
  color: #13DE68;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.response-sample-card__row strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}
.response-risk-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.response-risk-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 100%;
}
.response-risk-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}
.response-risk-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.response-risk-card p {
  color: var(--response-body);
  font-size: 0.88rem;
  line-height: 1.62;
}
.response-ladder {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}
.response-ladder__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.response-ladder__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.response-ladder__item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}
.response-ladder__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.response-ladder__item p {
  color: var(--response-body);
  font-size: 0.9rem;
  line-height: 1.62;
}
.response-fit-grid {
  align-items: stretch;
}
.response-fit-card {
  padding-top: 1rem !important;
}
.response-fit-card__art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin: -0.35rem -0.35rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.response-fit-card__art img {
  width: min(100%, 330px);
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.32));
}

/* ── FORM ────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,201,80,0.4);
  box-shadow: 0 0 0 3px rgba(0,201,80,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--card); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9A9A9A; }

/* Estimator */
.estimator-hero {
  min-height: auto;
  padding: 7rem 0 3.25rem;
}
.estimator-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  gap: 4rem;
  align-items: center;
}
.estimator-hero__panel {
  background: rgba(16, 20, 18, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  max-width: 380px;
  justify-self: end;
}
.estimator-hero__panel div {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.7rem;
}
.estimator-hero__panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.estimator-hero__panel span {
  display: block;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.estimator-hero__panel strong {
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
  font-size: 0.95rem;
}
.estimator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 1.75rem;
  align-items: start;
}
.estimator-panel,
.estimate-card {
  background: linear-gradient(180deg, rgba(21, 26, 23, 0.98), rgba(14, 17, 16, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.estimator-panel__header {
  margin-bottom: 1.5rem;
}
.estimator-panel__header p {
  margin-top: 0.75rem;
  max-width: 680px;
  font-size: 0.95rem;
}
.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.estimator-control {
  display: grid;
  gap: 0.5rem;
}
.estimator-control span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}
.estimator-control input,
.estimator-control select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.82rem 0.9rem;
  color: var(--white);
  font: inherit;
  min-height: 46px;
}
.estimator-control input:focus,
.estimator-control select:focus {
  outline: none;
  border-color: rgba(0,201,80,0.48);
  box-shadow: 0 0 0 3px rgba(0,201,80,0.08);
}
.estimator-control select option {
  background: var(--card);
}
.estimator-fieldset {
  margin-top: 1.25rem;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.estimator-fieldset legend {
  padding: 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.estimator-fieldset label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--body);
  font-size: 0.94rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}
.estimator-fieldset input {
  accent-color: var(--green);
  margin-top: 0.15rem;
}
.estimator-fieldset strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.estimator-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.estimate-card {
  position: sticky;
  top: 6rem;
}
.estimate-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.estimate-card__top p {
  color: #A6A6A6;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.estimate-card h2 {
  color: var(--green);
  margin-bottom: 0.75rem;
}
.estimate-card p {
  font-size: 0.94rem;
}
.estimate-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.estimate-breakdown:empty {
  display: none;
}
.estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.55rem;
  font-size: 0.9rem;
}
.estimate-line span:first-child {
  color: var(--body);
}
.estimate-line span:last-child {
  color: var(--white);
  font-family: var(--font-mono);
  text-align: right;
}
.estimate-assumptions {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}
.estimate-assumptions h3 {
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}
.estimate-assumptions ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.7;
}
.estimate-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #A6A6A6;
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.estimate-cta {
  width: 100%;
  justify-content: center;
}

/* ── BLOG ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--green); }
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}
.blog-card__body { padding: 1.5rem; }
.blog-card__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-mono);
}
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-card__meta { font-size: 0.78rem; color: #A0A0A0; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.blog-card__title { font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card__title a { color: var(--white); text-decoration: none; }
.blog-card__title a:hover { color: var(--green); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--body); line-height: 1.7; margin-bottom: 1rem; }
.blog-card__link { font-size: 0.8rem; color: var(--green); text-decoration: none; font-weight: 600; }
.blog-card { padding: 1.5rem; }

/* Blog post article */
.blog-post { max-width: 720px; }
.blog-post__lead { font-size: 1.1rem; color: var(--white); line-height: 1.7; margin-bottom: 2rem; border-left: 3px solid var(--green); padding-left: 1.25rem; }
.blog-post h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 1rem; }
.blog-post h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin: 2rem 0 0.75rem; }
.blog-post p { color: var(--body); line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post ul, .blog-post ol { color: var(--body); line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.blog-post li { margin-bottom: 0.4rem; }
.blog-post strong { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--surface);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
  color: #B8B8B8;
}
.footer__contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contact a {
  font-size: 0.85rem;
  color: #B8B8B8;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--green); }
.footer__col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8E8E8E;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: #B8B8B8;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: #8E8E8E; }
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  font-size: 0.78rem;
  color: #8E8E8E;
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--white); }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.tag-pill {
  display: inline-block;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,80,0.2);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25em 0.8em;
  border-radius: 100px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__asset { display: none; }
  .response-hero__asset {
    right: -26vw;
    width: min(88vw, 760px);
    opacity: 0.3;
  }
  .pipeline__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .coverage-panel { grid-template-columns: 1fr; }
  .estimator-hero__grid { grid-template-columns: 1fr; }
  .estimator-shell { grid-template-columns: 1fr; }
  .estimate-card { position: static; }
  .response-risk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 3.5rem 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .service-grid,
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { gap: 2rem; }
  .home-services-preview .section-header,
  .about-experience-section .section-header {
    display: block;
  }
  .home-services-preview .section-header p,
  .about-experience-section .section-header p {
    margin-top: 0.55rem;
  }
  .coverage-panel__routes { grid-template-columns: 1fr; }
  .coverage-route { min-height: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .estimator-hero__panel { padding: 1rem; }
  .estimator-grid,
  .estimator-fieldset { grid-template-columns: 1fr; }
  .estimate-card__top { display: block; }
  .estimate-card__top p { text-align: left; margin-top: 0.35rem; }
  .response-section { padding: 3rem 0; }
  .response-hero {
    min-height: auto;
    padding: 6.5rem 0 4rem;
  }
  .response-hero__asset {
    display: none;
  }
  .response-bridge { padding: 2.5rem 0; }
  .response-sample-output {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .response-sample-card__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .response-risk-grid { grid-template-columns: 1fr; }
  .response-ladder__item { grid-template-columns: 62px 1fr; }
  .response-ladder__item img { width: 62px; height: 62px; }
  .response-fit-card__art {
    min-height: 180px;
  }
  .response-fit-card__art img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .three-col { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .nav, .cta-band, .footer { display: none; }
  body { background: white; color: #000; }
}
