/* ============================================================
   PROFLOW — INDUSTRIAL PRECISION TEMPLATE
   style.css  |  CSS variables set dynamically from config.js
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; } /* scroll-behavior intentionally omitted — Lenis handles smooth scroll on desktop */

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── CSS VARIABLES (defaults — overridden by config.js via JS) ─ */
:root {
  --primary:      #111827;
  --accent:       #2563EB;
  --accent-dark:  #1D4ED8;
  --bg:           #111827;
  --text:         #F9FAFB;
  --surface:      #1F2937;
  --muted:        #9CA3AF;
  --darkest:      #0D1117;
  --light-bg:     #F9FAFB;
  --light-surface:#FFFFFF;
  --light-border: #E5E7EB;
  --light-text:   #111827;
  --light-muted:  #6B7280;
  --border:       rgba(255,255,255,0.10);
  --radius-card:  6px;
  --radius-btn:   9999px;
}

/* ── NOISE TEXTURE ─────────────────────────────────────────── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SECTION HEADINGS ──────────────────────────────────────── */
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-heading--dark  { color: var(--light-text); font-size: clamp(32px, 5vw, 60px); }
.section-heading--light { color: var(--text);       font-size: clamp(32px, 5vw, 60px); }

.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--light-muted);
  max-width: 560px;
  margin-top: 12px;
}
.section-sub--light { color: var(--muted); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  height: 52px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-1px); }
.btn--blue-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--blue-outline:hover { background: var(--accent); color: #fff; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 64px);
  transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}
.nav--scrolled {
  background: var(--primary);
  border-bottom: 1px solid var(--accent);
  backdrop-filter: blur(12px);
}
.nav__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  padding-right: 36px;
  list-style: none;
}
.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,250,251,0.80);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  font-size: 13px;
  padding: 0 22px;
  height: 42px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 88px clamp(24px, 8vw, 60px) clamp(40px, 8vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 64px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 9vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.mobile-menu__phone-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mobile-menu__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 8vw, 48px);
  color: var(--accent);
  text-decoration: none;
  display: block;
  line-height: 1.1;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(17,24,39,0.90) 60%,
    rgba(17,24,39,0.97) 100%
  );
  z-index: 1;
}
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(72px + clamp(40px,6vw,80px)) clamp(16px, 10%, 180px) clamp(32px, 4vw, 64px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,250,251,0.75);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 24px;
}
.hero__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 14vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}
.hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(249,250,251,0.65);
  max-width: 480px;
  margin: 18px 0 0;
  line-height: 1.65;
  opacity: 0;
}
.hero__phone-block {
  margin-top: clamp(24px, 3vw, 40px);
  opacity: 0;
}
.hero__phone-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.hero__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.hero__phone:hover { opacity: 0.85; }
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
  opacity: 0;
}
.hero__badges-row {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 10%, 180px);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  opacity: 0;
}
.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}
.hero__trust-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(249,250,251,0.75);
  white-space: nowrap;
}
.hero__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: clamp(90px, 12vw, 130px);
  left: clamp(16px, 10%, 180px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
}
.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  animation: scroll-drop 1.6s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px) 0 calc(clamp(32px, 4vw, 56px) + 64px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  position: relative;
  z-index: 1;
}
.trust-bar__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.trust-stat {
  text-align: center;
  padding: clamp(16px, 2vw, 28px) clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(255,255,255,0.10);
}
.trust-stat:last-child { border-right: none; }
.trust-stat__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.trust-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services {
  background: var(--light-bg);
}
.services__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.services__header .section-sub {
  margin: 12px auto 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.25s ease;
}
.service-card:hover::after { background: var(--accent); }
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.service-card__top {
  height: 4px;
  background: var(--accent);
}
.service-card__body {
  padding: clamp(20px, 3vw, 32px);
}
.service-card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
  transition: transform 0.25s ease;
}
.service-card:hover .service-card__icon { transform: scale(1.1); }
.service-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--light-text);
  margin: 0 0 10px;
}
.service-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--light-muted);
  line-height: 1.7;
  margin: 0;
}
.service-card__link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.2s ease;
}
.service-card__link:hover { letter-spacing: 0.05em; }
.services__footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--light-muted);
}
.services__footer a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── WHY US ────────────────────────────────────────────────── */
.why-us {
  background: var(--primary);
  padding-top: calc(clamp(64px, 8vw, 120px) + 48px);
  margin-top: -48px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.why-us__left-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.why-point {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.why-point__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(37,99,235,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}
.why-point__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 5px;
}
.why-point__desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.why-us__quote-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: clamp(32px, 4vw, 52px);
  overflow: hidden;
}
.why-us__quote-card .noise::after { border-radius: var(--radius-card); }
.why-us__quote-bg {
  position: absolute;
  top: -12px;
  left: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(37,99,235,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.why-us__quote-text {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}
.why-us__quote-author {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-us__quote-est {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews { background: var(--light-bg); }
.reviews__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.reviews__header .section-heading--dark { font-size: clamp(28px, 4vw, 52px); }

.reviews__marquee-wrap { overflow: hidden; }
.reviews__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  width: max-content;
}
.reviews__row--fwd {
  animation: marquee-fwd 40s linear infinite;
}
.reviews__row--rev {
  animation: marquee-rev 40s linear infinite;
}
.reviews__marquee-wrap:hover .reviews__row {
  animation-play-state: paused;
}
@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reviews__mobile-stack {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: clamp(20px, 2.5vw, 28px);
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease;
}
.review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.review-card__stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-card__author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--light-text);
}
.review-card__source {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--light-muted);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process { background: var(--primary); }
.process__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  border-top: 1px dashed rgba(37,99,235,0.35);
  pointer-events: none;
  z-index: 0;
}
.process-step {
  padding: clamp(16px, 2vw, 32px) clamp(12px, 2vw, 24px);
  position: relative;
  z-index: 1;
}
.process-step__ordinal {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.process-step__bg-num {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 7vw, 90px);
  color: rgba(37,99,235,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.process-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.process-step__desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── SERVICE AREA ──────────────────────────────────────────── */
.service-area { background: var(--light-bg); }
.service-area__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.service-area__map {
  border: 2px solid var(--accent);
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}
.service-area__map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  border: none;
}
.service-area__right-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.service-area__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.service-area__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #374151;
  border-bottom: 1px solid var(--light-border);
}
.service-area__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-area__note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--light-muted);
}
.service-area__note a { color: var(--accent); font-weight: 500; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--surface); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.contact__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.contact__sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__phone-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.contact__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--accent);
  text-decoration: none;
  line-height: 1.1;
  display: block;
  transition: opacity 0.2s;
}
.contact__phone:hover { opacity: 0.8; }
.contact__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0;
}
.contact__email {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact__email:hover { color: var(--text); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 9px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
}
.hours-table td:first-child { color: var(--text); font-weight: 400; width: 52%; }
.hours-table .is-closed td { font-style: italic; color: var(--muted); opacity: 0.6; }

/* Form */
.contact__form-wrap { position: relative; }
.form-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.form__group { margin-bottom: 16px; }
.form__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form__input,
.form__select,
.form__textarea {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form__input,
.form__select { height: 48px; }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form__select option { background: var(--surface); color: var(--text); }
.form__textarea {
  height: 120px;
  padding: 14px 16px;
  resize: vertical;
}
.form__submit {
  display: block;
  width: 100%;
  height: 56px;
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.form__submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
.form__privacy {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0.7;
}
.form__success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}
.form__success.is-visible { display: block; }
.form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37,99,235,0.12);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.form__success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}
.form__success-msg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA STRIP ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--accent);
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 80px);
  clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(56px + clamp(48px, 7vw, 80px));
  position: relative;
  z-index: 3;
}
.cta-strip__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-strip__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 8vw, 120px);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transition: opacity 0.2s;
}
.cta-strip__phone:hover { opacity: 0.85; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--darkest);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer__license {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(156,163,175,0.6);
  letter-spacing: 0.06em;
}
.footer__col-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(249,250,251,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }
.footer__contact-phone {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer__contact-email {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(249,250,251,0.65);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer__contact-address {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__social {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.footer__social a { color: rgba(249,250,251,0.65); text-decoration: none; }
.footer__social a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright,
.footer__agency {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(156,163,175,0.55);
}

/* ── MOBILE STICKY CALL BAR ────────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--accent);
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  gap: 10px;
}
.mobile-call-bar__icon {
  display: inline-block;
  animation: phone-pulse 3s ease-in-out infinite;
  font-size: 18px;
}
@keyframes phone-pulse {
  0%, 80%, 100% { transform: scale(1); }
  40%           { transform: scale(1.18); }
}

/* ── ANIMATION STATES ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ── MEDIA QUERIES ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner  { gap: clamp(32px, 5vw, 64px); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__name       { font-size: 20vw; }
  .hero__phone      { font-size: 11vw; text-decoration: underline; text-underline-offset: 4px; }
  .hero__tagline    { font-size: 15px; }
  .hero__ctas .btn  { width: 100%; height: 56px; }
  .hero__ctas       { flex-direction: column; }
  .hero__badges-row { gap: 14px; padding-left: clamp(16px, 5vw, 32px); padding-right: clamp(16px, 5vw, 32px); }
  .hero__divider    { display: none; }
  .hero__trust-badge { flex: 1 1 auto; }

  /* Trust bar */
  .trust-bar__stats {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .trust-stat:nth-child(3),
  .trust-stat:nth-child(4) { border-bottom: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us { clip-path: none; margin-top: 0; padding-top: clamp(64px, 8vw, 120px); }
  .why-us__inner { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__marquee-wrap { display: none; }
  .reviews__mobile-stack { display: flex; }
  .review-card { min-width: auto; max-width: 100%; }

  /* Process */
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }

  /* Service area */
  .service-area__inner { grid-template-columns: 1fr; }
  .service-area__list  { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }

  /* CTA strip */
  .cta-strip__phone { font-size: 12vw; }
  .cta-strip { clip-path: none; padding-top: clamp(48px, 7vw, 80px); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer { padding-bottom: 80px; } /* clear mobile call bar */

  /* Mobile call bar */
  .mobile-call-bar { display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .hero__body { padding-left: 5%; padding-right: 5%; }
  .hero__badges-row { padding-left: 5%; padding-right: 5%; }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
