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

:root {
  --bg:         #f8fafc;
  --bg-alt:     #f1f5f9;
  --bg-dark:    #0f172a;
  --card:       #ffffff;
  --border:     #e2e8f0;
  --border-lit: #94a3b8;
  --primary:    #334155;
  --primary-dk: #1e293b;
  --primary-lt: #e8edf2;
  --accent:     #ff7a45;
  --accent-lt:  #ffe7da;
  --teal:       #0ea5e9;
  --teal-lt:    #e0f2fe;
  --text-head:  #0f172a;
  --text-body:  #475569;
  --text-muted: #94a3b8;
  --font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
  --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text-head); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-body); }

.accent { color: var(--primary); }
.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--accent-lt) 60%);
  padding: 0 4px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(51,65,85,0.28);
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(51,65,85,0.36); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,122,69,0.3);
}
.btn-accent:hover { background: #ff6526; transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--border-lit);
  color: var(--text-head);
  background: #fff;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-lg { padding: 17px 36px; font-size: 17px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #64748b 100%);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff; letter-spacing: -0.5px;
}
.logo-text { font-size: 19px; font-weight: 800; color: var(--text-head); letter-spacing: -0.3px; }
.logo-text span { color: var(--primary); }
.logo-tag { font-size: 11px; color: var(--text-muted); display: block; margin-top: -2px; letter-spacing: 0.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--text-body); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.15s; }
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-pill {
  background: var(--teal-lt);
  border: 1px solid rgba(15,174,150,0.25);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-head); margin: 5px 0; border-radius: 2px; }

/* ===== HERO ===== */
.hero { padding: 168px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -260px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(51,65,85,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -260px; left: -220px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,69,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-lt);
  border: 1px solid rgba(51,65,85,0.18);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--primary-dk);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.12rem; color: var(--text-body); max-width: 520px; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.trust-icon { color: var(--teal); font-size: 15px; }

/* ===== HERO VISUAL: Score Card ===== */
.hero-visual { position: relative; }
.score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 70px -20px rgba(26,23,48,0.25);
  position: relative;
  z-index: 1;
}
.score-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.score-card-head h3 { font-size: 15px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.score-badge {
  background: var(--teal-lt); color: var(--teal);
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 8px; letter-spacing: 0.5px;
}

.score-ring-wrap { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.score-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg 234deg, var(--border) 234deg 360deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.score-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--card);
}
.score-ring-num { position: relative; font-size: 28px; font-weight: 900; color: var(--text-head); }
.score-ring-num span { font-size: 14px; color: var(--text-muted); font-weight: 600; }

.score-summary h4 { font-size: 16px; margin-bottom: 6px; }
.score-summary p { font-size: 13px; }

.score-bars { display: flex; flex-direction: column; gap: 14px; }
.score-bar-row { display: flex; align-items: center; gap: 12px; }
.score-bar-label { font-size: 13px; color: var(--text-body); font-weight: 600; width: 130px; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 8px; background: var(--bg-alt); border-radius: 6px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--primary), #64748b); }
.score-bar-fill.teal { background: linear-gradient(90deg, var(--teal), #5fd6c2); }
.score-bar-fill.accent { background: linear-gradient(90deg, var(--accent), #ffa572); }
.score-bar-pct { font-size: 12px; font-weight: 700; color: var(--text-muted); width: 36px; text-align: right; }

.float-chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--text-head);
  box-shadow: 0 16px 40px -12px rgba(26,23,48,0.2);
  z-index: 2;
}
.float-chip-1 { top: -18px; right: -18px; }
.float-chip-2 { bottom: -18px; left: -28px; }
.float-icon { font-size: 18px; }

/* ===== LOGO STRIP / LOCAL AREAS ===== */
.areas-strip { background: var(--bg-dark); padding: 28px 0; }
.areas-track {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.areas-label { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; margin-right: 8px; }
.area-pill {
  color: #fff; font-size: 14px; font-weight: 700;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px; border-radius: 20px;
}

/* ===== SECTION HEADER ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--primary-lt);
  padding: 5px 14px;
  border-radius: 16px;
}
.section-header { margin-bottom: 56px; max-width: 640px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-lit);
  box-shadow: 0 20px 50px -20px rgba(26,23,48,0.18);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.icon-slate  { background: var(--primary-lt); }
.icon-teal   { background: var(--teal-lt); }
.icon-accent { background: var(--accent-lt); }

.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--primary); text-decoration: none; }
.service-link:hover { text-decoration: underline; }

/* ===== LEAD MAGNET / FREE REPORT ===== */
.lead-magnet {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  border-radius: 28px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
}
.lead-magnet::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,122,69,0.18) 0%, transparent 70%);
}

.lead-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }

.lead-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.4px;
  margin-bottom: 20px; text-transform: uppercase;
}
.lead-magnet h2 { color: #fff; margin-bottom: 16px; }
.lead-magnet > .lead-grid > div > p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; max-width: 480px; }

.lead-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.lead-list li { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.92); font-weight: 500; }
.lead-list li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}

.lead-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 30px 80px -20px rgba(20,10,60,0.45);
}
.lead-form-card h3 { font-size: 18px; margin-bottom: 6px; }
.lead-form-card > p { font-size: 13px; margin-bottom: 22px; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 12px; font-weight: 700; color: var(--text-head); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-row input, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-head);
  background: var(--bg);
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--primary); }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 14px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-alt); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  position: absolute; top: -16px; left: 28px;
  width: 38px; height: 38px;
  background: var(--text-head);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.step-card.active .step-num { background: var(--primary); }
.step-card h3 { margin: 14px 0 10px; }
.step-card p { font-size: 14px; }

/* ===== WHY LOCAL ===== */
.why-local { }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-item { display: flex; gap: 16px; }
.why-item-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--primary-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-item h4 { font-size: 16px; margin-bottom: 4px; }
.why-item p { font-size: 14px; }

.map-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 30px 70px -24px rgba(26,23,48,0.2);
}
.map-visual {
  background: linear-gradient(135deg, var(--primary-lt), var(--teal-lt));
  border-radius: 14px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  font-size: 12px; font-weight: 800; color: var(--text-head);
}
.map-pin .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(51,65,85,0.35);
  margin-bottom: 6px;
}
.map-pin.main .dot { width: 20px; height: 20px; background: var(--accent); box-shadow: 0 6px 16px rgba(255,122,69,0.5); }
.map-pin.main { font-size: 14px; }
.map-pin-1 { top: 38%; left: 46%; }
.map-pin-2 { top: 22%; left: 28%; }
.map-pin-3 { top: 58%; left: 66%; }
.map-pin-4 { top: 70%; left: 32%; }
.map-pin-5 { top: 30%; left: 70%; }
.map-radius {
  position: absolute;
  width: 280px; height: 280px;
  border: 2px dashed rgba(51,65,85,0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.quote { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #64748b);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--text-head); font-size: 14px; }
.reviewer-role { font-size: 12px; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section {
  background: var(--bg-dark);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(255,122,69,0.12) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 14px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 34px; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); padding: 64px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text, .footer-brand .logo-tag { color: #fff; }
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 290px; line-height: 1.65; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 13px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }

/* ===== SCORE BAR EXTRAS ===== */
.score-bar-fill.danger { background: linear-gradient(90deg, #dc2626, #f97316); }
.score-bar-pct.red { color: #dc2626; font-weight: 800; }

/* ===== FORM OPTIONAL LABEL ===== */
.form-optional { font-size: 11px; color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ===== COMPETITOR INTELLIGENCE ===== */
.comp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.comp-sample-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
}
.comp-sample-head {
  padding: 22px 24px;
  background: var(--primary-dk);
  color: #fff;
}
.comp-sample-head h3 { color: #fff; font-size: 1.1rem; margin: 10px 0 4px; }
.comp-sample-head p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.comp-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  background: var(--accent); color: #fff;
  padding: 3px 9px; border-radius: 5px; text-transform: uppercase;
}
.comp-table-hdr {
  display: grid;
  grid-template-columns: 1fr 90px 130px;
  gap: 8px;
  padding: 9px 20px;
  background: var(--bg-alt);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted);
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 90px 130px;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 13px;
  transition: background 0.15s;
}
.comp-row:hover { background: var(--bg); }
.comp-row:last-child { border-bottom: none; }
.comp-emoji { margin-right: 6px; }
.comp-metric { font-weight: 500; color: var(--text-body); }
.comp-you { font-weight: 700; }
.comp-them { font-weight: 700; }
.losing { color: #dc2626; }
.winning { color: #16a34a; }
.comp-callout {
  margin: 16px 20px;
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 13px;
}
.comp-callout strong { display: block; color: #c2410c; font-size: 13px; margin-bottom: 4px; }
.comp-callout p { margin: 0; color: var(--text-body); font-size: 12px; }
.comp-explain h3 { margin-bottom: 28px; }
.comp-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.comp-check-list li { display: flex; gap: 16px; align-items: flex-start; }
.comp-check-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.comp-check-list strong { display: block; color: var(--text-head); margin-bottom: 4px; font-size: 15px; }
.comp-check-list p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ===== MOBILE ===== */
@media (max-width: 980px) {
  .hero-grid, .lead-grid, .why-grid, .comp-wrapper { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .services-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .lead-magnet { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .services-grid, .steps-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 132px 0 64px; }
  .section { padding: 64px 0; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .areas-track { justify-content: flex-start; overflow-x: auto; }
  .cta-section { padding: 48px 24px; }
  .float-chip { display: none; }
}
