/* ═══════════════════════════════════════════════════════
   JAK EXPRESS — PREMIUM DARK COURIER SITE
   Design: Fast · Precise · Clinical
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --red:         #9e0001;
  --red-dark:    #52070f;
  --red-light:   #b11624;
  --bg:          #090909;
  --bg-card:     rgba(20, 21, 21, 0.78);
  --bg-alt:      #0e0f10;
  --bg-elevated: rgba(30, 31, 31, 0.86);
  --border:      rgba(190, 194, 199, 0.12);
  --border-light:rgba(190, 194, 199, 0.2);
  --white:       #ffffff;
  --silver:      #bec2c7;
  --silver-dim:  #777c80;
  --graphite:    #171717;
  --metal:       #606467;
  --smoke:       rgba(190, 194, 199, 0.055);
  --red-glow:    rgba(158, 0, 1, 0.28);
  --brand-metal: linear-gradient(135deg, #111 0%, #2e3131 34%, #606467 48%, #191919 70%, #4c4c4c 100%);
  --brand-red:   linear-gradient(135deg, #9e0001 0%, #851027 100%);
  --panel-grad:  linear-gradient(145deg, rgba(35,35,35,0.78) 0%, rgba(11,11,11,0.9) 62%, rgba(82,7,15,0.24) 100%);
  --font-head:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1200px;
  --radius:      4px;
  --transition:  200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }
input, select, textarea { font: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-red:hover { background: var(--red-light); border-color: var(--red-light); }

.btn-ghost { background: transparent; color: var(--silver); border: 2px solid var(--border-light); }
.btn-ghost:hover { color: var(--white); border-color: var(--silver-dim); }

.btn-outline-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  background: transparent;
  color: var(--silver);
  border: 1.5px solid var(--border-light);
}
.btn-outline-sm:hover { color: var(--white); border-color: var(--silver); }

.btn-white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-hero { font-size: 1.1rem; padding: 1rem 2.25rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ─── SECTION COMMON ─────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); }
.section-title--sm { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

/* ─── ARROW LIST ─────────────────────────────────────── */
.arrow-list { display: flex; flex-direction: column; gap: 0.5rem; }
.arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.5;
}
.arrow-list li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── IMAGE PLACEHOLDER ──────────────────────────────── */
.img-ph {
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 12px,
      rgba(255,255,255,0.018) 12px, rgba(255,255,255,0.018) 13px
    );
}
.img-ph-icon { position: relative; z-index: 1; color: rgba(255,255,255,0.15); }
.img-ph-icon svg { width: 32px; height: 32px; }
.img-ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  text-align: center;
  padding: 0 1rem;
}
.img-ph--tall { min-height: 400px; }
.img-ph--med  { min-height: 280px; }
.img-ph--sq   { aspect-ratio: 1; }
.img-ph--hero { min-height: 520px; }

/* ══════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow);
}
.site-header.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img {
  width: clamp(130px, 14vw, 170px);
  height: auto;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.5rem; align-items: center; }
.nav-list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a.active { color: var(--white); }
.nav-list a.active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--silver); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; background: rgba(13,13,13,0.98); border-top: 1px solid var(--border); padding: 1.5rem; }
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); }
.mobile-nav a.btn-red { color: var(--white); text-align: center; margin-top: 0.5rem; }

/* ══════════════════════════════════════════════════════
   HERO (HOMEPAGE — FULL SCREEN)
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  box-sizing: border-box;
  padding-top: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #080a0c; }
.hero-motion-lines {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(92deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(89deg, transparent, transparent 120px, rgba(255,255,255,0.008) 120px, rgba(255,255,255,0.008) 122px);
  animation: streaks 8s linear infinite;
}
@keyframes streaks { 0% { background-position: 0 0; } 100% { background-position: 800px 0; } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, transparent 20%, rgba(13,13,13,0.65) 70%, rgba(13,13,13,0.95) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.15) 50%, rgba(13,13,13,0.85) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(176,28,46,0.14) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Logo watermark */
.hero-logo-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.hero-logo-watermark .logo-img {
  width: min(760px, 52vw);
  height: auto;
  filter: grayscale(1) brightness(1.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint span { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--red), transparent); margin: 0 auto; animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ─── PAGE HERO (SUBPAGES) ───────────────────────────── */
.page-hero {
  position: relative;
  padding-top: 80px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: #080a0c;
}
.page-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(176,28,46,0.12) 0%, transparent 50%),
    linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.4) 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-img {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.25;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0 3.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--silver-dim); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--silver); }
.breadcrumb-sep { color: var(--red); }
.breadcrumb span { color: var(--silver); }
.page-hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.trust-list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem 3rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); }
.trust-icon { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   BRAND STATEMENT
══════════════════════════════════════════════════════ */
.brand-statement {
  padding: 6rem 0;
  background: var(--bg);
}
.brand-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-statement-text .section-title { margin-bottom: 1.25rem; }
.brand-statement-text p { color: var(--silver); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1rem; }
.brand-proof {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
}
.brand-proof-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.brand-proof-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.brand-proof-sub { font-size: 0.9rem; color: var(--silver); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SERVICES PREVIEW (HOMEPAGE — 6 CARDS)
══════════════════════════════════════════════════════ */
.services-section { padding: 7rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.services-grid--full { border: 1px solid var(--border); }

.service-card {
  background: var(--bg-card);
  border-top: 2px solid transparent;
  transition: background var(--transition), transform var(--transition);
  outline: none;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.service-card:hover::after, .service-card:focus::after { transform: scaleX(1); }
.service-card:hover, .service-card:focus { background: var(--bg-elevated); }
.service-card-inner { padding: 2.25rem 2rem; height: 100%; display: flex; flex-direction: column; }

.service-card--featured { background: var(--bg-elevated); }
.service-card--featured::before {
  content: 'SPECIALTY';
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.service-icon-wrap { width: 44px; height: 44px; border: 1px solid var(--border-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; flex-shrink: 0; }
.service-icon { width: 22px; height: 22px; color: var(--red); }
.service-title { font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { color: var(--silver); font-size: 0.92rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }
.service-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════
   INDUSTRIES SECTION
══════════════════════════════════════════════════════ */
.industries-section { padding: 7rem 0; background: var(--bg); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.industry-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.industry-card:hover { background: var(--bg-elevated); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon { width: 36px; height: 36px; color: var(--red); }
.industry-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.industry-desc { font-size: 0.85rem; color: var(--silver-dim); line-height: 1.55; }

/* Full industries page */
.industry-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1.5px;
  background: var(--bg-card);
  overflow: hidden;
}
.industry-block:nth-child(even) { direction: rtl; }
.industry-block:nth-child(even) > * { direction: ltr; }
.industry-block-img { background: var(--bg-elevated); min-height: 340px; }
.industry-block-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.industry-block-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.industry-block-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 0.25rem; }
.industry-block-desc { color: var(--silver); font-size: 0.95rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   SPEED STATEMENT
══════════════════════════════════════════════════════ */
.speed-section { padding: 7rem 0; background: var(--bg); }
.speed-inner { display: flex; align-items: center; gap: 5rem; flex-wrap: wrap; }
.speed-stat-wrap { display: flex; align-items: baseline; gap: 0.2em; flex-shrink: 0; }
.speed-number { font-family: var(--font-head); font-weight: 900; font-size: clamp(7rem, 15vw, 13rem); line-height: 1; color: var(--red); letter-spacing: 0; font-variant-numeric: tabular-nums; }
.speed-unit { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--red); opacity: 0.7; }
.speed-copy { flex: 1; min-width: 260px; }
.speed-headline { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
.speed-body { color: var(--silver); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how-section { padding: 7rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: flex; align-items: flex-start; flex-wrap: wrap; }
.step-item { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 1.25rem; padding: 2rem 1.5rem; }
.step-connector { width: 1px; height: 80px; background: var(--border); align-self: flex-start; margin-top: 2.5rem; flex-shrink: 0; }
.step-number { font-family: var(--font-head); font-weight: 900; font-size: clamp(4rem, 8vw, 6.5rem); line-height: 1; color: var(--red); opacity: 0.9; letter-spacing: 0; display: block; }
.step-title { font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }
.step-content p { color: var(--silver); font-size: 0.95rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats-section { padding: 5rem 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.stats-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 1.5rem; }
.stat-number { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--red); font-variant-numeric: tabular-nums; line-height: 1; }
.stat-suffix { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.2rem, 2.5vw, 2rem); color: var(--red); opacity: 0.7; }
.stat-label { font-size: 0.8rem; color: var(--silver-dim); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-section { padding: 7rem 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.testimonial-card { background: var(--bg-card); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -0.25rem;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 900;
  opacity: 0.7;
}
.testimonial-author { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-name { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--silver-dim); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { width: 14px; height: 14px; color: var(--red); fill: var(--red); }

/* ══════════════════════════════════════════════════════
   MAP / COVERAGE
══════════════════════════════════════════════════════ */
.map-section { padding: 7rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.map-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
.map-body { color: var(--silver); font-size: 1rem; line-height: 1.7; margin-bottom: 1.75rem; }
.coverage-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.coverage-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--silver); }
.coverage-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.coverage-dot--secondary { background: transparent; border: 1.5px solid var(--silver-dim); }

.wa-map { width: 100%; height: auto; max-width: 520px; filter: drop-shadow(0 0 40px rgba(176,28,46,0.15)); }
.wa-state { fill: #181818; stroke: var(--border-light); stroke-width: 1.5; }
.wa-divide { fill: none; stroke: var(--border); stroke-width: 0.8; stroke-dasharray: 4 4; }
.coverage-zone { fill: none; stroke-width: 1.5; }
.coverage-zone--primary { stroke: var(--red); fill: rgba(176,28,46,0.08); }
.coverage-zone--secondary { stroke: var(--silver-dim); stroke-dasharray: 5 4; fill: rgba(120,120,120,0.04); }
.city-dot { opacity: 0.9; }
.city-dot--primary { fill: var(--red); }
.city-dot--secondary { fill: var(--silver-dim); }
.map-city-layer { isolation: isolate; }
.city-label { font-family: var(--font-head); font-weight: 700; font-size: 11px; fill: var(--silver); letter-spacing: 0.05em; text-transform: uppercase; }
.city-label--sm { fill: var(--silver-dim); font-size: 9px; }
.state-label { font-family: var(--font-head); font-weight: 700; font-size: 12px; fill: rgba(120,120,120,0.2); letter-spacing: 0.18em; text-transform: uppercase; pointer-events: none; }

/* Coverage page specific */
.coverage-region { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.coverage-region:last-child { border-bottom: none; }
.coverage-region-title { font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.coverage-region-desc { color: var(--silver); font-size: 0.95rem; margin-bottom: 1.25rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.city-tag--highlight { color: var(--red); border-color: rgba(176,28,46,0.3); background: rgba(176,28,46,0.06); }

/* ══════════════════════════════════════════════════════
   SERVICES PAGE — DETAIL SECTIONS
══════════════════════════════════════════════════════ */
.service-detail { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.service-detail:nth-child(odd) { background: var(--bg); }
.service-detail:nth-child(even) { background: var(--bg-alt); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-body { direction: ltr; }
.service-detail-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.service-detail-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.service-detail-desc { color: var(--silver); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-story { padding: 7rem 0; background: var(--bg); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-body p { color: var(--silver); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-story-body p:last-child { margin-bottom: 0; }

.values-section { padding: 7rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value-card { background: var(--bg-card); padding: 2.5rem 2rem; }
.value-number { font-family: var(--font-head); font-weight: 900; font-size: 3.5rem; color: var(--red); opacity: 0.25; line-height: 1; margin-bottom: 1rem; }
.value-title { font-size: 1.3rem; color: var(--white); margin-bottom: 0.6rem; }
.value-desc { font-size: 0.88rem; color: var(--silver); line-height: 1.65; }

.team-section { padding: 7rem 0; background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.team-card { background: var(--bg-card); overflow: hidden; }
.team-photo { min-height: 280px; background: var(--bg-elevated); position: relative; }
.team-info { padding: clamp(2rem, 4vw, 3rem); min-height: 100%; display: flex; flex-direction: column; justify-content: center; }
.team-name { font-size: 1.3rem; color: var(--white); margin-bottom: 0.2rem; }
.team-role { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.88rem; color: var(--silver); line-height: 1.6; }
.team-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(190,194,199,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  flex: 0 0 auto;
}
.team-avatar--photo {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.02), rgba(5,5,5,0.16)),
    url('../assets/jesse-hjartarson.png') center 0% / cover no-repeat;
}
.team-avatar--initials {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(158,0,1,0.35), transparent 4.8rem),
    repeating-linear-gradient(120deg, transparent 0 18px, rgba(190,194,199,0.045) 18px 19px),
    linear-gradient(145deg, rgba(35,35,35,0.92), rgba(8,8,8,0.95));
  color: var(--silver);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.team-avatar--kimberly {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.02), rgba(5,5,5,0.16)),
    url('../assets/kimberly-hjartarson.png') center 42% / cover no-repeat;
}

.certs-section { padding: 5rem 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.certs-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.cert-badge svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.cert-badge span { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); }

/* ══════════════════════════════════════════════════════
   QUOTE / CONTACT FORM
══════════════════════════════════════════════════════ */
.contact-section { padding: 7rem 0; background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.35rem; }
.contact-info-value { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white); letter-spacing: 0; transition: color var(--transition); display: block; }
.contact-info-value:hover { color: var(--red); }
.contact-info-value--sm { font-size: 1rem; font-weight: 600; color: var(--silver); }
.contact-info-value--sm:hover { color: var(--white); }

.quote-form { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver-dim); }
.form-group label span { color: var(--red); }

input, select, textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--silver-dim); opacity: 0.6; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); background: #1a1116; }
input.error, select.error, textarea.error { border-color: #e53e3e; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787878' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 90px; }
.field-error { font-size: 0.78rem; color: #e53e3e; min-height: 1rem; }
.form-success { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: rgba(176,28,46,0.08); border: 1px solid var(--red); border-radius: var(--radius); margin-top: 1rem; color: var(--silver); font-size: 0.9rem; }
.form-success svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════ */
.cta-band { background: var(--red); padding: 5.5rem 0; }
.cta-inner { text-align: center; }
.cta-headline { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-white-outline { border-color: rgba(255,255,255,0.7); }
.cta-band .btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-tagline { font-size: 0.88rem; color: var(--silver-dim); line-height: 1.6; margin-top: 1rem; max-width: 240px; }
.footer-nav-title { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.9rem; color: var(--silver); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact address p { font-size: 0.9rem; color: var(--silver); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--silver); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-hours { color: var(--red) !important; font-size: 0.82rem !important; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.78rem; color: var(--silver-dim); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.78rem; color: var(--silver-dim); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--silver); }

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in-left.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .map-layout { grid-template-columns: 1fr; }
  .brand-statement-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .industry-block { grid-template-columns: 1fr; }
  .industry-block:nth-child(even) { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero-logo-watermark { display: none; }

  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }

  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 1.75rem; }

  .cta-actions { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-list { gap: 1rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }

  .services-section, .how-section, .map-section,
  .industries-section, .testimonials-section,
  .speed-section, .brand-statement, .about-story,
  .values-section, .team-section, .contact-section { padding: 5rem 0; }
}

@media (max-width: 540px) {
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  .service-card-inner { padding: 2rem 1.5rem; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ══════════════════════════════════════════════════════
   DESIGN CHARACTER LAYER
   Motion · Texture · Ghost text · Typographic drama
══════════════════════════════════════════════════════ */

/* ─── GRAIN OVERLAY ──────────────────────────────────
   Subtle pixel noise adds depth to the dark background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 1px, rgba(255,255,255,0.008) 1px, rgba(255,255,255,0.008) 2px),
    repeating-linear-gradient(90deg,  transparent, transparent 1px, rgba(255,255,255,0.008) 1px, rgba(255,255,255,0.008) 2px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* ─── EYEBROW ACCENT ─────────────────────────────────
   Red bar before every section eyebrow label */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── HEADLINE RED WORD ──────────────────────────────
   Wrap a word in <em class="red"> for red emphasis */
em.red {
  font-style: normal;
  color: var(--red);
}

/* ─── MARQUEE TICKER ─────────────────────────────────
   Scrolling service strip between hero and trust bar */
.marquee-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  white-space: nowrap;
}
.marquee-item.highlight { color: var(--silver); }
.marquee-sep {
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── GHOST / WATERMARK WORDS ────────────────────────
   Oversized decorative text behind section content */
.ghost-word {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.ghost-word--right  { right: -2%; top: 50%; transform: translateY(-50%); }
.ghost-word--left   { left: -2%;  top: 50%; transform: translateY(-50%); }
.ghost-word--center { left: 50%;  top: 50%; transform: translate(-50%, -50%); }
.ghost-word--bottom { right: -2%; bottom: -0.1em; }
.ghost-word--red {
  -webkit-text-stroke: 1px rgba(176,28,46,0.12);
}

/* Make sections with ghost text position:relative */
.speed-section,
.services-section,
.how-section,
.industries-section,
.cta-band,
.brand-statement { position: relative; overflow: hidden; }

/* ─── RED ACCENT BAR ─────────────────────────────────
   A bold decorative horizontal rule */
.red-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 2rem;
}
.red-bar--wide { width: 80px; }

/* ─── DIAGONAL SECTION DIVIDER ───────────────────────
   Insert between sections for angled transitions */
.section-slash {
  height: 70px;
  position: relative;
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
}
.section-slash--down { background: var(--bg-alt); }
.section-slash--up   { background: var(--bg); }
.section-slash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transform: skewY(-1.5deg);
  transform-origin: bottom left;
}

/* ─── STAT / SPEED NUMBER GLOW ───────────────────────
   Red glow on key numbers for drama */
.stat-number,
.speed-number {
  text-shadow:
    0 0 60px rgba(176,28,46,0.35),
    0 0 120px rgba(176,28,46,0.15);
}

/* ─── ENHANCED CARD HOVER ────────────────────────────
   Diagonal red gradient sweep on service cards */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(176,28,46,0.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::before,
.service-card:focus::before { opacity: 1; }
.service-card-inner { position: relative; z-index: 1; }

/* ─── INDUSTRY CARD DIAGONAL ─────────────────────────
   Matching treatment for industry cards */
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176,28,46,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}
.industry-card:hover::before { opacity: 1; }

/* ─── HERO ENHANCEMENTS ──────────────────────────────
   Red slash accent + crosshair corner decoration */
.hero-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 1.5rem;
}
.hero-corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-corner--tl { top: 6rem; left: 2rem; }
.hero-corner--br { bottom: 4rem; right: 2rem; }
.hero-corner svg { width: 40px; height: 40px; color: rgba(176,28,46,0.25); }

/* ─── SERVICE SECTION NUMBERS ────────────────────────
   Large decorative number anchors on services page */
.svc-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,28,46,0.2);
  display: block;
  margin-bottom: -1rem;
  user-select: none;
}

/* ─── HERO HEADLINE LINE UNDER ───────────────────────
   Animated underline on hover for the hero CTA */
.btn-hero.btn-red {
  position: relative;
  overflow: hidden;
}
.btn-hero.btn-red::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.08);
  transition: left 0.4s ease;
  pointer-events: none;
}
.btn-hero.btn-red:hover::before { left: 100%; }

/* ─── STEP NUMBER RING ───────────────────────────────
   Ring accent around step numbers */
.step-number-wrap {
  position: relative;
  display: inline-block;
}
.step-number-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: -0.15em;
  transform: translateY(-50%);
  width: 1.1em; height: 1.1em;
  border: 1px solid rgba(176,28,46,0.2);
  border-radius: 2px;
  pointer-events: none;
}

/* ─── TESTIMONIAL PULL STYLE ─────────────────────────
   More character for the quote cards */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 8rem;
  line-height: 1;
  color: rgba(176,28,46,0.06);
  pointer-events: none;
}

/* ─── PAGE HERO GHOST TEXT ───────────────────────────
   Ghost word on subpage heroes */
.page-hero { overflow: hidden; }
.page-hero-ghost {
  position: absolute;
  right: -3%;
  bottom: -0.15em;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ─── RED GRADIENT TOP BORDER ON PAGE HERO ───────────  */
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent 60%);
}

/* ─── ANIMATED RED UNDERLINE ON NAV ─────────────────── */
.nav-list a::after {
  background: linear-gradient(to right, var(--red), var(--red-light));
}

/* ─── VALUE CARD HOVER ───────────────────────────────── */
.value-card {
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176,28,46,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.value-card:hover { background: var(--bg-elevated); transform: translateY(-2px); }
.value-card:hover::before { opacity: 1; }

/* ─── CTA BAND DIAGONAL STRIPE ───────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 40%;
  height: 140%;
  background: rgba(0,0,0,0.12);
  transform: skewX(-8deg);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 15%;
  width: 3px;
  height: 140%;
  background: rgba(255,255,255,0.08);
  transform: skewX(-8deg);
  pointer-events: none;
}

/* ─── BRAND PROOF BLOCK GLOW ─────────────────────────── */
.brand-proof {
  position: relative;
  overflow: hidden;
}
.brand-proof::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(176,28,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── CERT BADGE HOVER ───────────────────────────────── */
.cert-badge {
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.cert-badge:hover {
  background: var(--bg-card);
  border-color: rgba(176,28,46,0.4);
  transform: translateY(-2px);
}

/* ─── FOOTER RED TOP LINE ────────────────────────────── */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 2px;
  background: var(--red);
}

/* ─── RESPONSIVE DESIGN CHARACTER ───────────────────── */
@media (max-width: 768px) {
  .ghost-word { display: none; }
  .hero-corner { display: none; }
  .page-hero-ghost { font-size: clamp(4rem, 22vw, 8rem); }
  .marquee-strip::before,
  .marquee-strip::after { width: 60px; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ══════════════════════════════════════════════════════
   BRAND-INTEGRATED REDESIGN — CODEX
   Logo-led graphite, smoked glass, image texture, burgundy depth
══════════════════════════════════════════════════════ */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(96,100,103,0.13), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(133,16,39,0.16), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #0b0c0c 38%, #121313 68%, #070707 100%);
  color: rgba(255,255,255,0.94);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,0.035) 18.1%, transparent 18.45% 54%, rgba(158,0,1,0.065) 54.1%, transparent 54.5%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 68px);
  opacity: 0.55;
}

h1, h2, h3, h4 {
  letter-spacing: 0;
}

.section-title,
.page-hero-title,
.hero-headline {
  text-shadow: 0 18px 55px rgba(0,0,0,0.78);
}

.section-eyebrow,
.hero-eyebrow,
.service-detail-tag,
.contact-info-label {
  color: #b52432;
}

.section-eyebrow::before,
.hero-accent-line,
.red-bar {
  background: var(--brand-red);
  box-shadow: 0 0 26px var(--red-glow);
}

.site-header.scrolled,
.mobile-nav {
  background:
    linear-gradient(180deg, rgba(12,12,12,0.94), rgba(6,6,6,0.9)),
    rgba(13,13,13,0.92);
  border-bottom: 1px solid rgba(190,194,199,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.32);
}

.logo-img {
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.48));
}

.btn {
  border-radius: 3px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.btn-red {
  background: var(--brand-red);
  border-color: rgba(190,194,199,0.1);
  box-shadow: 0 18px 42px rgba(82,7,15,0.36), inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-red:hover {
  background: linear-gradient(135deg, #b11624 0%, #851027 100%);
  border-color: rgba(190,194,199,0.24);
}

.btn-ghost,
.btn-outline-sm,
.btn-white-outline {
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border-color: rgba(190,194,199,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.96) 0%, rgba(7,7,7,0.75) 40%, rgba(7,7,7,0.34) 100%),
    url('../assets/seattle-rav4-night.webp') center / cover no-repeat;
}

.hero-bg::before {
  background:
    radial-gradient(circle at 66% 68%, rgba(158,0,1,0.28), transparent 22rem),
    linear-gradient(105deg, rgba(158,0,1,0.25) 0%, transparent 42%),
    repeating-linear-gradient(118deg, transparent 0 86px, rgba(190,194,199,0.035) 86px 87px);
  mix-blend-mode: screen;
}

.hero-bg::after {
  background-image:
    linear-gradient(rgba(190,194,199,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,194,199,0.014) 1px, transparent 1px),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.4), transparent 50%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
}

.hero-overlay {
  background:
    radial-gradient(ellipse 75% 95% at 56% 54%, transparent 0%, rgba(5,5,5,0.35) 58%, rgba(5,5,5,0.92) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.54) 0%, rgba(5,5,5,0.18) 46%, rgba(5,5,5,0.92) 100%);
}

.hero-content {
  text-align: left;
  max-width: 920px;
  margin-right: auto;
  margin-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
}

.hero-accent-line {
  margin-left: 0;
}

.hero-sub {
  margin-left: 0;
  color: rgba(190,194,199,0.88);
}

.hero-actions {
  justify-content: flex-start;
}

.hero-logo-watermark {
  right: clamp(-220px, -11vw, -120px);
  top: 56%;
  opacity: 0.055;
  mix-blend-mode: screen;
}

.hero-logo-watermark .logo-img {
  width: clamp(320px, 34vw, 520px);
  filter: grayscale(1) brightness(1.8) contrast(1.1);
}

.page-hero {
  min-height: 420px;
}

.page-hero-bg {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.95), rgba(5,5,5,0.7) 44%, rgba(5,5,5,0.5));
}

.page-hero--services .page-hero-bg { background-image: linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.76) 46%, rgba(5,5,5,0.45)), url('../assets/medical-logistics.webp'); }
.page-hero--industries .page-hero-bg { background-image: linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.74) 46%, rgba(5,5,5,0.44)), url('../assets/industries-courier-readiness.webp'); }
.page-hero--about .page-hero-bg { background-image: linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.72) 46%, rgba(5,5,5,0.42)), url('../assets/hero-courier-night.webp'); }
.page-hero--coverage .page-hero-bg { background-image: linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.76) 46%, rgba(5,5,5,0.5)), url('../assets/seattle-i5-corridor.webp'); }
.page-hero--contact .page-hero-bg { background-image: linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.74) 46%, rgba(5,5,5,0.43)), url('../assets/emergency-phone-dispatch.webp'); }

.page-hero-bg::before {
  background:
    radial-gradient(circle at 78% 42%, rgba(158,0,1,0.2), transparent 25rem),
    linear-gradient(to top, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.18) 72%),
    repeating-linear-gradient(112deg, transparent 0 76px, rgba(190,194,199,0.032) 76px 77px);
}

.page-hero-bg::after {
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(158,0,1,0.9), rgba(190,194,199,0.28), transparent);
}

.page-hero-content {
  padding-bottom: 4.4rem;
}

.page-hero-ghost,
.ghost-word {
  opacity: 0.58;
  -webkit-text-stroke-color: rgba(190,194,199,0.055);
}

.ghost-word--red {
  -webkit-text-stroke-color: rgba(158,0,1,0.14);
}

.marquee-strip,
.trust-bar,
.services-section,
.industries-section,
.how-section,
.testimonials-section,
.service-detail,
.about-story,
.values-section,
.team-section,
.contact-section,
.map-section,
.speed-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 18rem),
    radial-gradient(circle at 20% 0%, rgba(96,100,103,0.09), transparent 34rem),
    linear-gradient(135deg, rgba(13,14,15,0.92), rgba(7,7,7,0.96));
  border-color: rgba(190,194,199,0.11);
}

.brand-statement {
  background:
    radial-gradient(circle at 80% 30%, rgba(158,0,1,0.16), transparent 24rem),
    repeating-linear-gradient(118deg, transparent 0 86px, rgba(190,194,199,0.025) 86px 87px),
    linear-gradient(90deg, rgba(5,5,5,0.96), rgba(12,12,12,0.9) 45%, rgba(5,5,5,0.98));
  border-top: 1px solid rgba(158,0,1,0.35);
  border-bottom: 1px solid rgba(190,194,199,0.14);
}

.stats-section {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.72) 45%, rgba(5,5,5,0.58)),
    url('../assets/dispatch-stats-night.webp') center / cover no-repeat;
  border-top: 1px solid rgba(158,0,1,0.35);
  border-bottom: 1px solid rgba(190,194,199,0.14);
}

.stats-section--featured {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.stats-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.stats-intro {
  color: rgba(190,194,199,0.84);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin-top: 1rem;
}

.stats-section .stats-grid {
  background:
    linear-gradient(rgba(12,12,12,0.64), rgba(12,12,12,0.72)) padding-box,
    linear-gradient(135deg, rgba(190,194,199,0.28), rgba(158,0,1,0.42), rgba(255,255,255,0.05)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stats-section .stat-item {
  padding: clamp(1.5rem, 4vw, 2.75rem) 1.5rem;
}

.stats-section .stat-number {
  font-size: clamp(3.4rem, 8vw, 7rem);
  text-shadow: 0 0 50px rgba(158,0,1,0.5), 0 0 110px rgba(158,0,1,0.2);
}

.stats-section .stat-suffix {
  color: rgba(190,194,199,0.82);
}

.services-grid,
.industries-grid,
.team-grid {
  gap: 1px;
  background: linear-gradient(135deg, rgba(190,194,199,0.18), rgba(158,0,1,0.2), rgba(190,194,199,0.07));
  border-color: rgba(190,194,199,0.14);
}

.service-card,
.industry-card,
.industry-block,
.service-detail-visual,
.testimonial-card,
.value-card,
.team-card,
.brand-proof,
.quote-form,
.contact-direct-card,
.cert-badge,
.coverage-region,
.contact-info-block {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, rgba(190,194,199,0.24), rgba(158,0,1,0.26), rgba(255,255,255,0.04)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-detail {
  position: relative;
  overflow: hidden;
}

.service-detail:nth-child(odd),
.service-detail:nth-child(even) {
  background:
    radial-gradient(circle at 84% 30%, rgba(158,0,1,0.08), transparent 24rem),
    linear-gradient(135deg, rgba(13,14,15,0.96), rgba(7,7,7,0.98));
}

.service-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, transparent 0 82px, rgba(190,194,199,0.02) 82px 83px),
    linear-gradient(to bottom, rgba(255,255,255,0.018), transparent 35%);
}

.service-detail > .container {
  position: relative;
  z-index: 1;
}

.service-detail-visual,
.img-ph--tall,
.img-ph--med,
.img-ph--hero {
  box-shadow: 0 32px 80px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.055);
}

.industry-block {
  padding: clamp(1.25rem, 2vw, 2rem);
  margin-bottom: 1.5rem;
}

.coverage-region {
  padding: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid transparent;
}

.contact-info-block {
  padding: 1.25rem 1.35rem;
}

.service-card:hover,
.service-card:focus,
.industry-card:hover,
.value-card:hover,
.cert-badge:hover {
  background:
    linear-gradient(rgba(30,31,31,0.88), rgba(16,16,16,0.9)) padding-box,
    linear-gradient(135deg, rgba(190,194,199,0.32), rgba(177,22,36,0.48), rgba(255,255,255,0.08)) border-box;
  transform: translateY(-3px);
}

.service-card::after,
.industry-card::after {
  background: linear-gradient(to right, transparent, #9e0001, #bec2c7, transparent);
  height: 1px;
}

.service-icon-wrap,
.industry-icon,
.trust-icon,
.coverage-dot,
.stat-number,
.speed-number,
.value-number {
  color: #b52432;
  filter: drop-shadow(0 0 18px rgba(158,0,1,0.24));
}

.img-ph {
  background:
    linear-gradient(145deg, rgba(35,35,35,0.78), rgba(8,8,8,0.9)),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(190,194,199,0.035) 22px 23px);
  border-color: rgba(190,194,199,0.14);
}

.service-detail .img-ph {
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.service-detail .img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.16), rgba(5,5,5,0.64)),
    linear-gradient(to top, rgba(5,5,5,0.62), transparent 45%);
}

.service-detail .img-ph-icon,
.service-detail .img-ph-label {
  display: none;
}

#general .img-ph {
  background-image: url('../assets/seattle-rav4-pickup.webp');
}

#other .img-ph {
  background-image: url('../assets/retail-overflow-pickup.webp');
}

#emergency .img-ph {
  background-image: url('../assets/emergency-rav4-i5-night.webp');
}

#contracts .img-ph {
  background-image: url('../assets/contract-route-planning.webp');
}

#medical .img-ph {
  background-image: url('../assets/healthcare-dispatch-night.webp');
}

#healthcare .img-ph {
  background-image: url('../assets/healthcare-clinic-pickup.webp');
}

#biotech .img-ph {
  background-image: url('../assets/biotech-lab-pickup.webp');
}

#legal .img-ph {
  background-image: url('../assets/legal-courthouse-handoff.webp');
}

.industry-legal .img-ph {
  background-image: url('../assets/legal-business-delivery.webp');
}

#business .img-ph {
  background-image: url('../assets/business-courier-handoff.webp');
}

#corporate .img-ph {
  background-image: url('../assets/corporate-office-pickup.webp');
}

.about-story .img-ph--tall {
  background:
    linear-gradient(135deg, rgba(5,5,5,0.16), rgba(5,5,5,0.72)),
    url('../assets/about-rav4-readiness.webp') center / cover no-repeat;
}

.about-story .img-ph--tall .img-ph-icon,
.about-story .img-ph--tall .img-ph-label {
  display: none;
}

.team-card {
  background:
    radial-gradient(circle at 30% 25%, rgba(158,0,1,0.18), transparent 15rem),
    repeating-linear-gradient(60deg, transparent 0 28px, rgba(190,194,199,0.035) 28px 29px),
    linear-gradient(145deg, rgba(35,35,35,0.68), rgba(8,8,8,0.86));
}

.cta-band {
  background:
    radial-gradient(circle at 80% 25%, rgba(190,194,199,0.12), transparent 20rem),
    repeating-linear-gradient(120deg, transparent 0 70px, rgba(255,255,255,0.03) 70px 71px),
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(26,6,10,0.82) 48%, rgba(5,5,5,0.88));
  border-top: 1px solid rgba(190,194,199,0.14);
  border-bottom: 1px solid rgba(158,0,1,0.3);
}

.cta-band::before {
  background: linear-gradient(135deg, rgba(158,0,1,0.24), rgba(190,194,199,0.05));
  box-shadow: -30px 0 80px rgba(158,0,1,0.14);
}

.cta-band::after {
  background: linear-gradient(to bottom, transparent, rgba(190,194,199,0.35), rgba(158,0,1,0.55), transparent);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(18,19,19,0.94), rgba(4,4,4,1)),
    radial-gradient(circle at 15% 0%, rgba(158,0,1,0.13), transparent 24rem);
}

.site-footer::before {
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(158,0,1,0.9), rgba(190,194,199,0.3), transparent);
}

input,
select,
textarea {
  background:
    linear-gradient(145deg, rgba(12,12,12,0.92), rgba(31,32,32,0.78));
  border-color: rgba(190,194,199,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(177,22,36,0.68);
  box-shadow: 0 0 0 3px rgba(158,0,1,0.14), inset 0 1px 0 rgba(255,255,255,0.05);
}

.wa-map {
  filter: drop-shadow(0 0 44px rgba(158,0,1,0.18)) drop-shadow(0 24px 60px rgba(0,0,0,0.35));
}

.wa-state {
  fill: rgba(28,30,30,0.92);
  stroke: rgba(190,194,199,0.2);
}

.wa-route {
  stroke: #9e0001;
  filter: drop-shadow(0 0 10px rgba(158,0,1,0.5));
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-accent-line,
  .hero-sub {
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .page-hero {
    min-height: 360px;
  }
}

@media (max-height: 760px) and (min-width: 769px) {
  .hero {
    min-height: 720px;
    padding-top: 118px;
    padding-bottom: 3rem;
  }

  .hero-headline {
    font-size: clamp(3.6rem, 6.2vw, 5.8rem);
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero-scroll-hint {
    display: none;
  }
}

.contact-direct-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; border-radius: var(--radius); }
.contact-action-stack { display: grid; gap: 0.9rem; }
@media (max-width: 640px) { .contact-direct-card { padding: 1.75rem; } }
