/* ============================================================
   Mobile Home Takeover — styles.css
   Warm amber-orange — distinct from any retail brand
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Amber-orange palette — warmer/more golden than retail-chain orange */
  --primary:        #E07B16;   /* warm amber-orange */
  --primary-dark:   #C06310;
  --primary-light:  #FFF3E0;
  --primary-mid:    #FFE0B2;
  --dark:           #1C1009;
  --bg-white:       #FFFFFF;
  --bg-warm:        #FFF8F0;
  --text-dark:      #1C1009;
  --text-body:      #3D2B0D;
  --text-muted:     #6B5A3E;
  --text-subtle:    #A89070;
  --border:         #E8D5B7;
  --border-light:   #F5EAD8;
  --shadow-sm:      0 1px 4px rgba(100,60,0,0.07);
  --shadow-card:    0 2px 16px rgba(100,60,0,0.10);
  --shadow-md:      0 4px 28px rgba(100,60,0,0.14);
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-pill:    999px;
  --font-sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w:          1180px;
  --transition:     0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-white { background: var(--bg-white); }
.section-warm  { background: var(--bg-warm); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-body); }

/* ── Scroll-Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px; border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 700; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(224,123,22,0.4); transform: translateY(-1px);
}
.btn-orange {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-orange:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(224,123,22,0.45); transform: translateY(-1px);
}
.btn-full { width: 100%; padding: 15px 28px; font-size: 1rem; }
.link-btn {
  background: none; border: none; color: var(--primary);
  font-size: inherit; font-family: inherit; padding: 0;
  text-decoration: underline; cursor: pointer;
  transition: color var(--transition);
}
.link-btn:hover { color: var(--primary-dark); }
.link-btn-light { color: rgba(255,255,255,0.85); }
.link-btn-light:hover { color: #fff; }

/* ── Pill Badge ────────────────────────────────────────── */
.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-mid); color: var(--primary-dark);
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-pill);
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 16px;
}
.pill-badge-dark  { background: var(--primary-mid); color: var(--primary-dark); }
.pill-badge-light { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Section Header ────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(100,60,0,0.10); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px; gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; color: var(--text-dark); flex-shrink: 0; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.logo-sub  { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }

/* Tab Nav in header */
.tab-nav { display: flex; align-items: center; gap: 4px; }
.tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 700;
  background: none; border: 2px solid transparent;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--primary); background: var(--primary-light); }
.tab-btn.active {
  background: var(--primary-light);
  border-color: var(--primary-mid);
  color: var(--primary-dark);
}
.header-cta { padding: 9px 22px; font-size: 0.88rem; }

/* Mobile menu */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 16px; border-top: 1px solid var(--border);
  background: var(--bg-white);
}
.mobile-nav.open { display: flex; }
.mobile-tab {
  justify-content: flex-start; padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0; border: none; border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
}
.mobile-tab.active { color: var(--primary-dark); background: none; }

/* ══════════════════════════════════════════════════════════
   TAB PANELS
   ══════════════════════════════════════════════════════════ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  padding: 64px 0 72px;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero-buy {
  background: linear-gradient(155deg, var(--bg-white) 50%, var(--bg-warm) 100%);
}
.hero-takeover {
  background: linear-gradient(155deg, var(--bg-warm) 0%, #FFF8F0 60%, var(--bg-white) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-heading { margin-bottom: 18px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/3;
}
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-badge strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-badge span { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ── Form Card ─────────────────────────────────────────── */
.form-card {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card);
}
.form-label {
  font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
.form-row.one-col { grid-template-columns: 1fr; }
.input-group { position: relative; display: flex; flex-direction: column; }
.input-group input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: var(--font-sans);
  color: var(--text-dark); background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }
.input-group input::placeholder,
.form-textarea::placeholder { color: var(--text-subtle); }
.input-group input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,123,22,0.15);
}
.input-group input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.input-error { display: none; font-size: 0.78rem; color: #ef4444; margin-top: 4px; font-weight: 600; }
.input-error.visible { display: block; }

/* Form Success */
.form-success {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--primary-light);
  border-radius: var(--radius-md); border: 1px solid var(--primary-mid);
  margin-bottom: 16px;
}
.form-success strong { display: block; color: var(--text-dark); font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.success-icon { flex-shrink: 0; }

/* TCPA */
.tcpa-text { font-size: 0.75rem; color: var(--text-subtle); line-height: 1.6; margin-top: 12px; }
.tcpa-light { color: rgba(255,255,255,0.7); }

/* Trust Stats */
.trust-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.trust-stats span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-warm); padding: 28px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDER
   ══════════════════════════════════════════════════════════ */
.section-divider { padding: 40px 0; background: var(--bg-white); }
.divider-inner { display: flex; align-items: center; gap: 16px; }
.divider-line { flex: 1; height: 1.5px; background: var(--border); }
.divider-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
  white-space: nowrap; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SELL SECTION
   ══════════════════════════════════════════════════════════ */
.sell-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.sell-content { padding-top: 8px; }
.sell-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.sell-bullets { display: flex; flex-direction: column; gap: 12px; }
.sell-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 600; color: var(--text-body);
}
.sell-form-card { position: relative; }

/* ══════════════════════════════════════════════════════════
   CARDS GRID
   ══════════════════════════════════════════════════════════ */
.cards-grid { display: grid; gap: 20px; }
.three-col  { grid-template-columns: repeat(3, 1fr); }
.four-col   { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.card-icon-orange { background: var(--primary-light); }
.card-icon-light  { background: var(--primary-mid); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 32px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px; z-index: 0;
}
.step-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 0 0 28px; overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  position: absolute; top: 14px; left: 14px;
  width: 36px; height: 36px; background: var(--primary); color: #fff;
  border-radius: 50%; font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.step-img { width: 100%; height: 190px; object-fit: cover; }
.step-card h3 { margin: 20px 22px 10px; font-size: 1.05rem; }
.step-card p  { margin: 0 22px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card {
  background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 20px;
  border: 1.5px solid var(--border);
}
.stars { display: flex; gap: 3px; }
blockquote p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; font-style: italic; }
blockquote p::before { content: '\201C'; }
blockquote p::after  { content: '\201D'; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border-light);
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 2px solid var(--primary-mid);
}
.testimonial-author div { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { font-size: 0.95rem; color: var(--text-dark); font-weight: 700; }
.testimonial-author span  { font-size: 0.8rem; color: var(--text-muted); }
.job-tag { color: var(--primary) !important; font-weight: 600 !important; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; font-size: 0.97rem; font-weight: 700; color: var(--text-dark);
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover { color: var(--primary); background: var(--primary-light); }
.faq-item.open .faq-question { color: var(--primary); background: var(--primary-light); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 22px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; padding-top: 14px; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, #7C3F00 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 80px 0;
}
.cta-container { max-width: 760px; }
.cta-content { text-align: center; color: #fff; }
.cta-content h2 { color: #fff; margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-content > p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 32px; }
.cta-content .form-card {
  text-align: left; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); box-shadow: none;
}
.cta-content .input-group input { background: rgba(255,255,255,0.95); }
.cta-content .input-group input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.cta-content .form-success { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.cta-content .form-success strong { color: #fff; }
.cta-content .form-success p { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-white); border-top: 1px solid var(--border); padding: 48px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 640px; }
.footer-disclaimer { font-size: 0.82rem; color: var(--text-subtle); line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.footer-link { font-size: 0.88rem; color: var(--text-muted) !important; text-decoration: none !important; font-weight: 600; }
.footer-link:hover { color: var(--primary) !important; }
.footer-copy { font-size: 0.8rem; color: var(--text-subtle); }

/* ══════════════════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(28,16,9,0.55);
  backdrop-filter: blur(3px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--bg-white); border-radius: var(--radius-xl);
  width: 100%; max-width: 680px; max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-head h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); }
.modal-close {
  background: var(--primary-light); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition); flex-shrink: 0;
}
.modal-close:hover { background: var(--border); color: var(--text-dark); }
.modal-body {
  overflow-y: auto; padding: 28px; flex: 1;
  color: var(--text-body); font-size: 0.92rem; line-height: 1.75;
}
.modal-body h3 { font-size: 1rem; color: var(--text-dark); margin: 20px 0 8px; font-weight: 700; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 10px; color: var(--text-muted); }
.modal-body ul { list-style: disc; padding-left: 20px; margin-bottom: 10px; }
.modal-body ul li { color: var(--text-muted); margin-bottom: 4px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .tab-nav    { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { min-height: auto; padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { order: -1; }
  .hero-image img { aspect-ratio: 16/9; }
  .hero-badge { left: 12px; bottom: -12px; }

  .form-row { grid-template-columns: 1fr; }

  .sell-grid { grid-template-columns: 1fr; gap: 40px; }

  .three-col { grid-template-columns: 1fr; }
  .four-col  { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-container { max-width: 100%; }
  .cta-container { max-width: 100%; }

  .divider-label { font-size: 0.78rem; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }

  .four-col { grid-template-columns: 1fr; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .form-card { padding: 20px 16px; }
  .hero-badge { left: 8px; right: 8px; bottom: -12px; }

  .step-img { height: 160px; }
  .trust-stats { flex-direction: column; gap: 8px; }

  .modal-head { padding: 18px 20px; }
  .modal-body { padding: 20px; }
  .modal-box  { border-radius: var(--radius-lg); }
  .testimonial-card { padding: 22px; }
}
