/* ══════════════════════════════════════════════════════════
   LFG Maison Solutions — Consumer-facing brand system
   Typography: Inter (body) + Plus Jakarta Sans (display)
   ══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand colours */
  --orange:       #E87722;
  --orange-d:     #C45911;
  --orange-l:     #FFF4EC;
  --orange-mid:   #FCDEC6;

  /* Neutrals */
  --black:        #0F0F10;
  --ink:          #1A1A1A;
  --dark:         #2D2D2D;
  --gray:         #555555;
  --gray-l:       #8A8A8A;
  --gray-xl:      #BBBBBB;
  --line:         #EAEAEA;
  --bg:           #F8F7F5;
  --bg-warm:      #FAF7F3;
  --white:        #FFFFFF;

  /* Semantic */
  --green:        #1E7E34;
  --green-bg:     #EAF5EB;
  --gold:         #D4A017;

  /* System */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow-xs:    0 1px 3px rgba(15,15,16,0.05);
  --shadow:       0 4px 20px rgba(15,15,16,0.06);
  --shadow-md:    0 8px 32px rgba(15,15,16,0.08);
  --shadow-lg:    0 16px 56px rgba(15,15,16,0.14);
  --shadow-orange:0 12px 40px rgba(232,119,34,0.28);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink); background: var(--white);
  font-size: 15.5px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo img { height: auto; width: 150px; padding-bottom: 6px; }
.nav-links {
  display: flex; gap: 2px; align-items: center; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: 14px;
  padding: 9px 14px; border-radius: 8px;
  transition: all .15s ease;
}
.nav-links a:hover { background: var(--orange-l); color: var(--orange); }
.nav-links a.active { color: var(--orange); font-weight: 700; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
  box-shadow: 0 4px 14px rgba(232,119,34,0.32);
}
.nav-cta:hover {
  background: var(--orange-d) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,119,34,0.42);
}
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0;
  border-radius: 2px; transition: all .2s;
}

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: var(--bg); border-radius: 999px;
  padding: 3px; gap: 2px; margin-left: 10px;
  border: 1px solid var(--line);
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 700;
  color: var(--gray-l); padding: 5px 11px;
  border-radius: 999px; transition: all .15s;
  letter-spacing: .05em;
}
.lang-btn.active {
  background: var(--ink); color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   LAYOUT + TYPOGRAPHY
   ══════════════════════════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

h1, h2, h3, h4, .display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
p  { color: var(--gray); line-height: 1.7; }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-l);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section-label.green { color: var(--green); background: var(--green-bg); }
.section-label.light { background: rgba(255,255,255,0.12); color: var(--orange); }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer;
  border: none; transition: all .18s ease;
  gap: 8px; font-family: inherit;
  line-height: 1;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 20px rgba(232,119,34,0.3);
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,119,34,0.42);
}
.btn-outline {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--orange-l); transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn-block { width: 100%; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232,119,34,0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(232,119,34,0.08), transparent 55%),
    linear-gradient(180deg, #0F0F10 0%, #1A1A1A 100%);
  padding: 110px 0 90px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero .hero-sub {
  color: #B8B8B8; font-size: 17.5px; line-height: 1.6;
  margin-bottom: 28px; max-width: 520px;
}
.hero-trust {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 8px 14px;
  color: #D8D8D8; font-size: 12.5px; font-weight: 500;
}
.trust-badge strong { color: var(--white); font-weight: 700; }

/* Hero reviews row */
.hero-reviews {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.hero-stars { display: flex; align-items: center; gap: 8px; }
.hero-stars .stars { color: #FFB92B; font-size: 16px; letter-spacing: 2px; }
.hero-stars .rating { color: var(--white); font-weight: 700; font-size: 14px; }
.hero-stars .count { color: var(--gray-xl); font-size: 13px; }
.hero-avatars { display: flex; align-items: center; gap: -8px; }
.hero-avatars .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--black);
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  margin-left: -8px;
  font-size: 11px; font-weight: 700; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.hero-avatars .av:first-child { margin-left: 0; }

/* Hero form card */
.hero-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-form-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; gap: 12px;
}
.hero-form-head h3 { font-size: 20px; margin-bottom: 4px; color: var(--ink); }
.hero-form-head p { font-size: 13px; color: var(--gray); }
.free-badge {
  background: var(--green); color: var(--white);
  font-size: 10.5px; font-weight: 800; padding: 5px 12px;
  border-radius: 999px; letter-spacing: .08em; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(30,126,52,0.3);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  background:
    radial-gradient(800px 300px at 50% -10%, rgba(232,119,34,0.18), transparent 60%),
    linear-gradient(180deg, #0F0F10 0%, #1A1A1A 100%);
  padding: 72px 0 60px; text-align: center;
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #B8B8B8; max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   STATS BAR (below hero)
   ══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; align-items: center;
}
.stat-block { text-align: center; }
.stat-block .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--orange); line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-block .lbl {
  font-size: 12.5px; font-weight: 500;
  color: var(--gray); letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR (orange strip)
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink); padding: 20px 0;
  border-top: 3px solid var(--orange);
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 38px; flex-wrap: wrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 13.5px; font-weight: 600;
}
.trust-item .icon { font-size: 18px; }

/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-xs);
  transition: all .2s ease;
}
.card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-orange {
  background: var(--orange-l);
  border-color: var(--orange-mid);
}
.card-green { background: var(--green-bg); border-color: #C3E6CB; }

/* ── STEP CARDS ─────────────────────────── */
.step-card { position: relative; padding-top: 40px; }
.step-num {
  position: absolute; top: -20px; left: 26px;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(232,119,34,0.35);
}
.step-card h3 { margin-bottom: 10px; }

/* ── SERVICE CARDS ──────────────────────── */
.service-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: all .22s ease;
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column;
  background: var(--white);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-body { padding: 28px 24px 20px; flex: 1; }
.service-icon { font-size: 42px; margin-bottom: 14px; display: block; line-height: 1; }
.service-card h3 { color: var(--ink); margin-bottom: 8px; font-size: 19px; }
.service-card p { font-size: 14px; color: var(--gray); }
.service-cta {
  display: block; padding: 16px 24px;
  background: var(--bg); color: var(--orange);
  font-weight: 700; font-size: 13px;
  text-align: center; letter-spacing: .02em;
  border-top: 1px solid var(--line);
  transition: all .2s;
}
.service-card:hover .service-cta {
  background: var(--orange); color: var(--white);
  border-top-color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px 24px;
  box-shadow: var(--shadow-xs); position: relative;
  transition: all .2s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.review-stars {
  color: #FFB92B; font-size: 15px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-quote {
  color: var(--ink); font-size: 15px; line-height: 1.65;
  font-weight: 500; margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: var(--white); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.review-meta .name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-meta .where { font-size: 12.5px; color: var(--gray-l); }

/* ══════════════════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 13px; color: var(--ink); }
input, select, textarea {
  padding: 12px 14px;
  border: 1.5px solid #DEDEDE;
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
  color: var(--ink); background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
}
textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 10px; }
.form-note {
  font-size: 12px; color: var(--gray-l);
  margin-top: 12px; text-align: center; line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BULLET LIST
   ══════════════════════════════════════════════════════════ */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--gray); font-size: 14.5px;
}
.bullet-list li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 4px;
  border-radius: 50%; background: var(--orange-l);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23E87722' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.bullet-list li strong { color: var(--ink); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 12px;
  background: var(--white);
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--orange-mid); }
.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--ink); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-a { color: var(--gray); font-size: 14.5px; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(232,119,34,0.22), transparent 60%),
    linear-gradient(180deg, #0F0F10 0%, #1A1A1A 100%);
  padding: 100px 0; text-align: center;
  position: relative;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: #B8B8B8; max-width: 520px; margin: 0 auto 32px; font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--black); padding: 64px 0 28px;
  border-top: 3px solid var(--orange);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; align-items: start;
}
.footer-brand img {
  height: auto; width: 170px; margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p { color: var(--gray-xl); font-size: 13.5px; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white); font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--gray-xl); text-decoration: none;
  font-size: 14px; transition: color .15s;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact p, .footer-contact a {
  font-size: 14px; color: var(--gray-xl);
  line-height: 1.9; text-decoration: none;
}
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1140px; margin: 40px auto 0;
  padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 12.5px; color: #666; margin: 0;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HIGHLIGHT BOX
   ══════════════════════════════════════════════════════════ */
.highlight-box {
  background: var(--green-bg);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--green); font-weight: 600; font-size: 14.5px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   SVG ICONS (line-art system)
   ══════════════════════════════════════════════════════════ */
.icon {
  display: inline-block;
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 28px; height: 28px; }
.icon-lg { width: 44px; height: 44px; stroke-width: 1.75; }
.icon-xl { width: 56px; height: 56px; stroke-width: 1.6; }

/* Filled variant for stars, etc. */
.icon-fill { fill: currentColor; stroke: none; }

/* Accent circle behind icons (used in service sections) */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--orange-l); color: var(--orange);
  margin-bottom: 16px;
}
.icon-badge .icon { width: 32px; height: 32px; stroke-width: 1.75; }
.icon-badge-dark {
  background: rgba(232,119,34,0.12); color: var(--orange);
}

/* Pill-style trust row with svg */
.trust-item .icon { color: var(--orange); width: 18px; height: 18px; }
.hero-trust .trust-badge .icon { color: var(--orange); width: 14px; height: 14px; }

/* Small icon sitting inline with text (heading prefixes) */
.icon-inline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--orange-l); color: var(--orange);
  margin-right: 8px; vertical-align: -7px;
}
.icon-inline .icon { width: 16px; height: 16px; }

/* Review stars */
.review-stars { display: inline-flex; gap: 1px; color: #FFB92B; }
.review-stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.hero-stars .stars { display: inline-flex; gap: 1px; color: #FFB92B; }
.hero-stars .stars .icon { width: 14px; height: 14px; fill: currentColor; stroke: none; }

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.bg-gray  { background: var(--bg); }
.bg-warm  { background: var(--bg-warm); }
.bg-orange-l { background: var(--orange-l); }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form { max-width: 540px; margin: 0 auto; }
  .hero .hero-sub { max-width: 100%; }
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .cards-3, .cards-4, .cards-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); padding: 18px;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; }
  .nav-toggle { display: block; }
  section { padding: 60px 0; }
  .hero { padding: 72px 0 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-reviews { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stats-grid { gap: 20px; }
  .stat-block .num { font-size: 28px; }
  h1 { font-size: clamp(28px, 7vw, 36px) !important; }
}
