/* ============================================================
   Trench Logistics LLC — Static Site Styles
   Palette: deep navy + safety orange (road & freight identity)
   ============================================================ */

:root {
  --navy: #0a1a2f;
  --navy-2: #122a45;
  --navy-3: #1b3a5c;
  --ink: #141d2b;
  --muted: #5b6b7f;
  --accent: #f47521;
  --accent-dark: #d95f0e;
  --gold: #ffb020;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --line: #e4e8ee;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(10, 26, 47, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 26, 47, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 26, 47, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
}

p {
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(244, 117, 33, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 117, 33, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.12rem;
}

/* ============================================================
   Top bar
   ============================================================ */

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  position: relative;
  z-index: 60;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 12px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.topbar .tb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.topbar .btn-topbar {
  background: var(--accent);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.topbar .btn-topbar:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(244, 117, 33, 0.35);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.brand-text {
  line-height: 1.05;
}

.brand-name {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
}

.brand-sub {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a.nav-link {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}

.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.active {
  color: var(--accent);
}

.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.15;
}

.header-phone .hp-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-phone .hp-number {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.header-phone .hp-number:hover {
  color: var(--accent);
}

.btn-quote {
  background: var(--accent);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 8px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-quote:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav .btn {
  margin-top: 24px;
}

.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

body.nav-open {
  overflow: hidden;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 26, 47, 0.92) 0%,
    rgba(10, 26, 47, 0.78) 45%,
    rgba(10, 26, 47, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 140px;
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 117, 33, 0.16);
  border: 1px solid rgba(244, 117, 33, 0.45);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 .hl {
  color: var(--gold);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  margin: 22px 0 34px;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(10, 26, 47, 0.78);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex: 0 0 auto;
}

.hero-stat .hs-num {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stat .hs-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   Section scaffolding
   ============================================================ */

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--bg-soft);
}

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

.section-navy h2,
.section-navy h3,
.section-navy p {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin: 0 0 40px;
  text-align: left;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.section-head .kicker {
  justify-content: center;
}

.section-head.left .kicker {
  justify-content: flex-start;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.08rem;
}

.section-navy .kicker {
  color: var(--gold);
}

.section-navy .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   Stats band
   ============================================================ */

.stats-band {
  background: var(--navy);
  border-top: 4px solid var(--accent);
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 44px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .si-num {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item .si-label {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   Services cards
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(244, 117, 33, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.97rem;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.card-link:hover svg {
  transform: translateX(5px);
}

/* ============================================================
   Split / feature rows (image + content)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split-media .media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(10, 26, 47, 0.35);
}

.split-copy p {
  margin-bottom: 18px;
}

.check-list {
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ============================================================
   Feature grid (why choose us)
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card .service-icon {
  margin: 0 auto 20px;
  background: var(--navy);
  color: var(--gold);
}

.feature-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.96rem;
}

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 55%, #20507d 100%);
  color: var(--white);
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 117, 33, 0.28), transparent 65%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
  max-width: 620px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   Coverage strip
   ============================================================ */

.coverage-strip {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.coverage-strip-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.coverage-strip-media video,
.coverage-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 26, 47, 0.94) 0%, rgba(10, 26, 47, 0.82) 55%, rgba(10, 26, 47, 0.55) 100%);
}

.coverage-strip .container {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
  max-width: 680px;
}

.coverage-strip h2 {
  color: var(--white);
}

.coverage-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 28px;
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-track {
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 8px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
}

.testimonial-stars svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 26px;
}

.testimonial-author .ta-name {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--navy);
}

.testimonial-author .ta-role {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.t-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.t-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.t-btn svg {
  width: 20px;
  height: 20px;
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.t-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   Contact section
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 18px;
}

.info-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-card .service-icon {
  width: 48px;
  height: 48px;
  margin: 0;
}

.info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.info-card p,
.info-card a {
  font-size: 0.97rem;
  color: var(--muted);
}

.info-card a:hover {
  color: var(--accent);
}

/* ============================================================
   Forms
   ============================================================ */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
  color: var(--navy);
}

.form-group label span.req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 117, 33, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: #e8f7ee;
  border: 1px solid #b6e6c8;
  color: #1d7a44;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f5b8b2;
  color: #b3261e;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-error.show {
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px 0 56px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--accent);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer-col ul a svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-hours {
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */

.page-hero {
  position: relative;
  color: var(--white);
  padding: 130px 0 110px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media video,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10, 26, 47, 0.95) 30%, rgba(10, 26, 47, 0.6) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.page-hero .breadcrumbs {
  margin-top: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-hero .breadcrumbs a {
  color: var(--gold);
}

.page-hero .breadcrumbs a:hover {
  color: var(--white);
}

.page-hero .breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Services detail rows (services page)
   ============================================================ */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-row:nth-child(even) .service-row-media {
  order: 2;
}

.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.service-row h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-row h3 .service-icon {
  width: 52px;
  height: 52px;
  margin: 0;
}

.service-row p {
  margin-bottom: 14px;
}

.service-row ul {
  margin: 6px 0 8px;
  display: grid;
  gap: 8px;
}

.service-row ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
}

.service-row ul svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 3px;
}

/* ============================================================
   Steps / process
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(244, 117, 33, 0.35);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
}

/* ============================================================
   Coverage page
   ============================================================ */

.states-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.state-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.95rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.state-chip:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.region-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-card h3 svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.region-card p {
  font-size: 0.96rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

/* ============================================================
   Values / about
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.96rem;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 22px;
}

.timeline-year {
  flex: 0 0 auto;
  width: 92px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 4px;
}

.timeline-item .tl-body {
  border-left: 2px solid var(--line);
  padding-left: 24px;
  padding-bottom: 6px;
}

.timeline-item .tl-body strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.timeline-item .tl-body p {
  font-size: 0.95rem;
}

/* ============================================================
   Quote page extras
   ============================================================ */

.quote-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.quote-side {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.quote-side h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.quote-side p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.quote-side ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.quote-side li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.quote-side li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--navy);
}

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.98rem;
}

/* ============================================================
   Back to top
   ============================================================ */

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(244, 117, 33, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 40;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--accent-dark);
}

.to-top svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .hero-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat:nth-child(2) {
    border-right: none;
  }
  .hero-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .services-grid,
  .features-grid,
  .values-grid,
  .coverage-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .states-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 72px;
  }
  .main-nav,
  .header-cta .btn-quote,
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .split,
  .service-row,
  .contact-grid,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-row:nth-child(even) .service-row-media {
    order: 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .topbar .tb-hide-md {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }
  .services-grid,
  .features-grid,
  .values-grid,
  .coverage-cards {
    grid-template-columns: 1fr;
  }
  .steps-grid,
  .stats-band .container,
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-band .container {
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 12px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .states-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 40px;
  }
  .hero {
    min-height: 92vh;
  }
  .hero-content {
    padding: 110px 0 150px;
  }
  .hero-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .topbar .container {
    justify-content: center;
  }
  .topbar-right .tb-email {
    display: none;
  }
  .form-card,
  .quote-side,
  .testimonial-card {
    padding: 28px;
  }
  .timeline-item {
    flex-direction: column;
    gap: 8px;
  }
}
/* ============================================================
   Polish / beautification overrides (appended)
   ============================================================ */

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 0;
}

/* Visible focus ring */
:focus-visible {
  outline: 3px solid rgba(244, 117, 33, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Anchor scroll offset under sticky header */
section {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

/* Equal-height cards so grid rows align */
.services-grid .service-card,
.features-grid .feature-card,
.values-grid .value-card,
.coverage-cards .region-card,
.steps-grid .step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-grid .service-card p,
.features-grid .feature-card p,
.values-grid .value-card p {
  flex-grow: 1;
}

.service-card .card-link {
  margin-top: auto;
}

/* Service row spacing via CSS instead of inline styles */
.service-row + .service-row {
  margin-top: 80px;
}

/* Interior page hero lead paragraph */
.page-hero-lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.15rem;
  margin-top: 14px;
  max-width: 620px;
}

/* Brand mark subtle interaction */
.brand-mark {
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand-mark {
  transform: scale(1.06) rotate(-3deg);
}

/* Hero entrance animation */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: heroFade 0.85s var(--ease) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }

/* Testimonial quote marks flourish */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
}

/* Info card icon color consistency */
.info-card .service-icon {
  background: var(--navy);
  color: var(--gold);
}

/* Service row copy block */
.service-row-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-row-copy .btn {
  margin-top: 10px;
}

/* Phone link in quote sidebar */
.phone-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold) !important;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.phone-link:hover {
  color: var(--accent) !important;
}

/* ============================================================
   404 page
   ============================================================ */

.error-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  padding: 80px 24px;
}

.error-hero .code {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-hero h1 {
  color: var(--white);
  margin: 12px 0 10px;
}

.error-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 30px;
}

.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Print-friendly (optional)
   ============================================================ */

@media print {
  .topbar,
  .site-header,
  .mobile-nav,
  .footer-bottom,
  .to-top,
  .cta-banner,
  .hero-strip {
    display: none !important;
  }
  body {
    font-size: 11pt;
  }
  a {
    color: inherit;
  }
}

/* ============================================================
   Effects & animations (appended)
   ============================================================ */

/* ---------- Page entrance ---------- */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

html {
  animation: pageIn 0.45s ease;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- Ken Burns zoom on hero media ---------- */
@keyframes kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.12) translateY(-1.5%); }
}

.hero-media video,
.hero-media img {
  animation: kenburns 22s var(--ease) infinite alternate;
}

/* ---------- Hero scroll indicator ---------- */
.hero::after {
  content: "";
  position: absolute;
  bottom: 92px;
  left: 50%;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 118px;
  left: calc(50% - 2px);
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollWheel 1.9s ease-in-out infinite;
  z-index: 3;
}

@keyframes scrollWheel {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 640px) {
  .hero::before,
  .hero::after {
    display: none;
  }
}

/* ---------- Animated glow on hero highlight ---------- */
@keyframes hueGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 176, 32, 0)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 176, 32, 0.45)); }
}

.hero h1 .hl {
  display: inline-block;
  animation: hueGlow 4.5s ease-in-out infinite;
}

/* ---------- Button shine sweep ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 150%;
}

/* ---------- Card hover glow + icon pop ---------- */
.service-card,
.feature-card,
.value-card,
.region-card,
.step-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.service-card:hover,
.feature-card:hover,
.value-card:hover,
.region-card:hover,
.step-card:hover {
  border-color: rgba(244, 117, 33, 0.45);
  box-shadow: var(--shadow-lg);
}

.region-card:hover {
  transform: translateY(-6px);
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1.06); }
}

.service-card:hover .service-icon,
.feature-card:hover .service-icon,
.value-card:hover .service-icon {
  animation: pop 0.5s var(--ease);
}

/* ---------- Spotlight glow that follows the cursor ---------- */
.service-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 117, 33, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover::after,
.feature-card:hover::after {
  opacity: 1;
}

/* ---------- Image zoom on hover ---------- */
.split-media img,
.service-row-media img {
  transition: transform 0.7s var(--ease);
}

.split-media:hover img,
.service-row-media:hover img {
  transform: scale(1.06);
}

/* ---------- Staggered grid reveal ---------- */
@keyframes staggerRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger.stagger-ready > * {
  opacity: 0;
}

.stagger.stagger-in > * {
  animation: staggerRise 0.6s var(--ease) both;
}

.stagger.stagger-in > *:nth-child(1) { animation-delay: 0.04s; }
.stagger.stagger-in > *:nth-child(2) { animation-delay: 0.1s; }
.stagger.stagger-in > *:nth-child(3) { animation-delay: 0.16s; }
.stagger.stagger-in > *:nth-child(4) { animation-delay: 0.22s; }
.stagger.stagger-in > *:nth-child(5) { animation-delay: 0.28s; }
.stagger.stagger-in > *:nth-child(6) { animation-delay: 0.34s; }
.stagger.stagger-in > *:nth-child(7) { animation-delay: 0.4s; }
.stagger.stagger-in > *:nth-child(8) { animation-delay: 0.46s; }
.stagger.stagger-in > *:nth-child(9) { animation-delay: 0.52s; }

/* ---------- Stats band ambient glows ---------- */
.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band::before,
.stats-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.stats-band::before {
  width: 440px;
  height: 440px;
  top: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(244, 117, 33, 0.22), transparent 70%);
  animation: floatY 9s ease-in-out infinite alternate;
}

.stats-band::after {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(27, 58, 92, 0.95), transparent 70%);
  animation: floatY 11s ease-in-out infinite alternate-reverse;
}

.stats-band .container {
  position: relative;
  z-index: 1;
}

@keyframes floatY {
  from { transform: translateY(-20px); }
  to { transform: translateY(20px); }
}

/* ---------- CTA banner: road line + drifting orb ---------- */
.cta-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 34px, transparent 34px 68px);
  background-size: 68px 6px;
  animation: dashMove 1.4s linear infinite;
  opacity: 0.55;
}

@keyframes dashMove {
  to { background-position: 68px 0; }
}

.cta-banner::after {
  animation: orbDrift 8s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  from { transform: translate3d(0, -14px, 0) scale(1); }
  to { transform: translate3d(-46px, 18px, 0) scale(1.18); }
}

/* ---------- Form card animated accent bar ---------- */
.form-card {
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  background-size: 200% 100%;
  animation: slideBar 4s linear infinite;
}

@keyframes slideBar {
  to { background-position: -200% 0; }
}

/* ---------- Timeline pulse dots ---------- */
.timeline-item .tl-body {
  position: relative;
}

.timeline-item .tl-body::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-soft);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 117, 33, 0.4); }
  50% { box-shadow: 0 0 0 9px rgba(244, 117, 33, 0); }
}

/* ---------- State chips hover shadow ---------- */
.state-chip:hover {
  box-shadow: 0 12px 22px rgba(244, 117, 33, 0.35);
}

/* ---------- Testimonial star shimmer ---------- */
@keyframes starPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.testimonial-stars svg:nth-child(1) { animation: starPop 3s ease-in-out infinite; }
.testimonial-stars svg:nth-child(2) { animation: starPop 3s ease-in-out 0.18s infinite; }
.testimonial-stars svg:nth-child(3) { animation: starPop 3s ease-in-out 0.36s infinite; }
.testimonial-stars svg:nth-child(4) { animation: starPop 3s ease-in-out 0.54s infinite; }
.testimonial-stars svg:nth-child(5) { animation: starPop 3s ease-in-out 0.72s infinite; }

/* ---------- Back-to-top pulse ring ---------- */
@keyframes ringPulse {
  0% {
    box-shadow: 0 10px 26px rgba(244, 117, 33, 0.4), 0 0 0 0 rgba(244, 117, 33, 0.45);
  }
  70% {
    box-shadow: 0 10px 26px rgba(244, 117, 33, 0.4), 0 0 0 16px rgba(244, 117, 33, 0);
  }
  100% {
    box-shadow: 0 10px 26px rgba(244, 117, 33, 0.4), 0 0 0 0 rgba(244, 117, 33, 0);
  }
}

.to-top.show {
  animation: ringPulse 2.6s ease-out infinite;
}

/* ---------- FAQ answer fade ---------- */
.faq-a {
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease);
}

.faq-item.open .faq-a {
  opacity: 1;
}

/* ---------- Section title underline grow ---------- */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.section-head.left .section-title::after {
  margin: 12px 0 0;
}

.section-head.reveal .section-title::after {
  transform: scaleX(0);
}

.section-head.reveal.in-view .section-title::after {
  transform: scaleX(1);
}

/* ---------- Card link underline grow ---------- */
.card-link {
  position: relative;
}

.card-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.card-link:hover::after {
  transform: scaleX(1);
}

/* ---------- Hero strip entrance ---------- */
@keyframes stripUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.hero-strip {
  animation: stripUp 0.9s var(--ease) 0.35s both;
}

/* ---------- Interior page-hero entrance ---------- */
.page-hero .container > * {
  animation: heroFade 0.8s var(--ease) both;
}

.page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.25s; }

/* ---------- Selection + scrollbar polish ---------- */
::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-dark));
  border-radius: 8px;
  border: 3px solid var(--bg-soft);
}

/* ---------- Header brand icon idle wiggle (subtle) ---------- */
.brand-mark {
  animation: brandIdle 6s ease-in-out infinite;
}

@keyframes brandIdle {
  0%, 86%, 100% { transform: rotate(0deg) scale(1); }
  92% { transform: rotate(-4deg) scale(1.05); }
}

.brand:hover .brand-mark {
  animation: none;
}

/* ---------- Hero media parallax slack ---------- */
.hero-media {
  top: -8%;
  bottom: -8%;
  will-change: transform;
}

/* ============================================================
   Legal / policy pages
   ============================================================ */

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 30px;
}

.legal-updated svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.legal-content h2 {
  font-size: 1.55rem;
  margin: 40px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-content h2 .lc-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(244, 117, 33, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
}

.legal-content ul {
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.legal-content ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 500;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.legal-content a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-thickness: 2px;
}

.legal-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 42px 0;
}

@media (max-width: 640px) {
  .legal-content h2 {
    align-items: flex-start;
  }
}

