/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --rf-bg:         #ffffff;
  --rf-bg-2:       #f5f7fa;
  --rf-panel:      #ffffff;
  --rf-orange:     #E8621A;
  --rf-orange-dk:  #c94f12;
  --rf-text:       #1a1a2e;
  --rf-text-2:     #4a5568;
  --rf-text-3:     #9aabb8;
  --rf-border:     #e2e8f0;
  --rf-border-b:   #cbd5e1;
  --rf-success:    #16a34a;
  --rf-navy:       #1a1a2e;
  --rf-bg-warm:    #FFF8F2;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--rf-text);
  background: var(--rf-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: 'Open Sans', sans-serif;
}

.teal { color: var(--rf-orange); }
.amber { color: var(--rf-orange); }

/* ============================================================
   1. STICKY TOP BAR
============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 52px;
  background: var(--rf-navy);
  border-bottom: 3px solid var(--rf-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.top-bar__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.top-bar__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--rf-orange);
  flex-shrink: 0;
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rf-orange);
}

.top-bar__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar__number:hover { color: var(--rf-orange); }

/* ============================================================
   2. HERO SECTION
============================================================ */
.hero {
  padding: 100px 24px 72px;
  background: linear-gradient(160deg, #eef2f7 0%, #ffffff 55%);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.hero::before { display: none; }
.hero::after  { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rf-orange);
  margin-bottom: 22px;
  animation: fadeUp 0.5s 0s ease both;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rf-orange);
  flex-shrink: 0;
}

.hero__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--rf-text);
  margin-bottom: 22px;
  animation: fadeUp 0.5s 0.07s ease both;
}

.hero__h1 span {
  color: var(--rf-orange);
}

.hero__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--rf-text-2);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.14s ease both;
}

.hero__sub strong {
  color: var(--rf-text);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: fadeUp 0.5s 0.21s ease both;
}

/* Call CTA Button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rf-orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 20px 44px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,98,26,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 60px;
}

.btn-call:hover {
  background: var(--rf-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,98,26,0.42);
}

.btn-call svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Dispatch Timer */
.dispatch-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: #fff4ef;
  border: 1px solid #fcd5be;
  border-radius: 4px;
  width: fit-content;
}

.dispatch-timer__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rf-orange);
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}

.dispatch-timer__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-text-2);
}

.dispatch-timer__count {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--rf-orange);
  letter-spacing: 0.04em;
  min-width: 52px;
}

/* ============================================================
   3. TRUST BAR
============================================================ */
.trust-bar {
  background: var(--rf-navy);
  border-top: none;
  border-bottom: none;
  padding: 14px 24px;
}

.trust-bar__list {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 32px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 13px;
  height: 13px;
  fill: var(--rf-orange);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section {
  padding: 80px 24px;
}

.section--alt {
  background: var(--rf-bg-warm);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rf-orange);
  margin-bottom: 14px;
}

.section__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rf-orange);
  flex-shrink: 0;
}

.section__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--rf-text);
  margin-bottom: 12px;
}

.section__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--rf-text-2);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 48px;
}

.section__header {
  max-width: 1160px;
  margin: 0 auto;
}

/* ============================================================
   4. SCENARIO SELECTOR
============================================================ */
.scenario {
  background: var(--rf-bg-2);
}

.scenario__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scenario-card {
  position: relative;
  background: var(--rf-bg);
  border: 2px solid var(--rf-border);
  border-radius: 6px;
  padding: 32px 28px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}

.scenario-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rf-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.scenario-card:hover {
  border-color: var(--rf-orange);
  box-shadow: 0 4px 20px rgba(232,98,26,0.12);
}

.scenario-card:hover::before,
.scenario-card.selected::before {
  transform: scaleX(1);
}

.scenario-card.selected {
  border-color: var(--rf-orange);
  background: #fff8f3;
}

.scenario-card__check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rf-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.scenario-card.selected .scenario-card__check {
  opacity: 1;
  transform: scale(1);
}

.scenario-card__check svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.scenario-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.scenario-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rf-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.scenario-card__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--rf-text-2);
  line-height: 1.65;
}

.scenario-card__urgency {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-orange);
}

/* ============================================================
   5. HOW IT WORKS
============================================================ */
.steps__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  background: var(--rf-panel);
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: border-color 0.22s;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--rf-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.step:hover { border-color: var(--rf-border-b); }
.step:hover::before { transform: scaleY(1); }

.step__num {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rf-orange);
  margin-bottom: 14px;
}

.step__icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rf-text);
  margin-bottom: 8px;
}

.step__body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rf-text-2);
  line-height: 1.68;
}

/* ============================================================
   6. TRUST SIGNALS / SOCIAL PROOF
============================================================ */
.proof {
  background: var(--rf-bg-2);
}

.proof__stats {
  max-width: 1160px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  overflow: hidden;
}

.proof__stat {
  padding: 28px 32px;
  background: var(--rf-panel);
  text-align: center;
}

.proof__stat:not(:last-child) {
  border-right: 1px solid var(--rf-border);
}

.proof__stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--rf-orange);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}

.proof__stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-text-2);
}

.proof__stat-source {
  font-family: 'Open Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--rf-text-3);
  margin-top: 4px;
}

/* Review cards */
.reviews__grid {
  max-width: 1160px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--rf-panel);
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rf-orange);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-card__stars span {
  color: var(--rf-orange);
  font-size: 14px;
}

.review-card__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--rf-text-2);
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-orange);
}

/* Credentials bar */
.cred-bar {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--rf-panel);
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.cred-bar__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-text-2);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cred-bar__item::before {
  content: '✓';
  color: var(--rf-orange);
  font-size: 11px;
}

.cred-bar__divider {
  width: 1px;
  height: 16px;
  background: var(--rf-border);
}

/* ============================================================
   7. CONTACT FORM
============================================================ */
.contact-form__wrap {
  max-width: 520px;
  margin: 0 auto;
}

.form-panel {
  background: var(--rf-panel);
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  padding: 40px 36px;
  position: relative;
}

.form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rf-orange) 0%, var(--rf-orange-dk) 100%);
  border-radius: 6px 6px 0 0;
}

.form-panel__h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rf-text);
  margin-bottom: 6px;
}

.form-panel__sub {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rf-text-2);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-text-2);
  margin-bottom: 7px;
}

.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rf-border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; /* 16px prevents iOS zoom */
  font-weight: 400;
  color: var(--rf-text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--rf-orange);
}

.form-group input::placeholder {
  color: var(--rf-text-3);
}

.btn-submit {
  width: 100%;
  background: var(--rf-orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  box-shadow: 0 4px 16px rgba(232,98,26,0.3);
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--rf-orange-dk);
  transform: translateY(-1px);
}

.tcpa {
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--rf-text-3);
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 28px 0 10px;
}

.form-success__icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.form-success__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--rf-success);
  margin-bottom: 8px;
}

.form-success__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--rf-text-2);
}

/* ============================================================
   8. COVERAGE AREA
============================================================ */
.coverage {
  background: var(--rf-bg);
}

.coverage__markets {
  max-width: 1160px;
  margin: 0 auto;
}

.coverage__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.market-pill {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rf-border);
  border-radius: 20px;
  padding: 6px 14px;
}

.coverage__note {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rf-text-2);
  display: flex;
  align-items: center;
  gap: 7px;
}

.coverage__note::before {
  content: '→';
  color: var(--rf-orange);
  font-size: 15px;
}

/* ============================================================
   9. FOOTER
============================================================ */
.footer {
  background: var(--rf-navy);
  border-top: none;
  padding: 40px 24px;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__phone {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rf-orange);
  margin-bottom: 20px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__phone:hover { color: #ffffff; }

.footer__legal {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 780px;
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--rf-text-2); }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
============================================================ */
@media (max-width: 1100px) {
  .scenario__grid,
  .steps__grid,
  .proof__stats,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .top-bar {
    height: 52px;
    padding: 0 16px;
  }

  .top-bar__badge { display: none; }

  .top-bar__label {
    font-size: 8.5px;
  }

  .top-bar__number {
    font-size: 22px;
  }

  .hero {
    padding: 100px 20px 64px;
    min-height: auto;
  }

  .hero__h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero__actions {
    width: 100%;
  }

  .btn-call {
    width: 100%;
    justify-content: center;
    padding: 22px 20px;
    font-size: 22px;
    min-height: 64px;
  }

  .dispatch-timer {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 64px 20px;
  }

  .scenario__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof__stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--rf-border);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cred-bar {
    gap: 6px 16px;
    padding: 18px 20px;
  }

  .cred-bar__divider { display: none; }

  .form-panel {
    padding: 28px 22px;
  }

  .trust-bar__list {
    gap: 8px 20px;
  }

  .trust-bar__item {
    font-size: 9px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .hero__sub {
    font-size: 15px;
  }

  .section__h2 {
    font-size: 28px;
  }

  .proof__stat-num {
    font-size: 30px;
  }

  .trust-bar__list {
    gap: 8px 14px;
    justify-content: flex-start;
  }

  .coverage__grid {
    gap: 8px;
  }
}

/* ============================================================
   UTILITY CLASSES (security hardening — replaces inline styles)
============================================================ */
.rf-stat-callout {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 32px 36px;
  background: #f5f7fa;
  border-left: 4px solid var(--rf-orange);
  border-radius: 4px;
}

.rf-stat-callout__p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--rf-text);
  margin: 0;
}

.rf-privacy-link {
  color: var(--rf-orange);
  text-decoration: underline;
}

.section__sub--mb {
  margin-bottom: 32px;
}

.rf-form-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  font-family: inherit;
}

/* ============================================================
   HERO — DISPATCH LINE & INLINE PROOF STRIP
============================================================ */
.hero__dispatch {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--rf-text-2);
  margin-bottom: 16px;
  animation: fadeUp 0.5s 0.11s ease both;
}

.hero__dispatch strong {
  color: var(--rf-orange);
  font-weight: 800;
}

.hero-proof-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 22px;
  animation: fadeUp 0.5s 0.28s ease both;
}

.hero-proof__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-text-3);
}

/* ============================================================
   ACCENT TEXT
============================================================ */
.rf-accent {
  color: var(--rf-orange);
}

/* ============================================================
   PROOF STATS — COLUMN VARIANTS
============================================================ */
.proof__stats--4col {
  grid-template-columns: repeat(4, 1fr);
}

.proof__stats--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.proof__stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

/* ============================================================
   REVIEWS SECTION
============================================================ */
.reviews {
  background: var(--rf-bg);
}

/* ============================================================
   COVERAGE — GROUPS (ACTIVE vs. AVAILABLE)
============================================================ */
.coverage-group {
  margin-bottom: 28px;
}

.coverage-group--secondary {
  margin-bottom: 0;
}

.coverage-group__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rf-text-3);
  margin-bottom: 10px;
}

.market-pill--active {
  color: var(--rf-orange);
  border-color: rgba(232, 98, 26, 0.35);
  background: rgba(232, 98, 26, 0.06);
  font-weight: 500;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
  background: var(--rf-bg-2);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--rf-border);
  border-radius: 6px;
  background: var(--rf-panel);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--rf-border-b);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--rf-text);
  text-align: left;
  transition: color 0.2s;
}

.faq-item__q:hover {
  color: var(--rf-orange);
}

.faq-item.open .faq-item__q {
  color: var(--rf-orange);
}

.faq-item__icon {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--rf-orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

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

.faq-item__a {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--rf-border);
}

.faq-item.open .faq-item__a {
  display: block;
}

.faq-item__a p {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--rf-text-2);
  padding-top: 16px;
}

.faq-link {
  color: var(--rf-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   MOBILE STICKY CTA BAR
============================================================ */
.mobile-cta-bar {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--rf-navy);
  border-top: 3px solid var(--rf-orange);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mobile-cta-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rf-orange);
  white-space: nowrap;
}

.mobile-cta-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rf-orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(232,98,26,0.38);
  transition: background 0.2s;
}

.btn-mobile-call:active {
  background: var(--rf-orange-dk);
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
============================================================ */
@media (max-width: 1100px) {
  .proof__stats--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Show mobile CTA bar */
  .mobile-cta-bar { display: block; }

  /* Extra bottom padding so footer clears the mobile CTA bar */
  body { padding-bottom: 72px; }

  /* Hero dispatch line */
  .hero__dispatch {
    font-size: clamp(18px, 5vw, 24px);
  }

  /* Hero proof strip wraps tightly on mobile */
  .hero-proof-inline {
    gap: 6px 16px;
  }

  /* 4-col stats collapse to 2-col */
  .proof__stats--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Coverage groups stack */
  .coverage-group {
    margin-bottom: 24px;
  }

  /* FAQ questions slightly smaller */
  .faq-item__q {
    font-size: 16px;
    padding: 16px 18px;
  }

  .faq-item__a {
    padding: 0 18px 16px;
  }
}

@media (max-width: 480px) {
  /* Stats: single column on very small screens */
  .proof__stats--4col {
    grid-template-columns: 1fr;
  }

  .mobile-cta-sub {
    display: none; /* too little space — just show label + button */
  }

  .mobile-cta-label {
    font-size: 8px;
  }
}

/* ============================================================
   HERO URGENCY LINE
============================================================ */
.hero__urgency {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #b84a10;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__urgency::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b84a10;
  flex-shrink: 0;
}

/* ============================================================
   HERO AVAILABLE BADGE
============================================================ */
.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #2a9d6b;
  letter-spacing: 0.04em;
}
.hero-available__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a9d6b;
  flex-shrink: 0;
  animation: heroAvailBlink 1.6s ease-in-out infinite;
}
@keyframes heroAvailBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ============================================================
   HERO CALLBACK FORM
============================================================ */
.hero-callback {
  margin-bottom: 28px;
}
.hero-callback__or {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9aaa;
  margin: 0 0 10px;
}
.hero-callback__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.hero-callback__input {
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #0f1f3d;
  background: #fff;
  border: 1.5px solid #cdd8e5;
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.hero-callback__input:focus {
  border-color: #E8621A;
}
.hero-callback__input::placeholder {
  color: #a0adb8;
  font-size: 13px;
}
.hero-callback__btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: #0f1f3d;
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hero-callback__btn:hover {
  background: #1a3060;
  transform: translateY(-1px);
}
.hero-callback__success {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #2a9d6b;
  margin: 8px 0 0;
}

/* Proof strip — icon alignment */
.hero-proof__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 480px) {
  .hero-callback__form {
    flex-direction: column;
  }
  .hero-callback__btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }
}

/* ============================================================
   HERO — PHOTO VERSION
============================================================ */
.hero--photo {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-SBeSUc7X00o?auto=format&fit=crop&w=1920&q=75');
  background-size: cover;
  background-position: center top;
  background-color: #0a1828;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,24,40,0.78) 0%, rgba(10,24,40,0.65) 100%);
  z-index: 0;
}

.hero--photo .hero__inner { position: relative; z-index: 1; }

.hero--photo .hero__eyebrow {
  color: var(--rf-orange);
  background: rgba(232,98,26,0.12);
  border-color: rgba(232,98,26,0.35);
}

.hero--photo .hero__h1        { color: #ffffff; }
.hero--photo .hero__h1 span   { color: var(--rf-orange); }
.hero--photo .hero__dispatch  { color: rgba(255,255,255,0.92); }
.hero--photo .hero__dispatch strong { color: #ffffff; }
.hero--photo .hero__sub       { color: rgba(255,255,255,0.78); }

.hero--photo .hero-proof__item {
  color: rgba(255,255,255,0.85);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.hero--photo .hero-available        { color: #5ddba8; }
.hero--photo .hero-available__dot   { background: #5ddba8; }

/* ============================================================
   SERVICE CARDS (replaces scenario selector)
============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #1a2a3a;
}

.service-card--water {
  background-image: url('https://images.unsplash.com/photo-b8VECyHXIfo?auto=format&fit=crop&w=600&q=80');
}
.service-card--mold {
  background-image: url('https://images.unsplash.com/photo-lfi7HK29Uqs?auto=format&fit=crop&w=600&q=80');
}
.service-card--storm {
  background-image: url('https://images.unsplash.com/photo-97NjFpxA5DA?auto=format&fit=crop&w=600&q=80');
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10,20,40,0.94) 0%,
    rgba(10,20,40,0.50) 55%,
    rgba(10,20,40,0.18) 100%
  );
}

.service-card__content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  width: 100%;
}

.service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-card__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--rf-orange);
  border-radius: 4px;
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 12px rgba(232,98,26,0.35);
}

.service-card__cta:hover {
  background: var(--rf-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.45);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card   { min-height: 280px; }
}

/* ============================================================
   HOW IT WORKS — SPLIT LAYOUT WITH PHOTO
============================================================ */
.steps__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.steps__content {
  display: flex;
  flex-direction: column;
}

/* Override step num to orange circle */
.steps__layout .step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--rf-orange);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  border: none;
}

/* Hide old emoji icon if still present */
.steps__layout .step__icon { display: none; }

.steps__photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

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

@media (max-width: 900px) {
  .steps__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps__photo { display: none; }
}