@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --navy:      #0B2545;
  --navy-mid:  #13375B;
  --navy-light:#1A4A7A;
  --orange:    #E8631A;
  --orange-lt: #FF7A2F;
  --gold:      #F5A623;
  --white:     #FFFFFF;
  --offwhite:  #F7F4F0;
  --grey-lt:   #E8E8E8;
  --grey:      #9CA3AF;
  --text-dark: #1A1A2E;
  --text-body: #374151;
  --shadow:    0 4px 24px rgba(11,37,69,0.15);
  --shadow-lg: 0 12px 48px rgba(11,37,69,0.22);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', Georgia, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
a  { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-lt); }
img { max-width: 100%; }

/* =============================================
   LAYOUT
   ============================================= */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.divider     { border: none; border-top: 2px solid var(--grey-lt); margin: 40px 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,99,26,0.35);
}
.btn-primary:hover { background: var(--orange-lt); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }

/* Button groups */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-group.center { justify-content: center; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--orange);
  text-align: center;
  padding: 9px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  position: relative;
  z-index: 200;
}
.topbar a { color: var(--white); font-weight: 700; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--offwhite);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--grey);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* =============================================
   LABELS & INTROS
   ============================================= */
.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin-top: 10px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 72px 0 64px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   QUOTE CARD
   ============================================= */
.quote-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.quote-card .subtitle { font-size: 0.88rem; color: var(--grey); margin-bottom: 20px; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--grey-lt);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,99,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-card .btn { width: 100%; text-align: center; padding: 15px; font-size: 1.05rem; }
.quote-disclaimer { font-size: 0.76rem; color: var(--grey); text-align: center; margin-top: 8px; }

/* =============================================
   STAT STRIP
   ============================================= */
.stat-strip { background: var(--orange); padding: 28px 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  margin-top: 4px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}

/* =============================================
   STEPS / HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 44px;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step-num::after {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  top: 5px;
  left: 5px;
  z-index: -1;
}
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p   { font-size: 0.92rem; }
.step-connector {
  position: absolute;
  top: 32px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: var(--grey-lt);
}

/* =============================================
   BUY CARDS
   ============================================= */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.buy-card {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.buy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.buy-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.buy-card-img-rv   { background: linear-gradient(135deg, #1a3a5c 0%, #0b2545 100%); }
.buy-card-img-boat { background: linear-gradient(135deg, #0d4f6c 0%, #0b2545 100%); }
.buy-card-body { padding: 24px; }
.buy-card-body h3 { color: var(--white); margin-bottom: 8px; }
.buy-card-body p  { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 16px; }
.types-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.types-list li {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
}

/* =============================================
   TRUST GRID
   ============================================= */
.trust-bg { background: var(--offwhite); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.trust-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 2px 10px rgba(11,37,69,0.07);
}
.trust-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.trust-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.trust-item p  { font-size: 0.9rem; margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-bg { background: var(--navy); }
.testimonials-bg h2 { color: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px 20px;
}
.testi-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 12px; }
.testi-text  { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-style: italic; margin-bottom: 14px; }
.testi-name  { font-family: 'Oswald', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--orange); }
.testi-location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* =============================================
   SERVICE AREA
   ============================================= */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
}
.area-card { padding: 28px; border-radius: 8px; }
.area-florida { background: var(--navy); }
.area-georgia { background: var(--offwhite); }
.area-florida h3 { color: white; margin-bottom: 12px; }
.area-georgia h3 { margin-bottom: 12px; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
}
.area-florida .area-list li { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.area-georgia .area-list li { background: var(--grey-lt); color: var(--navy); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.page-hero .btn-group { position: relative; z-index: 1; margin-top: 24px; justify-content: center; }

/* =============================================
   TWO-COLUMN LAYOUTS (inner pages)
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.step-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-bottom: 52px;
  align-items: start;
}
.step-row:last-child { margin-bottom: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}
.contact-sticky { position: sticky; top: 80px; }
.contact-info-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px 28px;
  color: white;
  margin-bottom: 20px;
}
.contact-info-box h3 { color: white; margin-bottom: 18px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2px;
}
.contact-item-text a,
.contact-item-text span { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.big-form {
  background: var(--white);
  border: 1px solid var(--grey-lt);
  border-radius: 8px;
  padding: 36px 32px;
}
.big-form h2 { margin-bottom: 4px; }
.big-form .subtitle { color: var(--grey); margin-bottom: 24px; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--text-dark); color: rgba(255,255,255,0.65); padding: 52px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-phone { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--orange); }
footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   MISC COMPONENTS
   ============================================= */
/* Comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 36px; }
.table-wrap table { min-width: 500px; width: 100%; border-collapse: collapse; font-size: 0.93rem; }

/* FAQ accordion */
details { border-bottom: 1px solid var(--grey-lt); padding: 16px 0; cursor: pointer; }
summary {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
summary span { color: var(--orange); font-size: 1.3rem; flex-shrink: 0; }
details p { margin-top: 12px; font-size: 0.93rem; }

/* Pricing panel */
.pricing-panel {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 32px;
  color: white;
}
.pricing-panel h3 { color: white; margin-bottom: 16px; }
.pricing-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.pricing-num {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* =============================================
   RESPONSIVE — TABLET 900px
   ============================================= */
@media screen and (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 36px; }
  .buy-grid          { grid-template-columns: 1fr 1fr; }
  .trust-grid        { grid-template-columns: 1fr 1fr; }
  .testi-grid        { grid-template-columns: 1fr 1fr; }
  .steps-grid        { grid-template-columns: 1fr; gap: 28px; }
  .area-grid         { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-grid         { grid-template-columns: repeat(2, 1fr); }
  .step-connector    { display: none; }
  .two-col           { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout    { grid-template-columns: 1fr; }
  .contact-sticky    { position: static; }
  .step-row          { grid-template-columns: 56px 1fr; gap: 20px; }
}

/* =============================================
   RESPONSIVE — MOBILE 640px
   ============================================= */
@media screen and (max-width: 640px) {

  /* Topbar */
  .topbar { font-size: 0.8rem; padding: 8px 14px; }

  /* Nav */
  .nav-inner { height: 58px; }
  .nav-logo  { font-size: 1.1rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 18px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-cta { display: inline-block !important; width: auto !important; }

  /* Hero */
  .hero { padding: 40px 0 36px; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hero-badges { gap: 10px; }
  .hero-badge { font-size: 0.82rem; }

  /* Button groups — stack on mobile */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; width: 100%; }
  .btn-group.center { align-items: center; }
  .btn-group.center .btn { width: auto; min-width: 240px; }

  /* Sections */
  .section    { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .container  { padding: 0 16px; }

  /* Page hero */
  .page-hero { padding: 40px 0 36px; }
  .page-hero .btn-group { flex-direction: column; align-items: center; }
  .page-hero .btn-group .btn { width: auto; min-width: 220px; }

  /* Grids — single column */
  .buy-grid   { grid-template-columns: 1fr !important; }
  .trust-grid { grid-template-columns: 1fr !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .form-row   { grid-template-columns: 1fr !important; }
  .area-grid  { grid-template-columns: 1fr !important; }
  .two-col    { grid-template-columns: 1fr !important; gap: 24px !important; }
  .contact-layout { grid-template-columns: 1fr !important; }

  /* Stat strip */
  .stat-grid  { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .stat-num   { font-size: 1.7rem; }
  .stat-label { font-size: 0.76rem; }
  .stat-strip { padding: 22px 0; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr !important; }
  .step-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .step-row .step-num { margin: 0 auto; }

  /* Cards */
  .quote-card  { padding: 24px 16px; }
  .trust-item  { padding: 22px 18px; }
  .buy-card-img { height: 110px; font-size: 3rem; }
  .buy-card-body { padding: 20px 18px; }
  .testi-card  { padding: 20px 16px; }
  .area-card   { padding: 22px 18px; }
  .big-form    { padding: 24px 16px; }
  .contact-info-box { padding: 24px 18px; }
  .pricing-panel { padding: 28px 20px; }
  .contact-sticky { position: static !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
