/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===================== VARIABLES ===================== */
:root {
  --red: #B91C1C;
  --red-hover: #991B1B;
  --coral: #F87171;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --gray-light: #f8fafc;
  --gray-border: #e5e7eb;
  --text-dark: #1a1a2e;
  --text-mid: #374151;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --green: #22c55e;
  --gold: #f59e0b;
  --max-w: 1280px;
}

/* ===================== UTILITY ===================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label-light { color: var(--coral); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(185,28,28,0.35); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-1px); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: #f8f8f8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ===================== TOP BAR ===================== */
#top-bar {
  background: var(--navy);
  color: #fff;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
#top-bar a { color: #fff; opacity: 0.9; transition: opacity 0.2s; }
#top-bar a:hover { opacity: 1; }
.top-bar-phone { display: flex; align-items: center; gap: 6px; }
.top-bar-phone svg { width: 14px; height: 14px; }
.dispatch-status { display: flex; align-items: center; gap: 8px; }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ===================== HEADER ===================== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-img-footer {
  height: 44px; width: auto; display: block;
  background: #fff; padding: 6px 12px;
  border-radius: 4px; margin-bottom: 18px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); background: rgba(185,28,28,0.06); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--red); }
.header-phone:hover { color: var(--red); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 8px; }

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('AI Generated Photos/ChatGPT Image Feb 26, 2026, 02_10_14 PM.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 55%, rgba(15,23,42,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px 180px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185,28,28,0.2);
  border: 1px solid rgba(248,113,113,0.4);
  color: var(--coral);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.hero-h1 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--coral); }
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
}
.trust-check {
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; }

/* ===================== STATS BAR ===================== */
.stats-bar-wrap {
  position: relative; z-index: 3;
  margin-top: -80px; padding: 0 24px;
}
.stats-bar {
  max-width: var(--max-w); margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}
.stat-item {
  padding: 28px 12px; text-align: center;
  border-right: 1px solid var(--gray-border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-light); }
.stat-number {
  font-size: 34px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--red);
  line-height: 1; margin-bottom: 6px;
}
.stat-number em { color: var(--red); font-style: normal; font-size: 0.75em; }
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-light); letter-spacing: 0.01em; }

/* ===================== SECTION BASE ===================== */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-light); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px;
}
.section-header p {
  font-size: 17px; color: var(--text-light);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.section-header-light h2 { color: #fff; }
.section-header-light p { color: rgba(255,255,255,0.65); }

/* ===================== TWO-COL ===================== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 4/3;
}
.floating-card {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  text-align: center; min-width: 160px;
}
.floating-card-number {
  font-size: 36px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--red); line-height: 1;
}
.floating-card-label {
  font-size: 12px; font-weight: 700;
  color: var(--text-light); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}
.about-text .section-label { display: block; }
.about-text h2 {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15;
  color: var(--navy); margin-bottom: 20px;
}
.about-text p { color: var(--text-mid); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.cred-item {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 12px; padding: 16px 18px;
}
.cred-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cred-sub { font-size: 13px; color: var(--text-light); }

/* ===================== MISSION ===================== */
#mission {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
#mission::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.mission-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.mission-label-col { padding-top: 6px; }
.mission-label-col .section-label { color: var(--coral); display: block; margin-bottom: 20px; }
.mission-year {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2;
}
.mission-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.mission-content h2 em { font-style: normal; color: var(--coral); }
.mission-content p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  margin-bottom: 20px;
}
.mission-content p:last-of-type { margin-bottom: 0; }
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mission-pillar {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 32px;
}
.mission-pillar:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.mission-pillar-title {
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 8px; letter-spacing: 0.01em;
}
.mission-pillar-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ===================== SERVICES ===================== */
.services-group { margin-bottom: 52px; }
.services-group:last-child { margin-bottom: 0; }
.services-group-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.services-group-title {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
}
.services-group-line { flex: 1; height: 1px; background: var(--gray-border); }
.nemt-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.nemt-cred {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  background: var(--gray-light); border: 1px solid var(--gray-border);
  border-radius: 100px; padding: 6px 14px;
}
.nemt-cred-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nemt-cred-check svg { width: 8px; height: 8px; stroke: #fff; stroke-width: 3; fill: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  border-color: transparent;
}
.service-card.featured { border: 2px solid var(--red); }
.service-card.featured:hover { box-shadow: 0 20px 50px rgba(185,28,28,0.15); }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.service-icon { font-size: 32px; margin-bottom: 16px; line-height: 1; }
.service-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  font-size: 13px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ===================== SCT/CCT SHOWCASE ===================== */
#sct { position: relative; padding: 100px 0; overflow: hidden; }
.sct-bg {
  position: absolute; inset: 0;
  background-image: url('fleet-sunset.png');
  background-size: cover; background-position: center; z-index: 0;
}
.sct-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.88); z-index: 1; }
.sct-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sct-text .section-label { display: block; }
.sct-text h2 {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.sct-text p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 28px; }
.sct-checklist { margin-bottom: 36px; }
.sct-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.sct-check-item:last-child { border-bottom: none; }
.sct-check-icon { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.sct-img { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.sct-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ===================== WHO WE SERVE ===================== */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serve-card {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 16px; padding: 28px 22px; transition: all 0.25s;
}
.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
  border-color: transparent;
}
.serve-card.wide { grid-column: span 2; }
.serve-icon { font-size: 28px; margin-bottom: 14px; }
.serve-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.serve-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.serve-link {
  font-size: 13px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.serve-link:hover { gap: 8px; }

/* ===================== WHY CHOOSE US / METRICS ===================== */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.metric-card {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 16px; padding: 36px 28px; transition: all 0.25s;
}
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
  border-color: transparent;
}
.metric-number {
  font-size: 52px; font-weight: 900;
  letter-spacing: -0.05em; color: var(--red);
  line-height: 1; margin-bottom: 4px;
}
.metric-number em { font-style: normal; font-size: 0.75em; }
.metric-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.metric-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===================== COVERAGE ===================== */
#coverage { position: relative; padding: 100px 0; overflow: hidden; }
.coverage-bg {
  position: absolute; inset: 0;
  background-image: url('fleet-beach.png');
  background-size: cover; background-position: center 40%; z-index: 0;
}
.coverage-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.90); z-index: 1; }
.coverage-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; text-align: center;
}
.coverage-inner h2 {
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 16px;
}
.coverage-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 520px; margin: 0 auto 48px;
}
.stations-wrap { margin-bottom: 40px; }
.stations-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.stations-pills { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pill {
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 6px; transition: all 0.2s;
}
.pill:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.pill.hq { background: var(--red); border-color: var(--red); color: #fff; }
.pill.hq:hover { background: var(--red-hover); }
.counties-pills { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.county-pill {
  padding: 10px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.county-pill.red-c { background: rgba(185,28,28,0.25); border: 1px solid rgba(185,28,28,0.5); color: var(--coral); }
.county-pill.green-c { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: #86efac; }

/* ===================== TESTIMONIALS ===================== */
#testimonials { background: var(--navy); padding: 100px 0; }
.testimonials-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; margin-bottom: 28px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-size: 20px; line-height: 1.65;
  color: rgba(255,255,255,0.9);
  font-style: italic; font-weight: 400;
  margin-bottom: 28px; position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 80px; color: rgba(185,28,28,0.25);
  font-style: normal; position: absolute;
  top: -20px; left: -20px; line-height: 1;
}
.testimonial-author { font-size: 15px; font-weight: 700; color: var(--coral); }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.testimonial-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 40px;
}
.t-dot {
  height: 8px; width: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.t-dot.active { width: 28px; background: var(--red); }

/* ===================== FINAL CTA ===================== */
#final-cta {
  background: linear-gradient(135deg, #B91C1C 0%, #7f1d1d 100%);
  padding: 100px 0; text-align: center;
}
#final-cta h2 {
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 16px;
}
#final-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.final-contact { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.final-contact-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600; }
.final-contact-item a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.final-contact-item a:hover { color: #fff; }
.final-contact-item span { font-size: 18px; }

/* ===================== FOOTER ===================== */
#footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.75);
  margin-bottom: 8px; font-weight: 600;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span { font-size: 15px; }
.license-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.license-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; font-weight: 500; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 24px;
  margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== TIDIO CHAT WIDGET SIZE OVERRIDE ===================== */
#tidio-chat-iframe { transform: scale(0.85); transform-origin: bottom right; }

/* ===================== FLOATING PHONE (hidden — phone is in header + top bar) ===================== */
#float-phone { display: none; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative; padding: 100px 0 80px; overflow: hidden;
  background: var(--navy);
}
.page-hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.page-hero h1 {
  font-size: 52px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.08;
  color: #fff; max-width: 700px; margin-bottom: 20px;
}
.page-hero h1 .accent { color: var(--coral); }
.page-hero p {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 36px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.45); margin-bottom: 28px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--coral); }
.page-breadcrumb span { color: var(--coral); }

/* ===================== PROBLEM/PAIN SECTION ===================== */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pain-card {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 16px; padding: 32px 28px;
  border-top: 3px solid var(--red);
}
.pain-icon { font-size: 28px; margin-bottom: 16px; }
.pain-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pain-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px; background: var(--gray-border);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(185,28,28,0.3);
}
.step-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===================== BENEFIT ROWS ===================== */
.benefit-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 80px;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row.reverse { direction: rtl; }
.benefit-row.reverse > * { direction: ltr; }
.benefit-content .section-label { display: block; }
.benefit-content h3 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.benefit-content p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.benefit-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.benefit-img img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 46px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-card.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-row { gap: 48px; }
}
@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(n+4) { border-top: 1px solid var(--gray-border); }
  .stat-item:nth-child(3), .stat-item:nth-child(6) { border-right: none; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-inner { height: 64px; }
  #top-bar { gap: 16px; font-size: 12px; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-content { padding: 72px 24px 160px; }
  .stat-number { font-size: 26px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  #about .two-col { grid-template-columns: 1fr; gap: 40px; }
  .floating-card { bottom: -16px; right: -8px; }
  .mission-inner { grid-template-columns: 1fr; gap: 36px; }
  .mission-content h2 { font-size: 28px; }
  .mission-pillars { grid-template-columns: 1fr; gap: 24px; }
  .mission-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 24px 0; margin: 0; }
  .mission-pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .sct-inner { grid-template-columns: 1fr; gap: 40px; }
  .sct-img { display: none; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card.wide { grid-column: span 1; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header h2 { font-size: 30px; }
  .section { padding: 72px 0; }
  #final-cta h2 { font-size: 30px; }
  .final-ctas { flex-direction: column; align-items: center; }
  .about-text h2 { font-size: 30px; }
  .sct-text h2 { font-size: 30px; }
  .coverage-inner h2 { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .benefit-row { grid-template-columns: 1fr; gap: 32px; }
  .benefit-row.reverse { direction: ltr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-border); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--gray-border); }
  .cred-grid { grid-template-columns: 1fr; }
}
