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

:root {
  --orange: #e85c2c;
  --amber: #ffb000;
  --reflective: #f5d020;
  --dark: #1a1a1a;
  --asphalt: #232323;
  --gray: #555;
  --light: #f5f5f5;
  --white: #fff;
  --trust: #2c6e9e;
  --max: 1100px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* TOP BAR */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 0.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: #ccc;
}
.topbar a:hover {
  color: var(--white);
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #ddd;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 200;
}
.nav-links .dropdown:hover ul {
  display: block;
}
.nav-links .dropdown ul li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.nav-links .dropdown ul li a:hover {
  background: var(--light);
  color: var(--orange);
}
.btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  background: #1a1a1a;
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

/* CLIENT LOGOS */
.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 0;
}
.clients-grid img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition:
    opacity 0.2s,
    filter 0.2s;
}
.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* PAGE HEADER */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
}
.page-header p {
  color: #aaa;
  margin-top: 0.5rem;
}

/* SECTIONS */
section {
  padding: 4rem 1.5rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.intro-text {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 720px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.service-card {
  border-top: 4px solid var(--orange);
}

/* STATS BAR */
.stats-bar {
  background: var(--orange);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* CERTIFICATIONS */
.cert-bar {
  background: var(--light);
  padding: 2rem 1.5rem;
  text-align: center;
}
.cert-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.cert-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cert-item {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* SERVICES LIST */
.services-section {
  background: var(--light);
}
.service-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #ddd;
}
.service-block:last-child {
  border-bottom: none;
}
.service-block h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.service-block h3 span {
  color: var(--orange);
  margin-right: 0.5rem;
}
ul.check-list {
  list-style: none;
  margin-top: 0.8rem;
}
ul.check-list li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}
ul.check-list li {
  margin-bottom: 0.3rem;
}

/* CTA */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: #aaa;
  margin-bottom: 2rem;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info p {
  margin-bottom: 0.8rem;
  color: var(--gray);
}
.contact-info strong {
  color: var(--dark);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form input,
form textarea,
form select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
form textarea {
  min-height: 130px;
  resize: vertical;
}
form button {
  background: var(--orange);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
form button:hover {
  opacity: 0.85;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 0.4rem;
}
footer ul li a:hover {
  color: var(--orange);
}
footer a {
  color: #aaa;
  transition: color 0.2s;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-logo span {
  color: var(--orange);
}
.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  text-align: center;
}

/* ============================================================
   PHASE 1 — VISUAL & ANIMATION UPGRADE (PRD 2026-06-02)
   ============================================================ */

/* --- SCROLL REVEAL ENGINE --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-reveal="fade"] {
  transform: none;
}
[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

/* --- HERO REBUILD (operational) --- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.5rem 5.5rem;
}
.hero-bg {
  opacity: 0.42;
  transform: scale(1.06);
  animation: heroKenBurns 18s ease-out forwards;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 15, 0.55) 0%,
    rgba(20, 18, 15, 0.35) 45%,
    rgba(20, 18, 15, 0.82) 100%
  );
  z-index: 1;
}
.hero-content {
  z-index: 2;
  text-align: left;
  max-width: 760px;
  margin: 0;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  letter-spacing: -0.01em;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero p {
  margin-left: 0;
  margin-right: 0;
}
.hero-btns {
  justify-content: flex-start;
}

/* Lane-line motion strip in lower hero */
.hero-lanes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}
.hero-lanes::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 6px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--reflective) 0 48px,
    transparent 48px 96px
  );
  opacity: 0.55;
  animation: laneScroll 2.4s linear infinite;
}

/* Trust marker row */
.trust-row {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f0f0f0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.trust-badge::before {
  content: "✓";
  color: var(--reflective);
}

/* Live "ready for dispatch" beacon */
.beacon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(255, 176, 0, 0.7);
  animation: beaconPulse 2s var(--ease) infinite;
}

/* --- EMERGENCY RESPONSE BAND --- */
.emergency-band {
  background: linear-gradient(90deg, var(--orange) 0%, #d24a1e 100%);
  color: var(--white);
  padding: 1.4rem 1.5rem;
}
.emergency-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.emergency-msg {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.emergency-msg .beacon {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
.emergency-msg h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
}
.emergency-msg p {
  font-size: 0.9rem;
  opacity: 0.92;
  margin: 0;
}
.btn-emergency {
  background: var(--white);
  color: var(--orange) !important;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* --- DISPATCH TIMELINE --- */
.timeline-section {
  background: var(--asphalt);
  color: var(--white);
}
.timeline-section h2 {
  color: var(--white);
}
.timeline-section .section-label {
  color: var(--reflective);
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25) 0 14px,
    transparent 14px 26px
  );
}
.timeline-progress {
  position: absolute;
  top: 26px;
  left: 6%;
  height: 3px;
  width: 0;
  background: var(--reflective);
  transition: width 1.4s var(--ease);
  box-shadow: 0 0 8px var(--reflective);
}
.timeline.is-visible .timeline-progress {
  width: 88%;
}
.tl-step {
  position: relative;
  text-align: center;
  z-index: 2;
}
.tl-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--asphalt);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  transition:
    border-color 0.4s var(--ease),
    background 0.4s,
    color 0.4s;
}
.timeline.is-visible .tl-step .tl-num {
  border-color: var(--reflective);
  background: var(--reflective);
  color: var(--dark);
}
.tl-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.tl-step p {
  font-size: 0.82rem;
  color: #bbb;
}

/* --- ANIMATED SERVICE TILES --- */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}
.tile {
  position: relative;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.8rem;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
}
.tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tile:hover,
.tile:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.tile:hover::before,
.tile:focus-within::before {
  transform: scaleX(1);
}
.tile-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff4ef;
  font-size: 1.6rem;
}
.tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.tile p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}
.tile-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.tile-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.tile:hover .tile-link::after {
  transform: translateX(4px);
}

/* Tile micro-animations */
.tile:hover .tile-icon .lane-arrow {
  animation: laneArrowMove 0.9s var(--ease) infinite;
}
.tile:hover .tile-icon .beacon-mini {
  animation: beaconPulse 1.4s var(--ease) infinite;
}
.lane-arrow,
.beacon-mini {
  display: inline-block;
}

/* --- CLIENT LOGO MARQUEE POLISH --- */
.clients-marquee {
  overflow: hidden;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.clients-group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  flex-shrink: 0;
}
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}
.clients-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition:
    opacity 0.25s,
    filter 0.25s;
}
.clients-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- SECTION CTA CONSISTENCY --- */
.btn-lg {
  font-size: 1.05rem;
  padding: 0.8rem 2rem;
}
.cta-section .btn {
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 92, 44, 0.4);
}

/* --- KEYFRAMES --- */
@keyframes heroKenBurns {
  to {
    transform: scale(1);
  }
}
@keyframes laneScroll {
  to {
    transform: translate(-96px, -50%);
  }
}
@keyframes beaconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 176, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 176, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 176, 0, 0);
  }
}
@keyframes laneArrowMove {
  0% {
    transform: translateX(-3px);
    opacity: 0.5;
  }
  50% {
    transform: translateX(3px);
    opacity: 1;
  }
  100% {
    transform: translateX(-3px);
    opacity: 0.5;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
  .tiles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .timeline::before,
  .timeline-progress {
    display: none;
  }
  .tl-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .tl-num {
    margin: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 560px) {
  .tiles-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
    padding-top: 5rem;
  }
  .emergency-inner {
    justify-content: center;
    text-align: center;
  }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg {
    transform: scale(1);
    opacity: 0.42;
  }
  .hero-lanes::before {
    animation: none;
  }
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .timeline.is-visible .timeline-progress {
    width: 88%;
    transition: none;
  }
}

/* ============================================================
   PHASE 2 — SERVICES & ABOUT DEPTH (PRD 2026-06-02)
   ============================================================ */

/* --- SERVICE DETAIL SECTIONS (alternating) --- */
.svc {
  padding: 4rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.svc:last-of-type {
  border-bottom: none;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.svc:nth-child(even) .svc-media {
  order: -1;
}
.svc-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.svc-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.svc:hover .svc-media img {
  transform: scale(1.04);
}
.svc-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.svc h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
.svc-desc {
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.svc-meta {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.svc-best,
.svc-compliance {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.svc-best {
  background: #fff4ef;
  border-left: 3px solid var(--orange);
}
.svc-compliance {
  background: #eef4f8;
  border-left: 3px solid var(--trust);
}
.svc-best strong,
.svc-compliance strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.svc-best strong {
  color: var(--orange);
}
.svc-compliance strong {
  color: var(--trust);
}

/* Service motion accents on media */
.svc-lanes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--reflective) 0 30px,
    transparent 30px 60px
  );
  opacity: 0.85;
  z-index: 2;
}
.svc.is-visible .svc-lanes {
  animation: laneScroll 2s linear infinite;
}

/* Animated route draw (SVG) for detour service */
.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.route-path {
  fill: none;
  stroke: var(--reflective);
  stroke-width: 4;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  stroke-dashoffset: 600;
  opacity: 0;
}
.svc.is-visible .route-path {
  opacity: 0.95;
  animation:
    routeDraw 2.2s var(--ease) forwards,
    routeFlow 1.4s linear 2.2s infinite;
}

/* Permit checkmark badge */
.permit-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.permit-badge svg {
  width: 30px;
  height: 30px;
}
.permit-check {
  fill: none;
  stroke: #18a558;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
.svc.is-visible .permit-check {
  animation: drawCheck 0.7s var(--ease) 0.4s forwards;
}

/* --- ABOUT: CREDIBILITY STATS STRIP --- */
.stats-strip {
  background: var(--dark);
  color: #fff;
  padding: 3rem 1.5rem;
}
.stats-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--reflective);
  line-height: 1;
}
.stat-item .stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #bbb;
  letter-spacing: 0.02em;
}

/* --- ABOUT: SAFETY STANDARDS MODULE --- */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.standard-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.6rem;
  position: relative;
}
.standard-card .check-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
}
.standard-card .check-icon svg {
  width: 100%;
  height: 100%;
}
.standard-card .draw-check {
  fill: none;
  stroke: #18a558;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.standard-card.is-visible .draw-check {
  animation: drawCheck 0.6s var(--ease) forwards;
}
.standard-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.standard-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* --- ABOUT: COVERAGE MAP --- */
.coverage {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.coverage img {
  width: 100%;
  display: block;
}
.coverage-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 38% 46%,
    rgba(232, 92, 44, 0) 0%,
    rgba(232, 92, 44, 0) 40%,
    rgba(26, 26, 26, 0.04) 100%
  );
}
.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -100%) scale(0);
  z-index: 3;
}
.coverage.is-visible .map-pin {
  animation: pinDrop 0.5s var(--ease) forwards;
}
.coverage.is-visible .map-pin:nth-child(2) {
  animation-delay: 0.15s;
}
.coverage.is-visible .map-pin:nth-child(3) {
  animation-delay: 0.3s;
}
.map-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(232, 92, 44, 0.35);
  animation: pinPulse 2.2s var(--ease) infinite;
}
.map-label {
  position: absolute;
  transform: translate(-50%, 6px);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
}
.coverage.is-visible .map-label {
  animation: fadeIn 0.4s var(--ease) 0.5s forwards;
}

/* --- PHASE 2 KEYFRAMES --- */
@keyframes routeDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes routeFlow {
  to {
    stroke-dashoffset: -28;
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pinDrop {
  to {
    transform: translate(-50%, -100%) scale(1);
  }
}
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --- PHASE 2 RESPONSIVE --- */
@media (max-width: 860px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .svc:nth-child(even) .svc-media {
    order: 0;
  }
  .svc-media img {
    height: 240px;
  }
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* --- PHASE 2 REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .svc.is-visible .svc-lanes,
  .svc.is-visible .route-path,
  .map-pin::after {
    animation: none !important;
  }
  .route-path {
    opacity: 0.95;
    stroke-dashoffset: 0;
  }
  .permit-check,
  .draw-check {
    stroke-dashoffset: 0 !important;
  }
  .coverage.is-visible .map-pin {
    transform: translate(-50%, -100%) scale(1);
  }
  .coverage.is-visible .map-label {
    opacity: 1;
  }
}

/* ============================================================
   PHASE 3 — CAREERS & CONTACT EXPERIENCE (PRD 2026-06-02)
   ============================================================ */

/* --- CAREERS RECRUITING HERO --- */
.careers-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.careers-hero .hero-bg {
  opacity: 0.35;
}
.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 15, 0.6),
    rgba(20, 18, 15, 0.85)
  );
  z-index: 1;
}
.careers-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.careers-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.careers-hero h1 span {
  color: var(--reflective);
}
.careers-hero p {
  font-size: 1.12rem;
  color: #ddd;
  max-width: 620px;
  margin-bottom: 1.8rem;
}

/* --- REQUIREMENTS CHECKLIST --- */
.req-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 640px;
}
.req-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1rem 1.3rem;
}
.req-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf7ef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.req-check svg {
  width: 20px;
  height: 20px;
}
.req-check .draw-check {
  fill: none;
  stroke: #18a558;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.req-item.is-visible .draw-check {
  animation: drawCheck 0.6s var(--ease) forwards;
}
.req-item h4 {
  font-size: 1rem;
  margin: 0 0 0.1rem;
}
.req-item p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* --- APPLICATION CTA CARDS --- */
.apply-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-top: 2rem;
}
.apply-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.apply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.apply-card .apply-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.apply-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.apply-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

/* Equal-opportunity / compliance (visually secondary) */
.eo-note {
  margin-top: 2.5rem;
  padding: 1.3rem 1.5rem;
  background: var(--light);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
}

/* --- CONTACT HIERARCHY --- */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 860px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
}

.contact-cards {
  display: grid;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s var(--ease);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.contact-card.emergency {
  border-color: var(--orange);
  background: #fff7f4;
}
.contact-card .cc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #fff4ef;
}
.contact-card.emergency .cc-icon {
  background: var(--orange);
}
.contact-card h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin: 0 0 0.2rem;
}
.contact-card .cc-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.contact-card.emergency .cc-value {
  color: var(--orange);
  font-size: 1.2rem;
}
.contact-card .cc-sub {
  font-size: 0.82rem;
  color: var(--gray);
}

/* --- STICKY MOBILE ACTION BAR --- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.6rem 0.3rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  min-height: 52px;
}
.mobile-bar .mb-icon {
  font-size: 1.15rem;
}
.mobile-bar .mb-call {
  background: var(--orange);
  color: #fff !important;
}
.mobile-bar .mb-quote {
  background: var(--dark);
  color: #fff !important;
}
.mobile-bar .mb-email {
  background: var(--light);
  color: var(--dark) !important;
}
@media (max-width: 720px) {
  .mobile-bar {
    display: grid;
  }
  body {
    padding-bottom: 70px;
  }
}

/* --- PHASE 3 RESPONSIVE --- */
@media (max-width: 720px) {
  .apply-cards {
    grid-template-columns: 1fr;
  }
}

/* --- PHASE 3 REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .req-item.is-visible .draw-check {
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }
}

/* ============================================================
   PHASE 4 — RICH MEDIA UPGRADE (PRD 2026-06-02)
   ============================================================ */

/* --- VIDEO-READY HERO --- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
}
/* Video sits above the image poster; if no video loads, .hero-bg image shows through */

/* --- BEFORE / AFTER SLIDER --- */
.ba-section {
  background: var(--light);
}
.ba-wrap {
  position: relative;
  max-width: 920px;
  margin: 2rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  user-select: none;
  aspect-ratio: 16 / 9;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  z-index: 1;
}
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 18, 15, 0.7);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(3px);
}
.ba-label.before {
  left: 14px;
}
.ba-label.after {
  right: 14px;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--reflective);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(245, 208, 32, 0.8);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  background: var(--reflective);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: ew-resize;
}
.ba-knob::before {
  content: "⟺";
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

/* --- PROJECT GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item::after {
  content: "⤢";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(232, 92, 44, 0);
  opacity: 0;
  transition:
    background 0.3s,
    opacity 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  background: rgba(232, 92, 44, 0.5);
  opacity: 1;
}
.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 9, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.2s var(--ease) forwards;
  opacity: 0;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lb-close {
  top: 1.5rem;
  right: 1.5rem;
}
.lb-nav.prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lb-nav.next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* --- PHASE 4 RESPONSIVE --- */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .lb-nav {
    width: 40px;
    height: 40px;
  }
}

/* --- PHASE 4 REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    /* still plays muted loop; browsers respect autoplay policy */
  }
  .gallery-item:hover img {
    transform: none;
  }
  .lightbox.open {
    animation: none;
    opacity: 1;
  }
}
