/* ============================================================
   Steele Cabling — Main Stylesheet
   steelecabling.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

/* ── CSS Variables ── */
:root {
  --steel-dark:    #0a0e14;
  --steel-deep:    #111820;
  --steel-mid:     #1c2736;
  --steel-border:  #243040;
  --steel-primary: #1a7fd4;
  --steel-bright:  #2e9dff;
  --steel-accent:  #f0a500;
  --steel-light:   #d0dce8;
  --steel-muted:   #6b8299;
  --steel-white:   #f4f8fc;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:        4px;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 30px rgba(26,127,212,0.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--steel-dark);
  color: var(--steel-light);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--steel-accent); }
ul { list-style: none; }

/* ── Star Particles (hero only) ── */
#star-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--steel-primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--steel-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title span { color: var(--steel-primary); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--steel-primary);
  color: var(--steel-white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: var(--steel-bright); color: var(--steel-white); box-shadow: var(--shadow-glow); }
.btn-outline {
  background: transparent;
  color: var(--steel-white);
  border: 2px solid var(--steel-border);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline:hover { border-color: var(--steel-primary); color: var(--steel-bright); }

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition);
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel-border);
}
/* Homepage only: start transparent over the hero, solidify on scroll */
body.page-home .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 20px 0;
}
body.page-home .site-header.scrolled {
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--steel-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel-white);
  line-height: 1;
}
.logo-wordmark span { color: var(--steel-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--steel-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--steel-white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-white) !important;
  background: var(--steel-primary);
  padding: 10px 20px !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--steel-bright); color: var(--steel-white) !important; }
.nav-cta::after { display: none !important; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--steel-white);
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,20,0.85) 0%, rgba(10,14,20,0.4) 60%, rgba(10,14,20,0.7) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 4s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,127,212,0.15);
  border: 1px solid rgba(26,127,212,0.4);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-bright);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--steel-white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .line-accent { color: var(--steel-primary); display: block; }
.hero-title .line-dim { color: rgba(244,248,252,0.55); display: block; }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--steel-light);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.4s both;
  opacity: 0.85;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  display: flex;
  gap: 1px;
  z-index: 2;
  animation: fadeInRight 1s ease 0.8s both;
}
.hero-stat {
  background: rgba(17,24,32,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--steel-border);
  padding: 20px 28px;
  text-align: center;
  min-width: 100px;
}
.hero-stat:first-child { border-left: 3px solid var(--steel-primary); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--steel-white);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--steel-muted);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--steel-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--steel-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Services ── */
.services { padding: 100px 0; background: var(--steel-deep); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-primary), transparent);
}
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--steel-mid);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,127,212,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  background: #1e2d40;
  border-bottom-color: var(--steel-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  transition: filter var(--transition);
}
.service-card:hover .service-icon {
  filter: brightness(1.4) saturate(1.2);
}
.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,127,212,0.08);
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(26,127,212,0.15); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel-white);
  margin-bottom: 12px;
}
.service-desc { font-size: 0.92rem; color: var(--steel-muted); line-height: 1.7; }

/* ── About / Why Choose Us ── */
.about { padding: 100px 0; background: var(--steel-dark); position: relative; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--steel-dark);
  box-shadow: var(--shadow-card);
  filter: saturate(0.85);
}
.about-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--steel-primary);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.about-text .section-label { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 20px; }
.about-desc { color: var(--steel-muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--steel-mid);
  border-left: 3px solid var(--steel-primary);
  transition: all var(--transition);
}
.about-feature:hover { background: #1e2d40; transform: translateX(6px); }
.about-feature-icon { width: 24px; height: 24px; color: var(--steel-primary); flex-shrink: 0; margin-top: 2px; }
.about-feature-text strong { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-white); font-size: 0.95rem; margin-bottom: 4px; }
.about-feature-text span { font-size: 0.88rem; color: var(--steel-muted); }

/* ── Projects / Gallery ── */
.projects { padding: 100px 0; background: var(--steel-deep); }
.projects-header { text-align: center; margin-bottom: 20px; }
.projects-header .section-label { justify-content: center; }
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--steel-border);
  color: var(--steel-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--steel-primary);
  border-color: var(--steel-primary);
  color: var(--steel-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: all 0.5s ease;
}
.gallery-item:hover img { filter: saturate(1) brightness(1); transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-white);
}
.before-after-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-before { background: rgba(200,50,50,0.85); color: #fff; }
.badge-after  { background: rgba(26,127,212,0.85); color: #fff; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; user-select: none; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid var(--steel-border);
  color: var(--steel-white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
  z-index: 1;
}
.lightbox-close:hover { background: var(--steel-primary); border-color: var(--steel-primary); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,14,20,0.7);
  border: 1px solid var(--steel-border);
  color: var(--steel-white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--steel-primary);
  border-color: var(--steel-primary);
}
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--steel-muted);
  background: rgba(10,14,20,0.7);
  padding: 6px 16px;
  border: 1px solid var(--steel-border);
}
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
}

/* ── Coverage ── */
.coverage { padding: 80px 0; background: var(--steel-mid); position: relative; overflow: hidden; }
.coverage-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.coverage-text { flex: 1; min-width: 280px; }
.coverage-map { flex: 1; min-width: 280px; text-align: center; }
.coverage-map-visual {
  background: var(--steel-deep);
  border: 1px solid var(--steel-border);
  padding: 32px;
  position: relative;
  display: inline-block;
}
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.city-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(26,127,212,0.1);
  border: 1px solid rgba(26,127,212,0.25);
  color: var(--steel-bright);
  transition: all var(--transition);
}
.city-tag:hover { background: rgba(26,127,212,0.2); border-color: var(--steel-bright); }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--steel-dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--steel-deep);
  border: 1px solid var(--steel-border);
  border-radius: 12px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--steel-primary);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--steel-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,127,212,0.15);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--steel-accent);
  flex-shrink: 0;
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--steel-light);
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--steel-border);
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel-primary), var(--steel-mid));
  border: 2px solid var(--steel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--steel-white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel-muted);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .testimonials { padding: 60px 0; }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .testimonial-card {
    padding: 28px 24px 24px;
  }
}

/* ── CTA Band ── */
.cta-band {
  padding: 80px 0;
  background: var(--steel-primary);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text .section-title { color: var(--steel-white); }
.cta-band-text .section-title span { color: var(--steel-accent); }
.cta-band-text p { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 1.05rem; }
.btn-cta-white {
  background: var(--steel-white);
  color: var(--steel-primary);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cta-white:hover { background: var(--steel-accent); color: var(--steel-dark); }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--steel-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--steel-primary);
}
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
  margin-bottom: 4px;
}
.contact-item-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel-white);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  color: var(--steel-white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel-primary);
  box-shadow: 0 0 0 3px rgba(26,127,212,0.15);
}
.form-group select option { background: var(--steel-deep); }
textarea { min-height: 130px; }
.form-submit { align-self: flex-start; }

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--steel-primary);
  color: var(--steel-white);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ── FAQ ── */
.faq-group { margin-bottom: 48px; }
.faq-group h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel-primary);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--steel-border);
}
.faq-item { border-bottom: 1px solid var(--steel-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--steel-white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--steel-bright); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--steel-muted);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--steel-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--steel-deep);
  border-top: 1px solid var(--steel-border);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--steel-border);
}
.footer-brand .logo-wordmark { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--steel-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--steel-border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--steel-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--steel-bright); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--steel-muted); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--steel-primary); flex-shrink: 0; }
.footer-contact-item a { color: var(--steel-muted); }
.footer-contact-item a:hover { color: var(--steel-bright); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--steel-muted);
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--steel-muted);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--steel-bright); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Legal Pages ── */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--steel-deep);
  border-bottom: 1px solid var(--steel-border);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.legal-hero-inner { position: relative; }
.legal-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--steel-muted);
  margin-bottom: 16px;
}
.legal-breadcrumb a { color: var(--steel-primary); }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel-white);
  margin-bottom: 12px;
}
.legal-hero .last-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--steel-muted);
  letter-spacing: 0.1em;
}
.legal-content { padding: 60px 0 100px; }
.legal-body { max-width: 820px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel-white);
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--steel-border);
}
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel-light);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-body p { color: var(--steel-muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.legal-body ul, .legal-body ol { color: var(--steel-muted); line-height: 1.8; margin-bottom: 16px; padding-left: 24px; font-size: 0.95rem; }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--steel-bright); }
.legal-body strong { color: var(--steel-light); font-weight: 600; }
.legal-info-box {
  background: rgba(26,127,212,0.08);
  border-left: 3px solid var(--steel-primary);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--steel-light);
}

/* ── Services Page ── */
.services-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.services-hero-inner { position: relative; }
.services-hero .section-label { justify-content: center; }
.services-detail { padding: 80px 0; }
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--steel-border);
}
.service-detail-block:nth-child(even) .service-detail-text { order: 2; }
.service-detail-block:nth-child(even) .service-detail-img { order: 1; }
.service-detail-img {
  position: relative;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.85);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: filter var(--transition);
}
.service-detail-img:hover img { filter: saturate(1); }
.service-detail-text .service-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.service-detail-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel-white);
  margin-bottom: 16px;
}
.service-detail-desc { color: var(--steel-muted); line-height: 1.8; margin-bottom: 20px; }
.service-detail-list { display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--steel-light);
}
.service-detail-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--steel-primary);
  flex-shrink: 0;
}

/* ── Projects Page ── */
.projects-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
}
.projects-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.before-after-section { padding: 80px 0; background: var(--steel-dark); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 40px; }
.ba-item { position: relative; overflow: hidden; }
.ba-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.8); transition: filter var(--transition); display: block; }
.ba-item:hover img { filter: saturate(1); }
.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.9), transparent);
  padding: 20px 16px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: var(--steel-white);
}
.ba-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-badge.before { background: rgba(220,60,60,0.85); color: #fff; }
.ba-badge.after  { background: rgba(26,127,212,0.9); color: #fff; }

/* ── About Page ── */
.about-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.value-card {
  background: var(--steel-mid);
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.value-card:hover {
  border-bottom-color: var(--steel-primary);
  background: #1e2d40;
  transform: translateY(-4px);
}
.value-icon { width: 44px; height: 44px; color: var(--steel-primary); margin: 0 auto 16px; }
.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel-white);
  margin-bottom: 10px;
}
.value-desc { font-size: 0.88rem; color: var(--steel-muted); line-height: 1.7; }

/* ── Contact Page ── */
.contact-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-page-inner {
  padding: 80px 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-page-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: var(--steel-mid);
  padding: 28px 24px;
  border-left: 3px solid var(--steel-primary);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-info-card:hover { background: #1e2d40; transform: translateX(6px); }
.contact-card-icon { width: 28px; height: 28px; color: var(--steel-primary); flex-shrink: 0; margin-top: 2px; }
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
  margin-bottom: 6px;
}
.contact-card-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel-white);
}
.contact-card-val a { color: var(--steel-white); }
.contact-card-val a:hover { color: var(--steel-bright); }
.contact-card-sub { font-size: 0.82rem; color: var(--steel-muted); margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  /* Hero stats drop out of absolute positioning before they collide with hero content */
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
  .hero > .container {
    padding-bottom: 48px;
  }
  .hero-stats {
    position: static;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1px;
    width: 100%;
    margin-top: 48px;
    animation: none;
  }
  .hero-stat {
    flex: 1;
    min-width: 120px;
  }
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-block { grid-template-columns: 1fr; }
  .service-detail-block:nth-child(even) .service-detail-text { order: unset; }
  .service-detail-block:nth-child(even) .service-detail-img { order: unset; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  #mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #0a0e14;
    z-index: 997;
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    overflow-y: auto;
  }
  #mobile-nav-overlay.open { display: flex; }
  #mobile-nav-overlay a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel-light);
    padding: 16px;
    border-bottom: 1px solid var(--steel-border);
    text-decoration: none;
    transition: color var(--transition);
  }
  #mobile-nav-overlay a:hover,
  #mobile-nav-overlay a.nav-active { color: var(--steel-bright); }
  #mobile-nav-overlay .nav-cta {
    margin-top: 16px;
    justify-content: center;
    color: var(--steel-white) !important;
    border: 1px solid var(--steel-primary);
    border-bottom: 1px solid var(--steel-primary);
    padding: 14px 16px;
    text-align: center;
  }

  /* ── Hero ── */
  /* hero-stats shown in flow on mobile — see .hero-stats override above */
  .hero { min-height: 85vh; padding-top: 80px; flex-direction: column; justify-content: center; align-items: stretch; }
  .hero-content { padding: 0 4px; }
  .hero-stats {
    position: static;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 40px;
    animation: none;
    width: 100%;
  }
  .hero-stat {
    flex: 1;
    min-width: 100px;
    padding: 16px 12px;
  }
  .scroll-indicator { display: none; }

  /* ── Section padding reduction ── */
  .services { padding: 60px 0; }
  .about { padding: 60px 0; }
  .projects { padding: 60px 0; }
  .coverage { padding: 48px 0; }
  .contact { padding: 60px 0; }
  .before-after-section { padding: 60px 0; }
  .cta-band { padding: 48px 0; }
  .services-detail { padding: 48px 0; }

  /* ── Hero sections on inner pages ── */
  .projects-hero,
  .contact-hero { padding: 100px 0 40px; }
  .legal-hero { padding: 100px 0 40px; }
  .about-hero { padding: 100px 0 40px; }
  .services-hero { padding: 100px 0 40px; }

  /* ── Grids ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .ba-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* ── About visual — prevent accent image clipping outside container ── */
  .about-visual { padding-bottom: 0; }
  .about-img-accent {
    position: static;
    width: 60%;
    margin: 12px auto 0;
    border: 3px solid var(--steel-dark);
  }
  .about-badge { top: 8px; left: 8px; font-size: 0.75rem; padding: 10px 14px; }

  /* ── Services grid min-width fix ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* ── Service detail blocks ── */
  .service-detail-block { gap: 24px; }
  .service-detail-text { padding: 0; }

  /* ── Contact teaser ── */
  .contact-teaser { padding: 24px 20px; }

  /* ── Contact page cards ── */
  .contact-info-card { padding: 16px; }

  /* ── Legal pages ── */
  .legal-body { padding: 0 4px; }
  .legal-body h2 { font-size: 1rem; }
  .legal-info-box { padding: 16px; font-size: 0.9rem; }

  /* ── Footer bottom — wrap legal links on narrow screens ── */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px 20px; }

  /* ── CTA band button — prevent clip-path overflow ── */
  .btn-cta-white { width: 100%; justify-content: center; box-sizing: border-box; }

  /* ── Buttons ── */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Contact Teaser (homepage) ── */
.contact-teaser {
  background: var(--steel-card);
  border: 1px solid var(--steel-border);
  border-radius: 4px;
  padding: 40px;
}
.contact-teaser-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-teaser-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-teaser-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--steel-bright);
  background: rgba(26,127,212,0.1);
  border: 1px solid rgba(26,127,212,0.25);
  border-radius: 2px;
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-teaser-step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-teaser-step-desc {
  font-size: 0.88rem;
  color: var(--steel-muted);
  line-height: 1.55;
}

/* ── Active nav link ── */
.nav-links a.nav-active {
  color: var(--steel-bright);
}

/* Hide mobile overlay on all screen sizes by default; shown only via JS .open class on mobile */
#mobile-nav-overlay {
  display: none;
}

/* ── Narrow phones (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .service-card { padding: 24px 20px; }
  .contact-teaser { padding: 20px 16px; }
  .footer-col { padding: 0; }
  .footer-legal-links { flex-direction: column; gap: 10px; }
  .btn-cta-white { padding: 14px 20px; font-size: 0.9rem; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
  .service-detail-list { padding-left: 16px; }
  .legal-body ul, .legal-body ol { padding-left: 16px; }
  .ba-item img { max-height: 240px; object-fit: cover; }
}

/* ── Back to Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--steel-primary);
  color: var(--steel-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--steel-bright); }
@media (max-width: 768px) {
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ── About Stats Grid ── */
.about-stats-section {
  padding: 60px 0;
  background: var(--steel-mid);
  border-top: 1px solid var(--steel-border);
  border-bottom: 1px solid var(--steel-border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.about-stat-box {
  background: var(--steel-deep);
  padding: 40px 24px;
  text-align: center;
}
.about-stat-box--accent {
  border-left: 3px solid var(--steel-primary);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--steel-white);
  display: block;
}
.about-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
  margin-top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-box {
    padding: 32px 16px;
  }
  .about-stat-num {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .about-stat-num { font-size: 2rem; }
  .about-stat-box { padding: 28px 12px; }
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.nav-dropdown-trigger svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 20, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--steel-border);
  min-width: 560px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  z-index: 2000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}
.nav-dropdown-group {
  padding: 20px 24px;
  border-right: 1px solid var(--steel-border);
}
.nav-dropdown-group:last-child { border-right: none; }
.nav-dropdown-heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--steel-border);
}
.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-light);
  padding: 5px 0;
  transition: color var(--transition);
}
.nav-dropdown-menu a:hover { color: var(--steel-bright); }
.nav-dropdown-menu a::after { display: none; }

/* ── Service Locations Page ── */
.locations-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
}
.locations-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,127,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.location-card {
  background: var(--steel-deep);
  border: 1px solid var(--steel-border);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--steel-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.location-card:hover::before { transform: scaleX(1); }
.location-card:hover { border-color: rgba(26,127,212,0.4); transform: translateY(-2px); }
.location-card-region {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-accent);
}
.location-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel-white);
  line-height: 1.1;
}
.location-card-desc {
  font-size: 0.88rem;
  color: var(--steel-muted);
  line-height: 1.55;
  flex: 1;
}
.location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
}
.location-card-link:hover { gap: 12px; color: var(--steel-accent); }
.location-card-link svg { flex-shrink: 0; }

/* ── City Page ── */
.city-hero {
  padding: 140px 0 80px;
  background: var(--steel-deep);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--steel-border);
}
.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 70% 50%, rgba(26,127,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.city-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.city-hero-eyebrow a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
  transition: color var(--transition);
}
.city-hero-eyebrow a:hover { color: var(--steel-bright); }
.city-hero-eyebrow span { color: var(--steel-border); }
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 40px;
}
.city-service-card {
  background: var(--steel-deep);
  border: 1px solid var(--steel-border);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.city-service-card:hover { border-color: rgba(26,127,212,0.4); transform: translateY(-2px); }
.city-service-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--steel-primary);
  stroke: currentColor;
}
.city-service-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel-white);
  margin-bottom: 6px;
}
.city-service-desc {
  font-size: 0.85rem;
  color: var(--steel-muted);
  line-height: 1.55;
}
.city-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.city-highlight-box {
  background: var(--steel-mid);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--steel-border);
}
.city-highlight-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--steel-primary);
  line-height: 1;
  display: block;
}
.city-highlight-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-muted);
  margin-top: 8px;
  display: block;
}
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.nearby-city-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(26,127,212,0.08);
  border: 1px solid rgba(26,127,212,0.2);
  color: var(--steel-bright);
  transition: all var(--transition);
  text-decoration: none;
}
.nearby-city-link:hover {
  background: rgba(26,127,212,0.2);
  border-color: var(--steel-bright);
  color: var(--steel-white);
}
@media (max-width: 768px) {
  .city-highlights { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: 1fr; }
  .nav-dropdown-menu { min-width: 300px; grid-template-columns: 1fr; }
}

/* ── City tags as links ── */
a.city-tag {
  text-decoration: none;
  cursor: pointer;
}
a.city-tag:hover {
  background: rgba(26,127,212,0.25);
  border-color: var(--steel-bright);
  color: var(--steel-white);
}

/* ── Mobile dropdown in overlay ── */
@media (max-width: 900px) {
  .nav-dropdown { display: contents; }
  .nav-dropdown-trigger { display: flex; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: unset;
    width: 100%;
    display: none !important; /* always hidden on mobile — items cloned into overlay */
  }
}

/* ── Two-column about grid responsive ── */
@media (max-width: 768px) {
  .city-hero::after { display: none; }
}

/* ── City Page Two-Column Grid ── */
.city-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .city-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .city-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .city-highlights {
    grid-template-columns: 1fr 1fr;
  }
}
