/* ==========================================================================
   Colorado Coil Cleaning — Design System
   Modern commercial mechanical contractor + Colorado identity
   ========================================================================== */

:root {
  --navy: #061A2E;
  --navy-mid: #08223A;
  --navy-soft: #0C2D4A;
  --blue: #006CF0;
  --blue-bright: #008BFF;
  --blue-hover: #0056D6;
  --blue-soft: #3DA4FF;
  --blue-glow: rgba(0, 108, 240, 0.38);
  --blue-glow-strong: rgba(0, 139, 255, 0.55);
  --blue-tint: rgba(0, 108, 240, 0.1);
  --white: #FFFFFF;
  --off-white: #F5F7F9;
  --gray-100: #EEF1F4;
  --gray-200: #DCE2E8;
  --gray-300: #C5CED6;
  --gray-500: #6B7785;
  --charcoal: #17202A;
  --text: #17202A;
  --text-muted: #4A5562;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;

  --container: 1200px;
  --header-h: 78px;
  --radius: 2px;
  --transition: 0.2s ease;

  --shadow-sm: 0 1px 3px rgba(6, 26, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 26, 46, 0.12);
  --shadow-blue:
    0 0 0 1px rgba(0, 108, 240, 0.35),
    0 8px 24px rgba(0, 86, 214, 0.18),
    0 18px 40px rgba(6, 26, 46, 0.12);
  --shadow-blue-deep:
    0 0 0 1px rgba(61, 164, 255, 0.45),
    0 10px 28px rgba(0, 108, 240, 0.28),
    0 22px 48px rgba(6, 26, 46, 0.2);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 860px; }

/* Typography */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0;
}
.eyebrow--light { color: var(--blue-bright); }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: 0.04em; }
.accent { color: var(--blue-bright); }
.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 38rem;
}
.text-muted { color: var(--text-muted); }
.section-pad { padding: 5rem 0; }
.section-pad--sm { padding: 3.5rem 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(180deg, #1A8FFF 0%, var(--blue) 55%, #0050C8 100%);
  color: var(--white);
  border-color: #005AD8;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 6px 16px rgba(0, 108, 240, 0.38);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #3D9FFF 0%, var(--blue-hover) 60%, #0048B8 100%);
  border-color: var(--blue-hover);
  color: var(--white);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 8px 20px rgba(0, 139, 255, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--blue-hover); }
.btn--ghost::after { content: "→"; margin-left: 0.35rem; }
.btn--sm { padding: 0.65rem 1.1rem; font-size: 0.8125rem; }
.btn--block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 108, 240, 0.18);
  box-shadow: 0 1px 0 rgba(0, 108, 240, 0.06), 0 8px 24px rgba(0, 86, 214, 0.06);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.logo:hover { opacity: 0.92; }
.logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}
.logo--footer .logo__img {
  height: 72px;
  max-width: 260px;
  background: transparent;
  /* Soft white glow so dark navy wordmark reads on the navy footer */
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.75))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.nav a:hover,
.nav a.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 121;
  background: none;
  border: 1px solid var(--gray-200);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile sidebar drawer */
.mobile-nav-backdrop {
  display: none;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: min(19.5rem, 86vw);
  z-index: 119;
  flex-direction: column;
  padding: 0.65rem 1.15rem 1.1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 108, 240, 0.06), transparent 28%),
    var(--white);
  border-left: 1px solid rgba(0, 108, 240, 0.18);
  box-shadow: -16px 0 40px rgba(6, 26, 46, 0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-nav > a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-height: 0;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(0.92rem, 2.6vh, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 0.15rem;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-nav > a:last-of-type { border-bottom: none; }
.mobile-nav > a:hover,
.mobile-nav > a.is-active { color: var(--blue); }
.mobile-nav__cta {
  flex: 0 0 auto;
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-nav__cta a.btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  border-bottom: none;
}

/* Hero — matches approved mockup */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep technician + equipment clear on the right */
  object-position: 72% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(6, 26, 46, 0.97) 0%,
      rgba(6, 26, 46, 0.92) 28%,
      rgba(6, 26, 46, 0.72) 48%,
      rgba(6, 26, 46, 0.28) 68%,
      rgba(6, 26, 46, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 86, 214, 0.18) 0%,
      transparent 35%,
      rgba(0, 108, 240, 0.12) 100%
    );
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 38% at 50% -8%, rgba(255,255,255,0.32), transparent 58%),
    radial-gradient(ellipse 42% 34% at 0% 0%, rgba(210,235,255,0.38), transparent 62%),
    radial-gradient(ellipse 38% 32% at 100% 8%, rgba(180,220,255,0.28), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 16%),
    linear-gradient(0deg, rgba(160,210,255,0.1) 0%, transparent 14%);
  mix-blend-mode: screen;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 90px rgba(0, 139, 255, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding: 5.5rem 0 5rem;
  max-width: 620px;
}
.hero .eyebrow {
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 0.1em;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
}
.hero .accent {
  color: var(--blue-bright);
  display: block;
  margin-top: 0.2em;
  font-size: 0.72em;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(0, 139, 255, 0.45);
  animation: hero-accent-pulse 4.5s ease-in-out infinite;
}
.hero p {
  color: rgba(255,255,255,0.86);
  margin: 1.35rem 0 1.85rem;
  max-width: 30rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.65rem;
}
.hero__actions .btn {
  min-height: 48px;
  padding: 0.95rem 1.55rem;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.hero__phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.hero__phone:hover { color: var(--blue-bright); }

/* Hero atmosphere — glows, flakes, bubbles */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-fx__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
}
.hero-fx__glow--a {
  width: 26rem;
  height: 26rem;
  left: -10%;
  top: 8%;
  background: rgba(0, 139, 255, 0.32);
  animation: hero-glow-drift 16s ease-in-out infinite alternate;
}
.hero-fx__glow--b {
  width: 22rem;
  height: 22rem;
  right: -6%;
  bottom: 6%;
  background: rgba(61, 164, 255, 0.22);
  animation: hero-glow-drift 13s ease-in-out infinite alternate-reverse;
}
.hero-fx__glow--c {
  width: 16rem;
  height: 16rem;
  left: 42%;
  top: -8%;
  background: rgba(255, 255, 255, 0.12);
  animation: hero-glow-drift 11s ease-in-out infinite alternate;
}
.hero-fx__pulse {
  position: absolute;
  right: 18%;
  top: 38%;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 255, 0.35), transparent 68%);
  animation: hero-orb-pulse 5s ease-in-out infinite;
}
.hero-fx__flake,
.hero-fx__bubble {
  position: absolute;
  left: var(--x);
  will-change: transform, opacity;
}
.hero-fx__flake {
  top: -8%;
  color: rgba(255, 255, 255, 0.82);
  font-size: calc(11px * var(--s, 1));
  line-height: 1;
  text-shadow: 0 0 8px rgba(200, 230, 255, 0.8);
  animation: hero-flake-fall var(--dur, 12s) linear infinite;
  animation-delay: var(--d, 0s);
}
.hero-fx__flake::before { content: "❄"; }
.hero-fx__bubble {
  bottom: -8%;
  width: calc(11px * var(--s, 1));
  height: calc(11px * var(--s, 1));
  border-radius: 50%;
  border: 1px solid rgba(180, 220, 255, 0.55);
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.7), rgba(0, 139, 255, 0.12) 58%);
  box-shadow: 0 0 10px rgba(0, 139, 255, 0.28);
  animation: hero-bubble-rise var(--dur, 10s) ease-in infinite;
  animation-delay: var(--d, 0s);
}
@keyframes hero-glow-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate3d(6%, 8%, 0) scale(1.08); opacity: 1; }
}
@keyframes hero-orb-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.35; }
  50% { transform: scale(1.18); opacity: 0.75; }
}
@keyframes hero-accent-pulse {
  0%, 100% { text-shadow: 0 0 18px rgba(0, 139, 255, 0.3); }
  50% { text-shadow: 0 0 34px rgba(0, 139, 255, 0.7), 0 0 60px rgba(61, 164, 255, 0.28); }
}
@keyframes hero-flake-fall {
  0% { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  8% { opacity: 0.85; }
  100% { transform: translate3d(18px, 110vh, 0) rotate(220deg); opacity: 0; }
}
@keyframes hero-bubble-rise {
  0% { transform: translate3d(0, 8vh, 0) scale(0.7); opacity: 0; }
  12% { opacity: 0.8; }
  100% { transform: translate3d(-22px, -108vh, 0) scale(1.15); opacity: 0; }
}

/* Frost rim on photography */
.frost-frame {
  position: relative;
}
.service-card__img::before,
.page-hero__media::before,
.split > div:has(> img)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(230,245,255,0.42), transparent 58%),
    radial-gradient(ellipse 50% 38% at 100% 0%, rgba(200,230,255,0.28), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 14%),
    linear-gradient(90deg, rgba(210,235,255,0.12) 0%, transparent 10%, transparent 90%, rgba(210,235,255,0.1) 100%);
  mix-blend-mode: screen;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

/* Credibility bar directly under hero */
.hero-bar {
  position: relative;
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(0, 108, 240, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(0, 139, 255, 0.12), transparent 50%),
    var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid var(--blue-bright);
  padding: 1.75rem 0;
  box-shadow: 0 8px 24px rgba(0, 108, 240, 0.12);
}
.hero-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-bar__clone {
  display: none;
}
.hero-bar__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.5rem 1.35rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-bar__item:first-child { padding-left: 0; }
.hero-bar__item:last-child {
  border-right: none;
  padding-right: 0;
}
.hero-bar__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 1.75;
  margin-top: 0.15rem;
}
.hero-bar__item h3 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.hero-bar__item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  border-bottom: 3px solid var(--blue-bright);
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6,26,46,0.94) 0%, rgba(6,26,46,0.75) 55%, rgba(6,26,46,0.4) 100%),
    linear-gradient(180deg, rgba(0, 139, 255, 0.22) 0%, transparent 40%, rgba(0, 86, 214, 0.18) 100%);
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 139, 255, 0.22);
  pointer-events: none;
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 3;
  padding: 4rem 0 3rem;
  max-width: 720px;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.82);
  margin: 1rem 0 1.5rem;
  max-width: 36rem;
}

/* Audience split */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.audience-panel {
  padding: 3.5rem 2.5rem;
}
.audience-panel--light {
  background: linear-gradient(180deg, #F7FAFD 0%, #EEF5FB 100%);
  border-bottom: 1px solid rgba(0, 108, 240, 0.18);
}
.audience-panel--navy {
  /* Distinct from hero-bar navy so the blocks don't merge */
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(0, 139, 255, 0.28), transparent 50%),
    linear-gradient(160deg, #0B3D66 0%, #0A4A7A 55%, #0056D6 160%);
  color: var(--white);
  border-bottom: 1px solid #0050C8;
  box-shadow: inset 4px 0 0 var(--blue-bright);
}
.audience-panel h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.85rem;
}
.audience-panel--navy h2 { color: var(--white); }
.audience-panel p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.audience-panel--navy p { color: rgba(255,255,255,0.82); }
.audience-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.audience-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  padding: 0.4rem 0.65rem;
  background: var(--white);
}
.audience-panel--navy .audience-icon {
  background: rgba(6, 26, 46, 0.25);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.audience-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
}
.audience-panel--navy .audience-icon svg { stroke: var(--blue-bright); }
.audience-panel .container-inner {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.audience-panel--light .container-inner { margin-right: 2rem; }
.audience-panel--navy .container-inner { margin-left: 2rem; }

/* Experience */
.experience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.experience__copy h2 { margin-bottom: 0.2em; }
.experience__copy p { margin: 1.25rem 0 0; color: var(--text-muted); max-width: 32rem; }
.experience__visual {
  position: relative;
}
.experience__visual::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: linear-gradient(145deg, rgba(0, 108, 240, 0.35), rgba(0, 86, 214, 0.12));
  z-index: 0;
  pointer-events: none;
}
.experience__visual::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(0, 108, 240, 0.45);
  box-shadow: var(--shadow-blue-deep);
  z-index: 2;
  pointer-events: none;
}
.experience__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(0, 108, 240, 0.35);
}
.stat-card {
  position: absolute;
  left: -1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  background: var(--white);
  border: 1px solid rgba(0, 108, 240, 0.35);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-blue);
  min-width: 140px;
}
.stat-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.stat-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0.15rem 0 0.5rem;
}
.stat-card__sub {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-weight: 600;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 108, 240, 0.2);
  border-top: 1px solid rgba(0, 108, 240, 0.2);
  border-bottom: 1px solid rgba(0, 108, 240, 0.2);
  box-shadow: 0 8px 24px rgba(0, 108, 240, 0.06);
}
.pillar {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(0, 108, 240, 0.18);
  background: linear-gradient(180deg, rgba(0, 108, 240, 0.06), transparent 70%);
}
.pillar:last-child { border-right: none; }
.pillar__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
}
.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--navy);
}
.pillar p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Contractor feature */
.contractor-feature {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

/* Shared animated navy/blue glow band */
.glow-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0, 139, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 70%, rgba(0, 108, 240, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 45% at 92% 55%, rgba(0, 86, 214, 0.2), transparent 58%),
    linear-gradient(165deg, #041525 0%, #061A2E 42%, #082840 100%);
}
.glow-band::before,
.glow-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.glow-band::before {
  inset: -20% -10%;
  background:
    radial-gradient(circle 28rem at 30% 40%, rgba(0, 139, 255, 0.28), transparent 55%),
    radial-gradient(circle 22rem at 72% 65%, rgba(0, 108, 240, 0.22), transparent 50%);
  filter: blur(2px);
  animation: division-glow-drift 14s ease-in-out infinite alternate;
}
.glow-band::after {
  inset: 0;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(0, 139, 255, 0.08) 46%,
      rgba(61, 164, 255, 0.18) 50%,
      rgba(0, 139, 255, 0.08) 54%,
      transparent 62%,
      transparent 100%
    );
  background-size: 220% 100%;
  animation: division-sweep 9s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.glow-band > .container {
  position: relative;
  z-index: 1;
}
.glow-band h2,
.glow-band h3 {
  color: var(--white);
}
.glow-band p {
  color: rgba(255, 255, 255, 0.78);
}
.glow-band .accent {
  color: var(--blue-bright);
  text-shadow: 0 0 28px rgba(0, 139, 255, 0.45);
}
.glow-band h2 .accent {
  display: block;
  margin-top: 0.2em;
}
.glow-band--statement {
  text-align: center;
}
.glow-band--statement .eyebrow {
  display: flex;
  justify-content: center;
  width: 100%;
}
.glow-band--statement h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}
.glow-band--statement .accent {
  display: block;
  margin-top: 0.25em;
}
.glow-band--statement .glow-band__lead {
  color: rgba(255, 255, 255, 0.78);
  margin: 1.25rem auto 0;
  max-width: 36rem;
}
.glow-band--statement .lead,
.glow-band--statement .lead--light {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
}
.glow-band--mission {
  text-align: left;
}
.glow-band--mission > .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.glow-band--mission .glow-band__lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
}
.glow-band--mission .glow-band__tag {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

/* Nested glow panel (cards inside light sections) */
.glow-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(0, 139, 255, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(0, 108, 240, 0.2), transparent 50%),
    linear-gradient(160deg, #041525 0%, #061A2E 55%, #0A3558 100%);
  border: 1px solid rgba(0, 139, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 108, 240, 0.2),
    0 12px 28px rgba(6, 26, 46, 0.25);
}
.glow-panel::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(circle 18rem at 70% 30%, rgba(0, 139, 255, 0.22), transparent 55%);
  animation: division-glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.glow-panel > * {
  position: relative;
  z-index: 1;
}
.glow-panel h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}
.glow-panel p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
}

.contractor-feature--centered {
  text-align: center;
}
.contractor-feature--centered .eyebrow {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contractor-feature--centered h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 28ch;
}
.contractor-feature--centered .accent {
  display: block;
  margin-top: 0.15em;
}
.contractor-feature--centered .comparison {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contractor-feature--centered .comparison__col h3 {
  text-align: center;
}
.contractor-feature--centered .comparison__vs {
  text-align: center;
}
.glow-band .comparison__col {
  position: relative;
  background:
    linear-gradient(160deg, rgba(0, 108, 240, 0.16), rgba(6, 26, 46, 0.55)),
    rgba(4, 21, 37, 0.65);
  border-color: rgba(0, 139, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 108, 240, 0.15),
    0 0 32px rgba(0, 108, 240, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  animation: division-panel-pulse 6s ease-in-out infinite alternate;
}
.glow-band .comparison__col:nth-child(3) {
  animation-delay: -3s;
}
.glow-band .comparison__vs {
  text-shadow: 0 0 18px rgba(0, 139, 255, 0.65);
  animation: division-vs-pulse 3.5s ease-in-out infinite;
}
@keyframes division-glow-drift {
  0% { transform: translate3d(-3%, -2%, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(2%, 3%, 0) scale(1.06); opacity: 1; }
  100% { transform: translate3d(4%, -1%, 0) scale(1.03); opacity: 0.85; }
}
@keyframes division-sweep {
  0% { background-position: 120% 0; opacity: 0.35; }
  45% { opacity: 0.9; }
  100% { background-position: -40% 0; opacity: 0.4; }
}
@keyframes division-panel-pulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(0, 108, 240, 0.12),
      0 0 24px rgba(0, 108, 240, 0.12),
      0 12px 28px rgba(0, 0, 0, 0.25);
  }
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 1px rgba(0, 139, 255, 0.35),
      0 0 42px rgba(0, 139, 255, 0.28),
      0 14px 32px rgba(0, 0, 0, 0.28);
  }
}
@keyframes division-vs-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .glow-band::before,
  .glow-band::after,
  .glow-panel::before,
  .glow-band .comparison__col,
  .glow-band .comparison__vs,
  .service-intro::after,
  .hero-fx__glow,
  .hero-fx__pulse,
  .hero-fx__flake,
  .hero-fx__bubble,
  .hero .accent {
    animation: none;
  }
  .hero-fx { display: none; }
  .mobile-nav,
  .mobile-nav-backdrop,
  .nav-toggle span {
    transition: none;
  }
}
.contractor-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contractor-feature h2 {
  color: var(--white);
  margin-bottom: 2rem;
}
.contractor-feature .accent { color: var(--blue-bright); }
.contractor-feature__media {
  position: relative;
  min-height: 420px;
}
.contractor-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.contractor-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.comparison__col {
  background: rgba(0, 108, 240, 0.08);
  border: 1px solid rgba(61, 164, 255, 0.28);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 20px rgba(0, 86, 214, 0.12);
}
.comparison__col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.comparison__vs {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  align-self: center;
  padding-top: 2rem;
}
.checklist li {
  position: relative;
  padding: 0.4rem 0.35rem 0.4rem 1.85rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.7rem;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
  transform: rotate(-45deg);
}
.checklist--dark li { color: var(--text-muted); }
.checklist--dark li::before { border-color: var(--blue); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  border: 1px solid rgba(0, 108, 240, 0.22);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 86, 214, 0.08);
}
.service-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.service-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #0C2D4A, #0056D6);
  position: relative;
}
.service-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 26, 46, 0.35) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 108, 240, 0.25);
  pointer-events: none;
  z-index: 1;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.02);
}
.service-card__body {
  padding: 1.25rem 1.25rem 1.35rem;
  border-top: 2px solid rgba(0, 108, 240, 0.25);
  background: linear-gradient(180deg, rgba(0, 108, 240, 0.04), transparent 60%);
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.service-card .btn--ghost { font-size: 0.8125rem; }

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #F5F7F9 0%, rgba(0, 108, 240, 0.1) 100%);
  border: 1px dashed rgba(0, 108, 240, 0.45);
  color: var(--gray-500);
  font-size: 0.8125rem;
  padding: 1.5rem;
  min-height: 160px;
  font-family: var(--font-body);
  box-shadow: inset 0 0 40px rgba(0, 108, 240, 0.06);
}
.img-placeholder--dark {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(0, 108, 240, 0.12));
  border-color: rgba(61, 164, 255, 0.4);
  color: rgba(255,255,255,0.55);
  box-shadow: inset 0 0 40px rgba(0, 108, 240, 0.1);
}

/* Commercial scale */
.scale-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.scale-section__nums {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}
.scale-section__nums span { color: var(--blue); }
.scale-section p { color: var(--text-muted); margin-bottom: 1rem; }
.scale-section__media {
  position: relative;
}
.scale-section__media::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: linear-gradient(160deg, rgba(61, 164, 255, 0.4), rgba(0, 86, 214, 0.15));
  z-index: 0;
}
.scale-section__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 108, 240, 0.4);
  box-shadow: var(--shadow-blue-deep);
}

/* Why / Process */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.why-list li {
  padding: 0.85rem 0.5rem 0.85rem 2.15rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  color: var(--charcoal);
  font-size: 1.0625rem;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1.15rem;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.process-flow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0.5rem 0 2.5rem;
  text-align: center;
}
.process-flow span { color: var(--blue); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  border-top: 2px solid var(--blue-bright);
  padding: 1.25rem 1rem 1rem 1.35rem;
  background: linear-gradient(180deg, rgba(0, 108, 240, 0.05), transparent 55%);
}
.process-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 18px rgba(0, 139, 255, 0.25);
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-right: 0.25rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-right: 0.25rem;
}

/* Professionalism / About preview */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split__media,
.split > div:has(> img),
.split > div:has(> .img-placeholder) {
  position: relative;
}
.split > div > img {
  border: 1px solid rgba(0, 108, 240, 0.35);
  box-shadow: var(--shadow-blue);
}
.split--reverse .split__media { order: 2; }
.feature-list li {
  padding: 0.65rem 0.5rem 0.65rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  color: var(--text-muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1rem;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.band {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 108, 240, 0.07), transparent 55%),
    linear-gradient(180deg, #F5F7F9 0%, #EEF5FB 100%);
  border-top: 1px solid rgba(0, 108, 240, 0.15);
  border-bottom: 1px solid rgba(0, 108, 240, 0.15);
}
.band--navy {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.band--navy h2, .band--navy h3 { color: var(--white); }
.band--navy p { color: rgba(255,255,255,0.75); }

.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.glow-band.cta-band h2 {
  text-shadow: 0 0 40px rgba(0, 139, 255, 0.25);
}
.cta-band--light {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 108, 240, 0.08), transparent 55%),
    var(--off-white);
  border-top: 1px solid var(--gray-200);
  color: var(--text);
}
.cta-band--light h2 { color: var(--navy); }
.cta-band--light p { color: var(--text-muted); }

/* Content pages */
.content-section { padding: 4rem 0; }
.content-section + .content-section { padding-top: 0; }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; text-transform: uppercase; }
.prose p { margin-bottom: 1rem; color: var(--text-muted); }
.prose ul { margin: 1rem 0 1.5rem; }
.prose li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--text-muted);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--blue);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0;
}
.city-grid li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9375rem;
  color: var(--navy);
}
.city-grid li::before { display: none; padding: 0; }

.faq-list { margin-top: 2rem; }
.faq-item {
  border: 1px solid rgba(0, 108, 240, 0.22);
  margin-bottom: 0.65rem;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0, 86, 214, 0.06);
}
.faq-item[open] {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-blue);
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--blue-hover); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--blue);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.use-case {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(0, 108, 240, 0.38);
  border-left: 3px solid var(--blue-bright);
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(0, 108, 240, 0.14) 0%, rgba(255,255,255,0.95) 42%),
    linear-gradient(180deg, #fff, #F2F7FF);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 6px 18px rgba(0, 108, 240, 0.12);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.use-case::before,
.use-case::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
/* Shared partial-outline stroke — dark navy like the logo wordmark */
.use-case::before {
  border-color: #0C2D4A;
  border-style: solid;
  border-width: 0;
}
.use-case::after {
  border-color: #08223A;
  border-style: solid;
  border-width: 0;
}

/* Varied partial outlines — logo-style broken frame accents */
.use-case:nth-child(6n + 1)::before {
  top: -3px;
  left: -3px;
  width: 42%;
  height: 38%;
  border-top-width: 3px;
  border-left-width: 3px;
}
.use-case:nth-child(6n + 1)::after {
  right: -3px;
  bottom: -3px;
  width: 36%;
  height: 32%;
  border-right-width: 3px;
  border-bottom-width: 3px;
}

.use-case:nth-child(6n + 2)::before {
  top: -3px;
  right: -3px;
  width: 48%;
  height: 28%;
  border-top-width: 3px;
  border-right-width: 3px;
}
.use-case:nth-child(6n + 2)::after {
  left: -3px;
  bottom: -3px;
  width: 30%;
  height: 44%;
  border-left-width: 3px;
  border-bottom-width: 3px;
}

.use-case:nth-child(6n + 3)::before {
  top: -3px;
  left: 18%;
  width: 55%;
  height: 3px;
  background: #0C2D4A;
}
.use-case:nth-child(6n + 3)::after {
  right: -3px;
  bottom: -3px;
  width: 40%;
  height: 50%;
  border-right-width: 3px;
  border-bottom-width: 3px;
}

.use-case:nth-child(6n + 4)::before {
  top: -3px;
  left: -3px;
  width: 34%;
  height: 55%;
  border-top-width: 3px;
  border-left-width: 3px;
}
.use-case:nth-child(6n + 4)::after {
  right: 12%;
  bottom: -3px;
  width: 50%;
  height: 3px;
  background: #08223A;
}

.use-case:nth-child(6n + 5)::before {
  top: -3px;
  right: -3px;
  width: 38%;
  height: 42%;
  border-top-width: 3px;
  border-right-width: 3px;
}
.use-case:nth-child(6n + 5)::after {
  left: -3px;
  bottom: 20%;
  width: 3px;
  height: 45%;
  background: #0C2D4A;
}

.use-case:nth-child(6n + 6)::before {
  top: 22%;
  left: -3px;
  width: 3px;
  height: 48%;
  background: #08223A;
}
.use-case:nth-child(6n + 6)::after {
  right: -3px;
  bottom: -3px;
  width: 46%;
  height: 36%;
  border-right-width: 3px;
  border-bottom-width: 3px;
}

.use-case:hover {
  border-color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(0, 139, 255, 0.25),
    0 12px 28px rgba(0, 108, 240, 0.22);
}
.use-case h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}
.use-case p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Audience word rotate (commercial page) */
.audience-section {
  text-align: center;
}
.audience-section__intro {
  text-align: center;
  margin-bottom: 2.25rem;
}
.audience-section__intro .eyebrow {
  justify-content: center;
}
.audience-section__intro h2 {
  margin-bottom: 0;
}
.audience-section__note {
  text-align: center;
  margin-top: 2rem;
}
.audience-section__note .lead {
  max-width: 720px;
  margin: 0 auto;
}
.audience-band {
  padding: 2.25rem 1.5rem;
  overflow: hidden;
  border-top: 2px solid rgba(0, 139, 255, 0.45);
  border-bottom: 2px solid rgba(0, 139, 255, 0.35);
}
.audience-rotate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.audience-rotate__word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 32px rgba(0, 139, 255, 0.45);
  pointer-events: none;
}
.audience-rotate__word.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .audience-rotate {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    min-height: 0;
  }
  .audience-rotate__word {
    position: static;
    grid-area: unset;
    opacity: 1;
    transform: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
  .audience-rotate__word:not(:last-child)::after {
    content: "·";
    margin-left: 1rem;
    color: var(--blue-bright);
    opacity: 0.75;
  }
}

/* Forms */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(0, 108, 240, 0.3);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(0, 108, 240, 0.04), transparent 40%),
    var(--white);
  box-shadow: var(--shadow-blue);
}
.form-alt-actions {
  margin-top: 2.5rem;
  justify-content: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: #c0392b;
}
.form-error {
  font-size: 0.8125rem;
  color: #c0392b;
  margin: 0;
}
.form-actions button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}
body.modal-open {
  overflow: hidden;
}
.form-hint {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}
.form-radio-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.25rem;
}
.form-radio-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  cursor: pointer;
}
.form-actions { margin-top: 1.5rem; }
.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.form-note.is-error {
  color: #c0392b;
}

/* Quote success modal */
.form-modal[hidden] {
  display: none !important;
}
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 46, 0.55);
  backdrop-filter: blur(4px);
}
.form-modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue-deep);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}
.form-modal.is-open .form-modal__panel {
  transform: translateY(0) scale(1);
}
.form-modal__panel--success {
  border: 1px solid rgba(34, 153, 84, 0.35);
  box-shadow:
    0 0 0 1px rgba(34, 153, 84, 0.2),
    0 12px 32px rgba(6, 26, 46, 0.18);
}
.form-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ecc71, #229954);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(34, 153, 84, 0.35);
}
.form-modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-modal__panel p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.form-modal__panel .btn {
  min-width: 8rem;
}

/* Reviews marquee (placeholder layout) */
.reviews-section {
  overflow: hidden;
}
.reviews-section__intro {
  text-align: center;
  margin-bottom: 1.75rem;
}
.reviews-section__intro h2 {
  margin-bottom: 0;
}
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviews-marquee 55s linear infinite;
}
.review-card {
  flex: 0 0 300px;
  width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.25rem;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.98), rgba(0, 108, 240, 0.05)),
    var(--white);
  border: 1px solid rgba(0, 108, 240, 0.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 8px 20px rgba(0, 108, 240, 0.1);
}
.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.review-card__who {
  min-width: 0;
}
.review-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.review-card__loc {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.review-card__source {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.review-card__source svg {
  width: 22px;
  height: 22px;
  display: block;
}
.review-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.7rem;
  color: #E6A700;
}
.review-card__stars svg {
  width: 14px;
  height: 14px;
  display: block;
}
.review-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 1.5rem;
  }
  .reviews-marquee__track .review-card:nth-child(n + 9) {
    display: none;
  }
  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 108, 240, 0.18), transparent 55%),
    var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(0, 139, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  margin-bottom: 0.85rem;
  display: inline-block;
}
.footer-brand p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9375rem;
  max-width: 22rem;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  font-size: 0.9375rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.footer-contact a { color: var(--blue-bright); }
.footer-contact strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--blue-bright); }
.footer-builtby {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.35rem;
  display: flex;
  justify-content: center;
}
.footer-builtby a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.75;
}
.footer-builtby a:hover {
  color: rgba(255,255,255,0.7);
  opacity: 1;
}
.footer-builtby span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.footer-builtby img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity var(--transition);
}
.footer-builtby a:hover img { opacity: 0.95; }

/* Legal document pages */
.page-hero--legal {
  min-height: 220px;
  background:
    radial-gradient(ellipse 70% 80% at 50% -20%, rgba(0, 139, 255, 0.28), transparent 55%),
    var(--navy);
}
.page-hero--legal .page-hero__overlay {
  background:
    linear-gradient(105deg, rgba(6,26,46,0.2) 0%, rgba(6,26,46,0.55) 100%),
    linear-gradient(180deg, rgba(0, 139, 255, 0.12) 0%, transparent 50%);
}
.page-hero--legal .page-hero__content { padding: 3.5rem 0 2.5rem; }
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc__intro {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.legal-doc h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.legal-doc h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-doc ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0;
}
.legal-doc li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
}
.legal-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--blue);
}
.legal-doc a { color: var(--blue); }
.legal-doc a:hover { color: var(--blue-hover); }
.legal-doc__disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-500);
}
/* Mobile call bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.65rem 1rem;
  gap: 0.65rem;
  box-shadow: 0 -4px 16px rgba(6,26,46,0.08);
}
.mobile-bar .btn { flex: 1; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.divider {
  height: 1px;
  background: var(--gray-200);
  border: none;
  margin: 0;
}

/* Coil brand accents */
.coil-mark {
  display: inline-block;
  width: 56px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.55rem;
}
.coil-mark--sm {
  width: 40px;
}
.eyebrow .coil-mark {
  margin-right: 0.65rem;
  margin-bottom: 0.1rem;
}
.coil-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
}
.coil-rule::before,
.coil-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 108, 240, 0.55), transparent);
}
.coil-rule img {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}
.coil-rule--light::before,
.coil-rule--light::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}
.coil-rule--wide {
  max-width: 40rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cta-band .coil-rule {
  margin-bottom: 1.25rem;
}
.footer-brand .coil-mark {
  display: block;
  width: 88px;
  margin: 0.85rem 0 0;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 118;
    background: rgba(6, 26, 46, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.38s ease, visibility 0.38s ease;
  }
  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }
  .header-actions .btn { display: none; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1),
  .pillar:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .hero-bar__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem 0; }
  .hero-bar__item {
    border-right: none;
    padding: 0.75rem 1rem;
  }
  .hero-bar__item:nth-child(odd) { padding-left: 0; }
  .hero-bar__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.15rem;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  body { padding-bottom: 72px; }
  .mobile-bar { display: flex; }
  body.nav-open .mobile-bar { display: none; }
  .logo__img { height: 44px; }

  .audience-split { grid-template-columns: 1fr; }
  .audience-panel { padding: 2.5rem 1.5rem; }
  .audience-panel--navy {
    box-shadow: inset 0 4px 0 var(--blue-bright);
  }
  .audience-panel--light .container-inner,
  .audience-panel--navy .container-inner {
    margin-left: 0;
    margin-right: 0;
  }

  .experience,
  .contractor-feature__grid,
  .scale-section,
  .why-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split--reverse .split__media { order: 0; }
  .contractor-feature__media { min-height: 240px; display: none; }
  .comparison {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.4rem;
  }
  .comparison__col {
    padding: 0.85rem 0.7rem;
  }
  .comparison__col h3 {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.45rem;
  }
  .comparison__vs {
    padding-top: 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
  .comparison .checklist li {
    font-size: 0.78rem;
    padding: 0.28rem 0.15rem 0.28rem 1.35rem;
  }
  .comparison .checklist li::before {
    left: 0.2rem;
    top: 0.58rem;
  }
  .contractor-feature h2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    align-items: end;
    font-size: 1.2rem;
    line-height: 1.12;
  }
  .contractor-feature h2 .accent {
    margin-top: 0;
  }
  .contractor-feature--centered h2 {
    max-width: none;
  }

  .stat-card {
    left: 1rem;
    bottom: 1rem;
  }
  .experience__visual img { height: 300px; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar {
    border-right: 1px solid rgba(0, 108, 240, 0.18);
    border-bottom: none;
    padding: 1.35rem 1rem;
  }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(1),
  .pillar:nth-child(2) {
    border-bottom: 1px solid rgba(0, 108, 240, 0.18);
  }
  .pillar:last-child { border-bottom: none; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .service-card__body {
    padding: 0.85rem 0.8rem 1rem;
  }
  .service-card h3 {
    font-size: 0.92rem;
  }
  .service-card p {
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .process-step {
    padding: 1rem 0.75rem 0.85rem 0.95rem;
  }
  .process-step h3 {
    font-size: 0.88rem;
  }
  .process-step p {
    font-size: 0.8rem;
  }
  .use-cases { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.65rem 1.15rem;
    padding-bottom: 1.75rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .logo--footer .logo__img {
    height: 56px;
    max-width: 200px;
  }
  .footer-brand p {
    max-width: none;
    margin: 0.6rem 0 0.75rem;
    font-size: 0.875rem;
  }
  .footer-brand .coil-mark {
    display: none;
  }
  .footer-col h4 {
    margin-bottom: 0.65rem;
  }
  .footer-col a {
    font-size: 0.875rem;
    padding: 0.2rem 0;
  }
  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .footer-contact ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1rem;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 1rem 0;
  }
  .footer-legal {
    justify-content: center;
  }
  .city-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; }
  .hero__content { padding: 3.5rem 0 3rem; }
  .hero__media img { object-position: 65% center; }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 26, 46, 0.88) 0%,
      rgba(6, 26, 46, 0.78) 45%,
      rgba(6, 26, 46, 0.82) 100%
    );
  }
  .hero-bar {
    overflow: hidden;
    padding: 1.2rem 0;
  }
  .hero-bar__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: hero-bar-marquee 32s linear infinite;
  }
  .hero-bar .container,
  .hero-bar__grid,
  .hero-bar__clone {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
    grid-template-columns: none;
  }
  .hero-bar__clone {
    display: flex;
  }
  .hero-bar__item,
  .hero-bar__item:first-child,
  .hero-bar__item:last-child,
  .hero-bar__item:nth-child(odd),
  .hero-bar__item:nth-child(-n+2) {
    flex: 0 0 auto;
    width: min(17.5rem, 78vw);
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
    padding: 0.15rem 1.35rem;
  }
  @keyframes hero-bar-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bar__track {
      animation: none;
      width: 100%;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .hero-bar .container,
    .hero-bar__grid {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 1.5rem;
      flex-wrap: wrap;
    }
    .hero-bar__clone {
      display: none;
    }
    .hero-bar__item,
    .hero-bar__item:first-child,
    .hero-bar__item:last-child,
    .hero-bar__item:nth-child(odd),
    .hero-bar__item:nth-child(-n+2) {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.85rem 0;
    }
    .hero-bar__item:last-child { border-bottom: none; }
  }
  .page-hero { min-height: 300px; }
  .section-pad { padding: 3.5rem 0; }
}
