/* ===========================
   CAPTAIN ROADSIDE — style.css
   =========================== */

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

:root {
  --blue: #1B6FF5;
  --blue-dark: #1458CC;
  --blue-light: #3B82F6;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #F4F4F4;
  --gray2: #E8E8E8;
  --text-gray: #9CA3AF;
  --white: #FFFFFF;
  --red: #DC2626;
  --green: #16A34A;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F97316;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-transform: uppercase;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-xl {
  font-size: 1.25rem;
  padding: 20px 40px;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid #F97316;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--black);
  text-transform: uppercase;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFD000;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(255,208,0,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,208,0,0.55);
}

.header-call-orange {
  background: #FFD000;
  color: #000000;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(255,208,0,0.45);
}

.header-call-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,208,0,0.55);
  background: #FFD000;
}

/* ===========================
   HERO
   =========================== */

.hero {
  padding-top: 68px;
}

.hero-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (min-width: 768px) {
  .hero-image-wrap {
    height: 340px;
  }
}

.hero-content {
  background: var(--black);
  padding: 36px 20px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F97316;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(0.85rem, 3.2vw, 1rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 13vw, 5rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 2.8vw, 0.95rem);
  font-weight: 700;
  color: #c0c8d8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 0.88rem;
  color: #9ca3af;
  max-width: 280px;
  line-height: 1.75;
}

.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: #F97316;
  color: #000000;
  text-decoration: none;
  padding: 14px 20px;
  margin-top: 8px;
  margin-bottom: 20px;
  transition: opacity 0.15s;
}

.hero-cta-btn:hover {
  opacity: 0.92;
}

.hero-cta-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.hero-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-cta-label {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-cta-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

/* ===========================
   FEATURES
   =========================== */

.features-section {
  background: var(--white);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--gray2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 16px;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
}

.feature-icon {
  font-size: 1.3rem;
  color: #F97316;
  flex-shrink: 0;
}

.feature-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.payment-section {
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 28px;
  text-align: center;
  background: #F0F6FF;
}

.payment-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.payment-card {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.payment-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(27,111,245,0.18);
  border-color: var(--blue);
}

.payment-card i {
  font-size: 3.2rem;
  line-height: 1;
}

.payment-card i.fa-cc-visa       { color: #1A1F71; }
.payment-card i.fa-cc-mastercard  { color: #EB001B; }
.payment-card i.fa-cc-amex        { color: #007BC1; }
.payment-card i.fa-apple-pay      { color: #000000; }

.payment-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6B7280;
  text-align: center;
  line-height: 1.2;
}

.warning-banner {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ===========================
   SERVICES
   =========================== */

.services-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
}

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

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

.service-card {
  background: var(--white);
  border: 3px solid #444444;
  border-radius: 0;
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(27,111,245,0.14);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--blue);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin: 0;
}

.service-card p {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.service-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: color 0.2s;
}

.service-phone:hover {
  color: var(--blue-dark);
}

.services-warning-banner {
  background: #DC2626;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
  margin-top: 32px;
  margin-bottom: 0;
  border-radius: 4px;
}

.services-warning-banner i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .services-warning-banner {
    margin-left: 4px;
    margin-right: 4px;
    font-size: 1rem;
    padding: 16px 16px;
  }
}

.services-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}

.services-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===========================
   WHY CHOOSE US
   =========================== */

.why-section {
  background: var(--dark);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  border: 2px solid #1E3A6E;
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0E1A2E;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 2rem;
  color: var(--blue);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===========================
   COMPARISON
   =========================== */

.comparison-section {
  padding: 80px 0;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.compare-table thead th {
  padding: 20px 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
  background: var(--gray);
  color: var(--dark);
}

.col-bad {
  background: #FEF2F2;
  color: var(--red);
}

.col-good {
  background: #F0FDF4;
  color: var(--green);
}

.compare-table tbody td {
  padding: 18px 28px;
  border-top: 1px solid var(--gray2);
  font-size: 1rem;
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gray);
}

.compare-table tbody tr:hover td {
  background: #F9FAFB;
}

.compare-table tbody tr:hover td:first-child {
  background: var(--gray2);
}

.check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #DCFCE7;
  color: var(--green);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
}

.x-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #FEE2E2;
  color: var(--red);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
}

.bad-val {
  color: var(--red);
  font-weight: 600;
}

.good-val {
  color: var(--green);
  font-weight: 700;
}

/* ===========================
   WHAT TO EXPECT
   =========================== */

.expect-section {
  background: var(--gray);
  padding: 80px 0;
}

.includes-section {
  background: var(--white);
  padding: 80px 0;
}

.checklist {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.checklist li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.checklist li i {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
}

.checklist-blue li {
  background: var(--gray);
}

/* ===========================
   HOW IT WORKS
   =========================== */

.how-section {
  background: var(--dark);
  padding: 80px 0;
}

.how-section .section-title {
  color: var(--white);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--blue);
  line-height: 1;
  min-width: 64px;
  text-align: center;
}

.step-body h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.step-body p a {
  color: var(--blue-light);
  text-decoration: underline;
}

.step-divider {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-left: 30px;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: #0a0e1a;
  padding: 56px 0 36px;
  text-align: center;
  color: var(--white);
}

.footer-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-top-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d1d5db;
  transition: color 0.2s;
}

.footer-top-nav a:hover {
  color: var(--white);
}

.footer-sep {
  color: #4b5563;
  font-size: 0.9rem;
}

.footer-area-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-privacy {
  display: inline-block;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 32px 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-credit {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* ===========================
   MOBILE STICKY CTA
   =========================== */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #F97316;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.mobile-cta-btn:hover {
  opacity: 0.9;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-image-wrap {
    height: 300px;
  }

  .hero-content {
    padding: 40px 16px 100px;
  }

  .btn-xl {
    font-size: 1rem;
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .checklist li {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .step-number {
    font-size: 2.5rem;
    min-width: 48px;
  }

  .mobile-cta {
    display: block;
  }

  .header-call-btn span {
    display: inline;
  }

  .header-call-btn {
    padding: 10px 14px;
    font-size: 0.92rem;
    gap: 7px;
    letter-spacing: 0;
  }

  .header-logo-img {
    height: 36px;
  }

  .header-inner {
    padding: 0 14px;
  }
}

/* ===========================
   ROADSIDE IMAGE SECTIONS
   =========================== */

.roadside-img-section {
  background: var(--white);
  padding: 28px 0;
}

.roadside-img-wrap {
  border: 2px solid var(--blue);
  overflow: hidden;
}

.roadside-img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .roadside-img {
    height: 320px;
  }
}

/* ===========================
   HOW EMERGENCY SERVICE WORKS (NEW)
   =========================== */

.how-works-new-section {
  background: var(--white);
  padding: 64px 0 48px;
}

.how-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-works-header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .how-works-header h2 {
    font-size: 2.8rem;
  }
}

.blue-underline {
  width: 80px;
  height: 4px;
  background: var(--blue);
  margin: 0 auto;
}

.container.narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.steps-new {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-block-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.step-label-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.step-square {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-block-right {
  padding-top: 24px;
}

.step-block-right h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.step-block-right p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===========================
   RESPONSE TIME BOX
   =========================== */

.response-time-section {
  background: var(--white);
  padding-bottom: 64px;
}

.response-box {
  background: var(--black);
  border: 2px solid var(--blue);
  color: var(--white);
  text-align: center;
  padding: 28px 24px;
}

.response-box p {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.response-box p:last-child {
  margin-bottom: 0;
}

/* ===========================
   WHY YOUR AREA DRIVERS CHOOSE US
   =========================== */

.why-area-section {
  background: #f5f5f5;
  padding: 64px 0;
}

.why-area-header {
  text-align: center;
  margin-bottom: 12px;
}

.why-area-header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .why-area-header h2 {
    font-size: 2.8rem;
  }
}

.why-area-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  line-height: 1.6;
}

.why-area-cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-area-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.why-area-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-area-text h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 4px;
}

.why-area-text p {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.5;
}

/* ===========================
   FINAL CTA
   =========================== */

.final-cta-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .final-cta-section h2 {
    font-size: 3rem;
  }
}

.final-cta-body {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F97316;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  padding: 24px 48px;
  width: 100%;
  max-width: 400px;
  transition: opacity 0.2s;
  margin-bottom: 32px;
}

.final-cta-btn:hover {
  opacity: 0.9;
}

.final-cta-call {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.final-cta-num {
  font-size: 1.5rem;
  margin-top: 4px;
}

.final-cta-avail {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}
