/* =============================================
   ZAVVO GROUP — style.css
   Mobile-first, premium conversion design
   ============================================= */

/* ── 1. VARIABLES & RESET ─────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1E3A5F;
  --text-dark:   #0F172A;
  --text-mid:    #475569;
  --text-light:  #94A3B8;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --light:       #F1F5F9;
  --border:      #E2E8F0;
  --green:       #DC2626;
  --green-dark:  #B91C1C;
  --green-light: #FEE2E2;
  --green-glow:  rgba(220,38,38,.35);
  --red:         #EF4444;
  --nav-h:       72px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --shadow-xl:   0 24px 80px rgba(0,0,0,.20);
  --transition:  .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 2. TYPOGRAPHY ────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { line-height: 1.68; }

/* ── 3. UTILITIES ─────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section       { padding: 80px 0; }
.bg-light      { background: var(--off-white); }
.bg-navy       { background: var(--navy); }
.text-green    { color: var(--green); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 14px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ── 4. BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) !important; }

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--green-glow);
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--green-glow);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-lg   { padding: 17px 36px; font-size: 1.05rem; border-radius: 14px; }


/* ── 5. NAVIGATION ────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--navy);
}
.nav-logo span { color: var(--green); }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
/* Footer logo image — brighten on dark background */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark);
  margin-left: auto;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--green); }

.nav-cta { margin-left: auto; padding: 11px 22px; font-size: .88rem; }

@media (min-width: 640px) {
  .nav-phone { display: flex; }
  .nav-cta   { margin-left: 16px; }
}


/* ── 6. HERO ──────────────────────────────── */
#hero {
  background:
    linear-gradient(to right, #0a1628 0%, #0a1628 35%, rgba(10,22,40,0.82) 55%, rgba(10,22,40,0.2) 80%, rgba(10,22,40,0) 100%),
    url('hero.png') right center / cover no-repeat;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* HERO CONTENT */
.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 .text-green { color: #FCA5A5; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.hero-checks svg { flex-shrink: 0; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* FORM CARD */
.hero-form-wrap { width: 100%; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
}

.form-card-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 22px 28px;
  text-align: center;
}
.form-card-top h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.form-card-top p {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}

.form-body { padding: 24px 28px 28px; }

/* Progress */
.form-progress { margin-bottom: 22px; }
.progress-track {
  width: 100%;
  height: 5px;
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 10px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.progress-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  display: block;
}

/* Form fields */
.form-step         { display: none; }
.form-step.active  { display: block; animation: stepIn .3s ease; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.req { color: var(--green); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.form-group input.has-error { border-color: var(--red); }

.field-err {
  font-size: .78rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 5px;
  min-height: 0;
}

/* Radio pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill { cursor: pointer; }
.pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.pill span {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
  user-select: none;
}
.pill:hover span { border-color: var(--green); color: var(--green); }
.pill input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Yes/No toggle */
.toggle-group {
  display: flex;
  gap: 12px;
}
.toggle-opt { flex: 1; cursor: pointer; }
.toggle-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
  transition: all var(--transition);
  user-select: none;
}
.toggle-opt:hover span { border-color: var(--green); color: var(--green); }
.toggle-opt input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Submit button loader */
.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}
.spin-icon { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* TCPA */
.tcpa {
  font-size: .7rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-top: 12px;
  text-align: center;
}
.tcpa a { color: var(--green); text-decoration: underline; }

/* Thank You state */
.ty-wrap { text-align: center; padding: 8px 0 4px; }

.ty-icon {
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.ty-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.ty-wrap p {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 24px;
}
.ty-email {
  font-size: .8rem !important;
  color: var(--text-light) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}
.ty-email a { color: var(--green); }

/* Desktop hero layout */
@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-content { flex: 1 1 0; }
  .hero-form-wrap {
    flex: 0 0 420px;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
  }
}


/* ── 7. TRUST BAR ─────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tb-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tb-text { display: flex; flex-direction: column; gap: 2px; }
.tb-text strong { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.tb-text span   { font-size: .78rem; color: var(--text-mid); }

@media (min-width: 768px) {
  .trust-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}


/* ── 8. WHY US ────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p  { font-size: .92rem; color: var(--text-mid); }

@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }


/* ── 9. SITUATIONS ────────────────────────── */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.sit-icon-wrap {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.sit-card h4 { margin-bottom: 8px; font-size: 1rem; }
.sit-card p  { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }

@media (min-width: 640px)  { .situations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .situations-grid { grid-template-columns: repeat(4, 1fr); } }


/* ── 10. HOW IT WORKS ─────────────────────── */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px var(--green-glow);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p  { font-size: .92rem; color: var(--text-mid); }

.step-arrow { color: var(--text-light); display: none; }

@media (min-width: 900px) {
  .steps-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .step-card { flex: 1; max-width: none; }
  .step-arrow { display: flex; align-items: center; padding: 0 4px; flex-shrink: 0; margin-top: -28px; }
}


/* ── 11. COMPARISON TABLE ─────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.compare-table thead tr {
  background: var(--navy);
  color: #fff;
}
.compare-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.compare-table .feature-col { color: rgba(255,255,255,.7); font-weight: 500; }
.compare-table .zavvo-col   { background: var(--green); color: #fff; }
.compare-table .agent-col   { color: rgba(255,255,255,.8); }

.table-brand {
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.compare-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--off-white); }

.compare-table td {
  padding: 16px 20px;
  font-size: .9rem;
  vertical-align: middle;
}
.compare-table tbody .feature-col { font-weight: 600; color: var(--text-dark); }
.compare-table tbody .zavvo-col   { background: rgba(220,38,38,.06); }
.compare-table tbody .agent-col   {}

.cell-good {
  font-weight: 700;
  color: var(--green);
}
.cell-good::before { content: '✓  '; }

.cell-bad {
  color: var(--text-mid);
}
.cell-bad::before { content: '✗  '; color: var(--red); }


/* ── 12. REVIEWS ──────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars { font-size: 1.15rem; color: #F59E0B; letter-spacing: 2px; }
.review-text  { font-size: .93rem; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; font-weight: 700; }
.reviewer span   { font-size: .8rem; color: var(--text-light); }

@media (min-width: 768px)  { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }


/* ── 13. FAQ ──────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  transition: color var(--transition), background var(--transition);
}
.faq-q:hover { color: var(--green); background: var(--off-white); }
.faq-q[aria-expanded="true"] { color: var(--green); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform .28s ease;
  color: var(--text-light);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ── 14. BOTTOM CTA ───────────────────────── */
#bottom-cta {
  position: relative;
  overflow: hidden;
}
#bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(220,38,38,.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #FCA5A5;
  margin-bottom: 14px;
}
.cta-block h2 { color: #fff; margin-bottom: 16px; }
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-note {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 22px;
}


/* ── 15. FOOTER ───────────────────────────── */
#footer {
  background: #07111d;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; }
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--green); }

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contacts a:hover { color: var(--green); }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-h4-mt { margin-top: 28px !important; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-col a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .76rem;
  color: rgba(255,255,255,.28);
  line-height: 1.6;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--green); }

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}


/* ── 16. SCROLL ANIMATIONS ────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger children */
.benefits-grid   .benefit-card:nth-child(2),
.situations-grid .sit-card:nth-child(2),
.reviews-grid    .review-card:nth-child(2) { transition-delay: .1s; }

.benefits-grid   .benefit-card:nth-child(3),
.situations-grid .sit-card:nth-child(3),
.reviews-grid    .review-card:nth-child(3) { transition-delay: .2s; }

.benefits-grid   .benefit-card:nth-child(4),
.situations-grid .sit-card:nth-child(4)    { transition-delay: .05s; }

.benefits-grid   .benefit-card:nth-child(5),
.situations-grid .sit-card:nth-child(5)    { transition-delay: .15s; }

.benefits-grid   .benefit-card:nth-child(6),
.situations-grid .sit-card:nth-child(6)    { transition-delay: .25s; }


/* ── 17. RESPONSIVE POLISH ────────────────── */
@media (max-width: 400px) {
  .hero-badge { font-size: .68rem; padding: 7px 14px; }
  .hero-stats { gap: 14px; }
  .hero-stat strong { font-size: 1.3rem; }
  .form-body { padding: 20px 18px 22px; }
}

@media (min-width: 640px) {
  .section { padding: 100px 0; }
  .hero-sub { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
  .trust-bar { padding: 36px 0; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}


/* ── REVIEW SUBMISSION ────────────────────── */
.write-review-wrap {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.write-review-wrap p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: .95rem;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.review-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.review-form-wrap.open { max-height: 900px; }

.review-form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-top: 24px;
}
.review-form-card h3 { margin-bottom: 6px; }
.review-form-card > p {
  color: var(--text-mid);
  font-size: .88rem;
  margin-bottom: 24px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .review-form-row { grid-template-columns: 1fr; } }

.review-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.review-form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}

/* Star rating */
.star-rating {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.star-btn {
  font-size: 2rem;
  color: #D1D5DB;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color var(--transition), transform .15s ease;
}
.star-btn:hover,
.star-btn.hover,
.star-btn.active { color: #F59E0B; transform: scale(1.15); }

/* Review success */
.review-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  color: #15803D;
  margin-top: 16px;
}

/* ── WHY US SPLIT LAYOUT ─────────────────────── */
.why-us-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.why-us-img-col {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.why-us-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.why-us-text-col {
  width: 100%;
}
.section-header--left {
  text-align: left;
  max-width: none;
  margin-bottom: 32px;
}
.section-header--left h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
@media (min-width: 900px) {
  .why-us-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .why-us-img-col { width: 42%; }
  .why-us-img { height: 500px; }
  .why-us-text-col { width: 58%; }
}

/* ── STEP CARD IMAGES ────────────────────────── */
.step-img-wrap {
  width: calc(100% + 56px);
  margin: -36px -28px 24px -28px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.step-card:hover .step-img { transform: scale(1.05); }

/* ── SIT CARD IMAGES ─────────────────────────── */
.sit-img-wrap {
  width: calc(100% + 40px);
  margin: -24px -20px 16px -20px;
  height: 130px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.sit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sit-card:hover .sit-img { transform: scale(1.05); }


/* ── HAMBURGER MENU ──────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu.open { display: flex; }

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-link:hover { background: var(--off-white); color: var(--green); }
.mobile-menu-phone { color: var(--green) !important; }

@media (max-width: 639px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}


/* ── MOBILE RESPONSIVE FIXES ─────────────────── */
@media (max-width: 639px) {

  /* Hero — solid dark overlay on mobile so text is always readable */
  #hero {
    background:
      linear-gradient(to bottom, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.92) 60%, rgba(10,22,40,0.85) 100%),
      url('hero.png') center center / cover no-repeat;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 48px;
  }

  .hero-container { gap: 28px; }

  /* Section padding tighter on mobile */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Hero stats — wrap nicely */
  .hero-stats { gap: 12px; }
  .hero-stat strong { font-size: 1.25rem; }
  .hero-stat-sep { height: 28px; }

  /* Form card */
  .form-card-top { padding: 18px 20px; }
  .form-body { padding: 18px 16px 20px; }
  .form-card-top h2 { font-size: 1.1rem; }

  /* Form radio pills — wrap on small screens */
  .pill span { padding: 7px 12px; font-size: .78rem; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Benefits grid — single column on mobile */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 22px 18px; }

  /* Situations grid — 2 columns on mobile */
  .situations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sit-card { padding: 16px 12px; }
  .sit-card h4 { font-size: .9rem; }
  .sit-card p { font-size: .78rem; }
  .sit-img-wrap { height: 100px; }
  .sit-icon-wrap { width: 44px; height: 44px; margin-bottom: 10px; }

  /* Step cards — full width, no max-width cap */
  .step-card { max-width: 100%; padding: 0 0 24px; }
  .step-img-wrap { width: 100%; margin: 0 0 20px 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; height: 160px; }
  .step-num { margin: 0 auto 16px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }

  /* Review form */
  .review-form-card { padding: 24px 18px; }
  .review-form-row { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: .92rem; }
  .faq-a p { padding: 0 18px 16px; }

  /* Bottom CTA buttons stack */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  #footer { padding: 48px 0 0; }

  /* Why Us image shorter on mobile */
  .why-us-img { height: 220px; }
  .why-us-inner { gap: 28px; }

  /* Trust bar — 2x2 grid */
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tb-text strong { font-size: .82rem; }
  .tb-text span { font-size: .72rem; }
  .tb-icon { width: 40px; height: 40px; }
}
