/* ============================================================
   4 CROWNS TRANS, INC. — GLOBAL STYLESHEET
   Design: Barlow light display / Inter body — white + royal blue
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0c0d14;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TOKENS --- */
:root {
  --blue:        #1d3b8a;
  --blue-mid:    #2a52c4;
  --blue-light:  #6b96f0;
  --blue-pale:   #eef2fc;
  --dark:        #0b1124;
  --dark-2:      #0f1830;
  --ink:         #0c0d14;
  --ink-2:       #3a3b4a;
  --muted:       #6b6b80;
  --border:      #e0e1ea;
  --surface:     #f6f7fc;
  --gold:        #c9a84c;
  --radius:      3px;
  --transition:  0.18s ease;
}

/* --- NAV --- */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
}
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.02em; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.nav-cta {
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius);
  letter-spacing: 0.03em; transition: background var(--transition);
}
.nav-cta:hover { background: var(--blue-mid); }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.2s;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 580px; max-height: 860px;
  background: var(--dark);
  display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-video-wrap video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(11,17,36,0.45) 0%,
    rgba(11,17,36,0.55) 50%,
    rgba(11,17,36,0.92) 80%,
    rgba(11,17,36,1.0) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 72px;
  max-width: 840px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--blue-light); }
.hero-eyebrow-text {
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.68); text-transform: uppercase;
}
.hero-headline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: var(--blue-light); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 460px; line-height: 1.75;
  margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-stats {
  position: absolute; bottom: 0; right: 0; z-index: 2; display: flex;
}
.hero-stat {
  padding: 26px 34px;
  border-left: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.hero-stat-num {
  font-family: 'Barlow', sans-serif; font-size: 30px; font-weight: 300;
  color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 10px; color: rgba(255,255,255,0.62);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* --- VIDEO BAR --- */
.video-bar {
  background: var(--surface); padding: 9px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.video-bar-label {
  font-size: 10px; color: #aaa; letter-spacing: 0.14em;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #e44;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* --- TICKER --- */
.ticker {
  background: var(--blue); padding: 11px 0; overflow: hidden;
}
.ticker-track {
  display: flex; animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 18px;
}
.ticker-text {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75); text-transform: uppercase;
}
.ticker-sep { color: rgba(255,255,255,0.25); font-size: 13px; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 500; padding: 14px 30px;
  border-radius: var(--radius); letter-spacing: 0.03em;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--blue-mid); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 14px;
  letter-spacing: 0.02em; transition: color var(--transition);
}
.btn-ghost-white:hover { color: rgba(255,255,255,0.9); }
.btn-outline {
  display: inline-block; background: transparent;
  color: rgba(255,255,255,0.55); font-size: 14px;
  padding: 14px 30px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); letter-spacing: 0.03em;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
.btn-blue-outline {
  display: inline-block; background: transparent;
  color: var(--blue); font-size: 14px;
  padding: 13px 28px; border: 1px solid var(--blue);
  border-radius: var(--radius); letter-spacing: 0.03em; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.btn-blue-outline:hover { background: var(--blue); color: #fff; }

/* --- SECTION COMMONS --- */
.sec { padding: 88px 80px; }
.sec-sm { padding: 64px 80px; }
.sec-dark { background: var(--dark); }
.sec-dark-2 { background: var(--dark-2); }
.sec-surface { background: var(--surface); }
.sec-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.sec-label-line { width: 24px; height: 1px; background: var(--blue); }
.sec-label-text {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--blue); text-transform: uppercase; font-weight: 500;
}
.sec-dark .sec-label-line,
.sec-dark-2 .sec-label-line { background: var(--blue-light); }
.sec-dark .sec-label-text,
.sec-dark-2 .sec-label-text { color: rgba(107,150,240,1.0); }
.sec-h {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px;
}
.sec-h em { font-style: normal; color: var(--blue); }
.sec-dark .sec-h,
.sec-dark-2 .sec-h { color: #fff; }
.sec-dark .sec-h em,
.sec-dark-2 .sec-h em { color: var(--blue-light); }
.sec-p {
  font-size: 15px; color: var(--muted);
  max-width: 500px; line-height: 1.75;
}
.sec-dark .sec-p,
.sec-dark-2 .sec-p { color: rgba(255,255,255,0.68); }

/* --- SERVICES GRID --- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; margin-top: 52px;
}
.service-card {
  padding: 40px 34px; border-right: 1px solid var(--border);
  position: relative; cursor: pointer;
  transition: background var(--transition); background: #fff;
  display: flex; flex-direction: column;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--blue-pale); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 4px; margin-bottom: 24px;
}
.service-crown { width: 32px; margin-bottom: 20px; }
.service-name {
  font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 300;
  color: var(--ink); line-height: 1.2; margin-bottom: 12px;
}
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.service-features { margin-bottom: 28px; }
.service-features li {
  font-size: 12px; color: var(--ink-2);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0;
}
.service-link {
  font-size: 12px; color: var(--blue); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* --- PILLARS --- */
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 52px;
}
.pillar { padding: 32px 28px 0 0; border-top: 2px solid rgba(255,255,255,0.22); margin-top: -1px; }
.pillar:first-child { border-top-color: var(--blue-light); }
.pillar-num {
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 14px;
}
.pillar-name {
  font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 300;
  color: #fff; margin-bottom: 10px;
}
.pillar-desc { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* --- MAP SECTION --- */
.map-section {
  display: grid; grid-template-columns: 420px 1fr;
  background: var(--dark-2); min-height: 560px;
}
.map-left {
  padding: 72px 52px; display: flex; flex-direction: column;
  justify-content: center; border-right: 1px solid rgba(255,255,255,0.05);
}
.map-left .sec-p { max-width: 300px; margin-bottom: 36px; color: rgba(255,255,255,0.68); }
.coverage-tags { display: flex; flex-direction: column; }
.coverage-tag {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.coverage-tag:first-child { border-top: 1px solid rgba(107,150,240,0.65); }
.coverage-tag-name {
  font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.52); text-transform: uppercase;
}
.coverage-tag-val { font-size: 13px; color: rgba(255,255,255,0.80); }
.map-right { position: relative; min-height: 560px; }
#coverage-map { position: absolute; inset: 0; width: 100%; height: 100%; }

/* --- STATS --- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px;
}
.stat-cell { padding: 26px 24px 0 0; border-top: 1px solid var(--border); }
.stat-cell:first-child { border-top-color: var(--blue); }
.stat-num {
  font-family: 'Barlow', sans-serif; font-size: 50px; font-weight: 300;
  color: var(--blue); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px;
}
.stat-unit { font-size: 22px; color: #bcc8e8; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 30px 26px;
}
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 14px; color: var(--ink-2); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 600;
  color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.testimonial-role { font-size: 11px; color: var(--muted); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  position: relative; height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--dark);
}
.page-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,17,36,0.4) 0%, rgba(11,17,36,0.88) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 80px 56px; }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.page-hero-eyebrow-line { width: 20px; height: 1px; background: var(--blue-light); }
.page-hero-eyebrow-text {
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72); text-transform: uppercase;
}
.page-hero-title {
  font-family: 'Barlow', sans-serif; font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; color: #fff; letter-spacing: -0.02em; line-height: 1.05;
}
.page-hero-title em { font-style: normal; color: var(--blue-light); }

/* --- FEATURE GRID (service pages) --- */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); margin-top: 52px; border-radius: 6px; overflow: hidden;
}
.feature-cell {
  background: #fff; padding: 36px 32px;
}
.feature-cell-icon { margin-bottom: 16px; }
.feature-cell-icon svg { width: 32px; height: 32px; }
.feature-cell-name {
  font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 10px;
}
.feature-cell-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* --- PROCESS STEPS --- */
.process-steps { margin-top: 52px; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  font-family: 'Barlow', sans-serif; font-size: 40px; font-weight: 300;
  color: var(--border); letter-spacing: -0.02em; line-height: 1;
}
.process-step-name {
  font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 8px;
}
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* --- FAQ ACCORDION --- */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 20px; height: 20px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.2s;
  font-size: 14px; color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* --- CTA BAND --- */
.cta-band {
  background: var(--dark); padding: 100px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 100%, rgba(29,59,138,0.4) 0%, transparent 70%);
}
.cta-band-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; color: rgba(255,255,255,0.45);
  text-transform: uppercase; margin-bottom: 22px; position: relative;
}
.cta-band-h {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(40px, 5vw, 66px); font-weight: 300;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 18px; line-height: 1.05; position: relative;
}
.cta-band-h em { font-style: normal; color: var(--blue-light); }
.cta-band-p { font-size: 15px; color: rgba(255,255,255,0.68); margin-bottom: 40px; position: relative; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; position: relative; }
.cta-band-phone {
  margin-top: 32px; position: relative;
}
.cta-band-phone a {
  font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em; transition: color var(--transition);
}
.cta-band-phone a:hover { color: #fff; }

/* --- FORMS --- */
.form-section { background: var(--surface); }
.form-wrap { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 500; color: var(--ink-2); letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--ink); background: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,59,138,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none; }
.form-submit {
  background: var(--blue); color: #fff; font-size: 14px; font-weight: 500;
  padding: 15px 36px; border-radius: var(--radius); border: none;
  cursor: pointer; letter-spacing: 0.03em; font-family: 'Inter', sans-serif;
  transition: background var(--transition); margin-top: 8px;
}
.form-submit:hover { background: var(--blue-mid); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.form-success {
  display: none; background: #edf7ed; border: 1px solid #4caf50;
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 14px; color: #2e7d32; margin-top: 20px;
}
.form-error {
  display: none; background: #fdecea; border: 1px solid #f44336;
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 14px; color: #c62828; margin-top: 20px;
}

/* --- FOOTER --- */
.site-footer {
  background: #07080f; padding: 60px 80px 36px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}
.footer-logo img { height: 38px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 230px; margin-bottom: 18px; }
.footer-phone { font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 300; letter-spacing: 0.04em; }
.footer-col-title {
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 16px;
}
.footer-link {
  display: block; font-size: 13px; color: rgba(255,255,255,0.62);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-link:hover { color: rgba(255,255,255,0.95); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; }
.footer-certs { display: flex; gap: 10px; }
.footer-cert {
  font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.22);
  padding: 3px 8px; border-radius: 2px;
}

/* --- LANG TOGGLE --- */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted); cursor: pointer;
  border: 1px solid var(--border); border-radius: 20px;
  padding: 4px 10px; transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); }

/* --- LEAFLET OVERRIDES --- */
.leaflet-container { background: #0b1124 !important; }
.leaflet-popup-content-wrapper {
  background: #0f1a30; color: #fff; border-radius: 4px;
  border: 1px solid rgba(107,150,240,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.leaflet-popup-tip { background: #0f1a30; }
.leaflet-popup-content { color: rgba(255,255,255,0.8); font-size: 13px; }
.leaflet-popup-content b { color: #fff; }
.leaflet-control-zoom a {
  background: #0f1a30 !important; color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover { background: #1a2d50 !important; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .hero-content { padding: 0 48px 64px; }
  .sec, .cta-band { padding: 72px 48px; }
  .sec-sm { padding: 52px 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .map-right { min-height: 400px; }
  #coverage-map { position: relative; height: 400px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-content { padding: 0 24px 48px; }
  .hero-stats { display: none; }
  .hero-headline { font-size: 44px; }
  .sec, .cta-band, .sec-sm { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-content { padding: 0 24px 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .video-bar { padding: 9px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot { animation: none; }
}
