/* ================================================================
   WeldLab Roofing — Premium Design System
   Brand: Deep Charcoal / White / WeldLab Blue / Light Gray
   Mobile-first, Hostinger-ready
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
  --deep-charcoal: #2c2c2c;
  --charcoal-dark: #1a1a1a;
  --charcoal-mid: #3a3a3a;
  --white:        #FFFFFF;
  --weldlab-blue: #0056b3;
  --blue-dark:    #004080;
  --blue-light:   rgba(0, 86, 179, 0.1);
  --light-gray:   #f8f9fa;
  --body-bg:      #F5F7FA;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-headings: #111827;
  --card-bg:      #FFFFFF;
  --border-color: #D1D5DB;
  --gray-600:     #6c757d;
  --gray-400:     #adb5bd;
  --gray-200:     #e9ecef;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Sans', 'Inter', sans-serif;

  --radius-xs:  3px;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.10);
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.28);
  --glow-blue:  0 0 24px rgba(0,86,179,0.20);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1.0);

  --nav-h: 96px;
  --container: 1240px;
  --container-sm: 860px;

  /* Extended color system — required by component classes */
  --black:        #080808;
  --near-black:   #111111;
  --dark:         #1b1b1b;
  --dark-card:    #1e2127;
  --off-white:    #f5f7fa;
  --gray-700:     #495057;
  --gray-800:     #343a40;
  --yellow:       #F5C518;
  --yellow-pale:  rgba(245, 197, 24, 0.09);
  --yellow-dark:  #D4A017;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--sm {
  max-width: var(--container-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-blue    { color: var(--weldlab-blue); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--text-secondary); }
.text-center  { text-align: center; }

/* ─── Typography Scale ───────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-headings);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-headings);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-headings);
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-headings);
}

.subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.btn--primary {
  background: var(--weldlab-blue);
  color: var(--white);
  border: 2px solid var(--weldlab-blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.30);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-700);
}
.btn--outline-dark:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--weldlab-blue);
  border: 2px solid transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { gap: 12px; }

.btn--lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── Badge / Pill ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge--blue {
  background: var(--blue-light);
  color: var(--weldlab-blue);
  border: 1px solid rgba(0,86,179,0.25);
}

.badge--white {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

.badge--dark {
  background: var(--dark-card);
  color: var(--gray-200);
  border: 1px solid var(--gray-700);
}

/* ─── Section Spacing ────────────────────────────────────────── */
.section {
  padding-block: clamp(48px, 7vw, 88px);
}

.section--sm {
  padding-block: clamp(28px, 5vw, 52px);
}

.section--dark { background: var(--black); color: var(--white); }
.section--near-black { background: var(--near-black); color: var(--white); }
.section--off-white { background: var(--off-white); }
.section--white { background: var(--white); }
.section--blue { background: var(--weldlab-blue); color: var(--white); }

/* ─── Section Label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--weldlab-blue);
  flex-shrink: 0;
}

.section-label span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--weldlab-blue);
}

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-block: 20px;
}

.divider--center { margin-inline: auto; }

/* ─── ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--deep-charcoal);
  border-bottom: 1px solid var(--charcoal-mid);
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.50);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.nav__logo-image {
  height: 68px;
  width: auto;
  display: block;
}

.footer__logo-image {
  height: 52px;
  width: auto;
  display: block;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--weldlab-blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: var(--gray-800);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav__dropdown-toggle:hover { color: var(--white); background: var(--gray-800); }

.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--dark);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-lg);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.15s var(--ease);
}

.nav__dropdown-item:hover {
  color: var(--white);
  background: var(--gray-800);
}

.nav__dropdown-item-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow-pale);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 0.8rem;
}

/* Nav CTA */
.nav__cta {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--weldlab-blue); }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}

.nav__hamburger:hover { background: var(--gray-800); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--near-black);
  border-bottom: 1px solid var(--gray-800);
  padding: 20px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s var(--ease);
  z-index: 999;
}

.nav__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-200);
  border-bottom: 1px solid var(--gray-800);
  transition: color 0.2s;
}

.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--weldlab-blue); }

.nav__mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Desktop breakpoints */
@media (min-width: 768px) {
  .nav__cta { display: flex; }
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ─── ═══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(245,197,24,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--weldlab-blue), transparent);
  opacity: 0.3;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,86,179,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  padding-block: clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__badge {
  margin-bottom: 28px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--weldlab-blue);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 10px;
}

.hero__headline-accent {
  color: var(--weldlab-blue);
  display: block;
}

.hero__subline {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  line-height: 1.65;
  max-width: 580px;
  margin-top: 20px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  padding-inline: 24px;
  border-right: 1px solid var(--gray-800);
}

.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(245,197,24,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 80px));
  padding-bottom: clamp(48px, 7vw, 80px);
  color: var(--white);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.4), transparent);
}

.page-hero__badge { margin-bottom: 20px; }

.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 760px;
}

.page-hero__headline em {
  font-style: normal;
  color: var(--weldlab-blue);
}

.page-hero__subline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 32px;
}

/* ─── ═══════════════════════════════════════════════════════════
   TICKER / SERVICE AREAS STRIP
   ═══════════════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--weldlab-blue);
  padding-block: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 24s linear infinite;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-item::after {
  content: '◆';
  font-size: 0.55rem;
  opacity: 0.5;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ═══════════════════════════════════════════════════════════
   PROBLEM AWARE SECTION
   ═══════════════════════════════════════════════════════════ */
.problems {
  background: var(--near-black);
}

.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-800);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.problem-card {
  background: var(--dark-card);
  padding: 32px;
  transition: background 0.2s;
}

.problem-card:hover {
  background: var(--gray-800);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border: 1px solid rgba(0,86,179,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--weldlab-blue);
}

.problem-card__q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card__a {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.6;
}

/* ─── ═══════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════ */
.services__header {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--weldlab-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: rgba(0,86,179,0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--dark {
  background: var(--dark-card);
  border-color: var(--gray-800);
  color: var(--white);
}

.service-card--dark:hover {
  border-color: rgba(0,86,179,0.4);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border: 1px solid rgba(0,86,179,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--weldlab-blue);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-card--dark .service-card__desc { color: var(--white); }

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.845rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.service-card--dark .service-card__list li { color: var(--gray-400); }

.service-card__list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3' fill='%23F5C518'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 20px;
  transition: gap 0.2s var(--ease);
}

.service-card__link:hover { gap: 10px; }

/* ─── ═══════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════ */
.process {
  background: var(--black);
  color: var(--white);
}

.process__header {
  margin-bottom: clamp(28px, 5vw, 48px);
  max-width: 600px;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--yellow), rgba(245,197,24,0.1));
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step__num {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,197,24,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.step__content {}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 14px;
  line-height: 1.2;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.step__list li {
  font-size: 0.845rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.step__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ─── ═══════════════════════════════════════════════════════════
   TRUST / WHY SECTION
   ═══════════════════════════════════════════════════════════ */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.trust-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.trust-point__icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-pale);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}

.trust-point__body {}

.trust-point__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-point__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── ═══════════════════════════════════════════════════════════
   TESTIMONIAL / SOCIAL PROOF
   ═══════════════════════════════════════════════════════════ */
.proof-bar {
  background: var(--off-white);
  padding-block: clamp(28px, 4vw, 48px);
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.proof-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 4px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(245,197,24,0.14);
  line-height: 1;
  pointer-events: none;
}

.proof-card:hover {
  border-left-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.proof-card__stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 14px;
}

.proof-card__text {
  font-size: 0.975rem;
  color: #374151;
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.proof-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.proof-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.proof-card__role {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ─── ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--yellow);
  color: var(--black);
  padding-block: clamp(48px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}

.cta-band::before { top: -200px; left: -100px; }
.cta-band::after  { bottom: -200px; right: -100px; }

.cta-band__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}

.cta-band__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-band__sub {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn--black {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn--black:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--outline-black {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0,0,0,0.35);
}
.btn--outline-black:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.07);
}

/* ─── ═══════════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════════ */
.areas__intro {
  max-width: 560px;
  margin-bottom: 44px;
}

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

.area-tag {
  padding: 8px 18px;
  background: var(--dark-card);
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  transition: all 0.2s var(--ease);
}

.area-tag:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-pale);
}

/* ─── ═══════════════════════════════════════════════════════════
   SPECS / FEATURES TABLE
   ═══════════════════════════════════════════════════════════ */
.specs {
  background: var(--off-white);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid #E0E0DA;
}

.spec-table th {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
}

.spec-table tr:last-child td { border-bottom: none; }

.spec-table td:first-child { font-weight: 600; color: var(--dark); }

.spec-check {
  color: var(--yellow);
  font-size: 1.1rem;
}

.spec-x {
  color: var(--gray-400);
}

/* ─── ═══════════════════════════════════════════════════════════
   TWO-COLUMN SPLIT
   ═══════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split__visual {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__placeholder {
  text-align: center;
  color: var(--gray-600);
  padding: 24px;
}

.split__placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--yellow);
  opacity: 0.6;
}

.split__content {}

.split__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.split__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.split__list-item-dot {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--black);
}

.split__list-item-text {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.split__list-item-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

/* ─── ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-pale);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 1rem;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-info__value a { transition: color 0.2s; }
.contact-info__value a:hover { color: var(--yellow-dark); }

/* Form */
.form {
  background: var(--white);
  border: 1px solid #E8E8E4;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.form--dark {
  background: var(--dark-card);
  border-color: var(--gray-800);
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form--dark .form__title { color: var(--white); }

.form__subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.55;
}

.form--dark .form__subtitle { color: var(--gray-400); }

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.form--dark .form__label { color: var(--gray-400); }

.form__input,
.form__select,
.form__textarea {
  padding: 12px 14px;
  border: 1.5px solid #D8D8D4;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #e74c3c;
}

.form--dark .form__input,
.form--dark .form__select,
.form--dark .form__textarea {
  background: var(--gray-800);
  border-color: var(--gray-700);
  color: var(--white);
}

.form--dark .form__input:focus,
.form--dark .form__select:focus,
.form--dark .form__textarea:focus {
  border-color: var(--yellow);
}

.form__textarea { resize: vertical; min-height: 110px; }

.form__select { appearance: none; cursor: pointer; }

.form__error {
  font-size: 0.775rem;
  color: #e74c3c;
  margin-top: 2px;
  display: none;
}

.form__error.visible { display: block; }

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.form__success.visible { display: block; }

.form__success-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--black);
}

/* ─── ═══════════════════════════════════════════════════════════
   ICON GRID (small feature icons row)
   ═══════════════════════════════════════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.icon-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.icon-tile:hover { border-color: rgba(245,197,24,0.3); }

.icon-tile__icon {
  color: var(--yellow);
  width: 32px;
  height: 32px;
}

.icon-tile__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.icon-tile__desc {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.55;
}

/* ─── ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--near-black);
  border-top: 1px solid var(--gray-800);
  color: var(--gray-400);
  padding-block: clamp(48px, 7vw, 80px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {}

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

.footer__logo-mark {
  display: flex;
  align-items: center;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__column-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--yellow); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer__contact-item a { transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--yellow); }

.footer__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer__area-tag {
  font-size: 0.75rem;
  color: var(--gray-400);
  padding: 3px 10px;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  transition: all 0.2s;
}

.footer__area-tag:hover {
  color: var(--yellow);
  border-color: rgba(245,197,24,0.4);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--gray-600);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--gray-400); }

/* ─── ═══════════════════════════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid var(--gray-700);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 990;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.mobile-cta-bar .btn {
  justify-content: center;
  padding: 13px 10px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

/* Offset body for mobile bar */
@media (max-width: 767px) {
  body { padding-bottom: 76px; }
}

/* ─── ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ─── ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 640px
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero__stats {
    flex-wrap: nowrap;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ─── Tablet 768px ────────────────────────────────────────────── */
@media (min-width: 768px) {
  .process__steps::before { left: 32px; }

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

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

  .proof-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Desktop 1024px ──────────────────────────────────────────── */
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .problems__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .process__steps::before {
    top: 28px;
    left: 0; right: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--yellow), rgba(245,197,24,0.1));
  }

  .step {
    grid-template-columns: 1fr;
    grid-template-rows: 56px 1fr;
    padding-bottom: 0;
    padding-inline: 20px;
    text-align: center;
    align-items: center;
  }

  .step__num {
    margin-inline: auto;
  }

  .step__title { margin-top: 24px; }

  .step__list {
    text-align: left;
    display: inline-block;
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
  }

  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── Wide 1280px ─────────────────────────────────────────────── */
@media (min-width: 1280px) {
  .container { padding-inline: 32px; }
}

/* ─── ═══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════ */
.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}

.value-card {
  padding: 28px 24px;
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
  transition: border-color 0.2s;
}

.value-card:hover {
  border-left-color: var(--yellow-dark);
  background: var(--gray-800);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── COMPARISON TABLE ─────────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-800);
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--dark-card);
}

.compare-table th {
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-800);
  text-align: left;
}

.compare-table th:nth-child(2) { color: var(--yellow); }

.compare-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-800);
  color: var(--gray-400);
}

.compare-table td:first-child { font-weight: 600; color: var(--gray-200); }
.compare-table td:nth-child(2) { color: var(--white); }
.compare-table tr:last-child td { border-bottom: none; }

.check-yes { color: var(--yellow); font-weight: 700; }
.check-no  { color: var(--gray-700); }

/* ─── ═══════════════════════════════════════════════════════════
   MISC UTILITIES
   ═══════════════════════════════════════════════════════════ */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

.max-640 { max-width: 640px; }
.max-720 { max-width: 720px; }

/* ─── Real photography — hero + page-hero backgrounds ────────── */
.hero__photo,
.page-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__photo::after,
.page-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,10,0.80);
}
.hero__photo img,
.page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero .container,
.page-hero .container { position: relative; z-index: 2; }

/* ─── Split panel real image ──────────────────────────────────── */
.split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Yellow underline emphasis */
.u-yellow {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

/* ─── ═══════════════════════════════════════════════════════════
   AUDIT UPGRADES — v2
   ═══════════════════════════════════════════════════════════ */

/* ─── Accessibility: focus-visible ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker-inner { animation: none; }
}

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  padding-block: 13px;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  justify-content: center;
  align-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.trust-bar__item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

/* ─── Stat Callout ───────────────────────────────────────────── */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-800);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.stat-callout__item {
  background: var(--dark-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}

.stat-callout__item:hover { background: var(--gray-800); }

.stat-callout__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-callout__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  line-height: 1.4;
}

.stat-callout__sub {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-top: 2px;
}

@media (min-width: 640px) {
  .stat-callout { grid-template-columns: repeat(4, 1fr); }
}

/* ─── FAQ Accordion (native details/summary) ─────────────────── */
.faq-section { background: var(--near-black); }

.faq { margin-top: 0; }

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

.faq-item:first-child { border-top: 1px solid var(--gray-800); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  list-style: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--yellow); }

.faq-item summary::after {
  content: '+';
  width: 24px;
  height: 24px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.2s;
  line-height: 1;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
  background: var(--yellow-pale);
}

.faq-item[open] summary { color: var(--yellow); }

.faq-item__answer {
  padding-bottom: 24px;
  color: var(--gray-400);
  line-height: 1.72;
  font-size: 0.925rem;
  max-width: 680px;
}

.faq-item__answer strong { color: var(--gray-200); }
.faq-item__answer a { color: var(--yellow); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.faq-item__answer a:hover { text-decoration-color: var(--yellow); }

/* ─── Deliverables Callout ───────────────────────────────────── */
.deliverables {
  background: var(--yellow-pale);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}

.deliverables__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deliverables__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 20px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.deliverables__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.deliverables__item::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (min-width: 640px) {
  .deliverables__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── "What We Don't Do" / Constraint List ──────────────────── */
.constraint-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.constraint-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: var(--dark-card);
  border-bottom: 1px solid var(--gray-800);
  transition: background 0.2s;
}

.constraint-item:last-child { border-bottom: none; }
.constraint-item:hover { background: var(--gray-800); }

.constraint-item__icon {
  width: 28px;
  height: 28px;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}

.constraint-item__text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.constraint-item__text strong {
  display: block;
  font-weight: 700;
  color: var(--gray-200);
  margin-bottom: 3px;
  font-size: 0.925rem;
}

/* ─── HOA Checklist ──────────────────────────────────────────── */
.board-checklist {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 36px;
}

.board-checklist__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-800);
}

.board-checklist__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.board-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.board-checklist__check {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.board-checklist__check svg {
  width: 10px;
  height: 10px;
  stroke: var(--black);
  stroke-width: 3;
}

@media (min-width: 640px) {
  .board-checklist__items { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Sticky desktop side CTA ────────────────────────────────── */
.sticky-side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(100%);
  background: var(--yellow);
  color: var(--black);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 18px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  z-index: 950;
  transition: transform 0.4s var(--ease), box-shadow 0.2s;
  cursor: pointer;
  display: none;
  text-decoration: none;
}

.sticky-side-cta:hover {
  box-shadow: -4px 0 20px rgba(245,197,24,0.35);
}

.sticky-side-cta.visible {
  transform: translateY(-50%) translateX(0);
}

@media (min-width: 1024px) {
  .sticky-side-cta { display: block; }
}

/* ─── Mobile hero: tighter bottom padding ────────────────────── */
@media (max-width: 639px) {
  .hero__inner { padding-block: 48px 36px; }
  .hero__stats { gap: 0; }
  .hero__stat { padding-inline: 14px; }
  .hero__stat:first-child { padding-left: 0; }
  .hero { min-height: 95svh; }
}

/* ─── Improved page-hero mobile ──────────────────────────────── */
@media (max-width: 639px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 40px;
  }
}

/* ─── Form glass refinement ──────────────────────────────────── */
.form {
  box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
}

/* ─── CTA band gradient upgrade ──────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #F5C518 0%, #F0BC10 60%, #E8B00C 100%);
}

/* ─── Micro-detail: yellow left border on testimonial cards ──── */
.proof-card {
  border-left: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.proof-card:hover {
  border-left-color: var(--yellow);
  box-shadow: var(--shadow);
}

/* ─── Number accent for process steps ────────────────────────── */
.step__timing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ─── Inline text callout (pull-quote style) ─────────────────── */
.callout-text {
  border-left: 3px solid var(--yellow);
  padding: 12px 18px;
  background: var(--yellow-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.925rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-block: 24px;
}

.callout-text strong { color: var(--white); }

/* ─── Trust row (icon + label inline strip) ──────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-800);
  margin-top: 24px;
}

.trust-row__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gray-400);
}

.trust-row__item svg { color: var(--yellow); flex-shrink: 0; }

/* ─── Compare table: mobile horizontal scroll hint ───────────── */
@media (max-width: 639px) {
  .compare-table-wrap::after {
    content: 'Scroll →';
    display: block;
    font-size: 0.72rem;
    color: var(--gray-600);
    text-align: right;
    padding-top: 6px;
  }
}

/* ─── Section headline with yellow first word ────────────────── */
.headline-accent-first > span:first-child { color: var(--yellow); }

/* ─── ═══════════════════════════════════════════════════════════
   FORCED READABILITY OVERRIDES — LIGHT SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* Light sections: force dark text */
.section--white,
.section--off-white,
.section--sm {
  color: #1F2937 !important;
}

/* Headings in light sections */
.section--white h1, .section--white h2, .section--white h3, .section--white h4, .section--white h5, .section--white h6,
.section--off-white h1, .section--off-white h2, .section--off-white h3, .section--off-white h4, .section--off-white h5, .section--off-white h6,
.section--sm h1, .section--sm h2, .section--sm h3, .section--sm h4, .section--sm h5, .section--sm h6 {
  color: #111827 !important;
}

/* Paragraphs and text elements in light sections */
.section--white p, .section--white .subhead, .section--white .service-card__desc, .section--white .trust-point__desc, .section--white .proof-card__text, .section--white .proof-card__author, .section--white .area-tag,
.section--off-white p, .section--off-white .subhead, .section--off-white .service-card__desc, .section--off-white .trust-point__desc, .section--off-white .proof-card__text, .section--off-white .proof-card__author, .section--off-white .area-tag,
.section--sm p, .section--sm .subhead, .section--sm .service-card__desc, .section--sm .trust-point__desc, .section--sm .proof-card__text, .section--sm .proof-card__author, .section--sm .area-tag {
  color: #374151 !important;
}

/* Additional text elements */
.section--white .display-xl, .section--white .display-lg, .section--white .display-md, .section--white .headline,
.section--off-white .display-xl, .section--off-white .display-lg, .section--off-white .display-md, .section--off-white .headline,
.section--sm .display-xl, .section--sm .display-lg, .section--sm .display-md, .section--sm .headline {
  color: #111827 !important;
}

/* Override any inline styles */
.section--white [style*="color"], .section--off-white [style*="color"], .section--sm [style*="color"] {
  color: #1F2937 !important;
}

.section--white [style*="color"] h1, .section--white [style*="color"] h2, .section--white [style*="color"] h3,
.section--off-white [style*="color"] h1, .section--off-white [style*="color"] h2, .section--off-white [style*="color"] h3,
.section--sm [style*="color"] h1, .section--sm [style*="color"] h2, .section--sm [style*="color"] h3 {
  color: #111827 !important;
}
/* ─── Targeted color safety — light sections only ────────────── */
/* These replace the broad-brush overrides that were breaking
   dark sections (hero, process, FAQ, footer, testimonials).    */

/* Ensure cards in light sections have dark text */
.section--white .service-card__title,
.section--off-white .service-card__title {
  color: var(--text-headings);
}

/* Proof bar is off-white: force readable text on proof cards */
.proof-bar .proof-card__text    { color: #374151; }
.proof-bar .proof-card__name    { color: #111827; }
.proof-bar .proof-card__role    { color: #6b7280; }

.faq-section { color: var(--white); }

/* Nav always white text — already set but confirmed here */
.nav { color: var(--white); }

/* ─── ═══════════════════════════════════════════════════════════
   VISUAL POLISH — v3
   Navbar premium, hero, process cards, testimonials, spacing
   ═══════════════════════════════════════════════════════════ */

/* Badge: yellow variant used in hero and page heroes */
.badge--yellow {
  background: rgba(245, 197, 24, 0.12);
  color: rgba(245, 197, 24, 0.92);
  border: 1px solid rgba(245, 197, 24, 0.28);
}

/* Nav: extra left breathing room on wide screens */
@media (min-width: 1280px) {
  .nav .container { padding-inline-start: 40px; }
}

/* Nav: taller feel — logo gap tightened, logo text scales with size */
.nav__logo { gap: 12px; }

/* Process steps — desktop card treatment */
@media (min-width: 1024px) {
  .process__steps {
    gap: 16px;
    align-items: start;
  }

  .process__steps::before {
    top: 27px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--yellow) 0%,
      rgba(245,197,24,0.55) 40%,
      rgba(245,197,24,0.20) 80%,
      transparent 100%
    );
    opacity: 0.7;
    z-index: 0;
  }

  .step {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 28px 16px 24px;
    z-index: 1;
    transition: all 0.28s var(--ease);
  }

  .step:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(245,197,24,0.22);
    transform: translateY(-4px);
  }

  .step__num { margin-inline: auto; }

  .step__title { margin-top: 20px; }
}

/* Process — mobile vertical connector upgrade */
@media (max-width: 1023px) {
  .process__steps::before {
    background: linear-gradient(to bottom, var(--yellow), rgba(245,197,24,0.15));
    width: 2px;
  }
}

/* Testimonials — section header spacing */
.proof-bar .section-label { margin-bottom: 12px; }

/* Service card: tighter internal spacing */
.service-card {
  padding: 28px 24px;
}

/* CTA band: tighten padding */
.cta-band {
  padding-block: clamp(40px, 6vw, 64px);
}

/* Footer: tighten top padding */
.footer {
  padding-block: clamp(40px, 6vw, 64px);
}

/* Page hero: tighten inner vertical padding */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(36px, 5vw, 60px));
  padding-bottom: clamp(36px, 5vw, 60px);
}

/* Mobile hero tightening */
@media (max-width: 639px) {
  .hero__inner { padding-block: 40px 28px; }
  .hero { min-height: 92svh; }
}