/* ── WattaPay — Styles ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #22c55e;
  --green-dark:   #16a34a;
  --green-glow:   rgba(34,197,94,0.18);
  --green-dim:    rgba(34,197,94,0.08);
  --bg:           #060a0f;
  --bg-card:      #0d1117;
  --bg-subtle:    #0a0f15;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(34,197,94,0.35);
  --text:         #f5f5f5;
  --text-muted:   #8b949e;
  --text-dim:     #4b5563;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow-green: 0 0 40px rgba(34,197,94,0.15);
  --font-main:    'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; font-family: var(--font-main);
  cursor: pointer; border: none; transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--border-hover); color: var(--text); }
.btn--nav {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  padding: .55rem 1.2rem;
  font-size: .875rem;
}
.btn--nav:hover { background: var(--green-glow); }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── Gradients ── */
.text-gradient { background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient--green  { background-image: linear-gradient(135deg, #22c55e, #4ade80); }
.text-gradient--red    { background-image: linear-gradient(135deg, #f87171, #ef4444); }
.text-gradient--blue   { background-image: linear-gradient(135deg, #60a5fa, #3b82f6); }
.text-gradient--amber  { background-image: linear-gradient(135deg, #fbbf24, #f59e0b); }

/* ── Fade-in ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,10,15,0.85);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
}
.logo-text strong { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-link {
  font-size: .9rem; color: var(--text-muted); font-weight: 500;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .25rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: all .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .6;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}
.hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(96,165,250,.06) 0%, transparent 70%);
  top: 50%; left: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .8rem; font-weight: 600; color: var(--green);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 1.25rem; color: var(--text);
}
.hero-gradient {
  background: linear-gradient(135deg, #22c55e, #4ade80, #86efac);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-desc strong { color: var(--text); }
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; gap: 2rem; align-items: center;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800; color: var(--green);
}
.hero-stat-label { font-size: .8rem; color: var(--text-muted); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Phone mockup ── */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px;
  background: #111827;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(34,197,94,.1), var(--shadow-green);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 100px; height: 28px;
  background: #111827;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.phone-screen { padding: 2rem 1rem 1rem; }
.app-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.app-header-left { display: flex; align-items: center; gap: .6rem; }
.app-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: white;
}
.app-greeting { font-size: .85rem; font-weight: 600; color: var(--text); }
.app-subtitle  { font-size: .65rem; color: var(--text-dim); }
.app-balance {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--green);
}
.app-map {
  background: #1a2535;
  border-radius: 12px;
  height: 140px;
  position: relative; overflow: hidden;
  margin-bottom: .75rem;
}
.map-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-route {
  position: absolute; top: 50%; left: 20%; right: 20%;
  height: 2px; background: linear-gradient(90deg, #22c55e, transparent);
  border-radius: 2px;
}
.map-pin {
  position: absolute;
  width: 26px; height: 26px; border-radius: 50%;
  background: #22c55e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(34,197,94,.4);
}
.map-pin.mp-busy { background: #f87171; box-shadow: 0 2px 8px rgba(248,113,113,.4); }
.map-pin.mp-active {
  width: 32px; height: 32px;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2), 0 4px 12px rgba(34,197,94,.4);
}
.map-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(34,197,94,.15);
  animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}
.mp1 { top: 40%; left: 50%; }
.mp2 { top: 20%; left: 25%; }
.mp3 { top: 60%; right: 15%; }
.mp4 { top: 25%; right: 30%; }
.station-card {
  background: #1e2d3d;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem;
}
.station-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: .4rem;
}
.station-name { font-size: .75rem; font-weight: 600; color: var(--text); }
.station-dist { font-size: .65rem; color: var(--text-dim); margin-top: 2px; }
.station-status {
  display: flex; align-items: center; gap: .3rem;
  font-size: .65rem; color: var(--green);
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
.station-price {
  font-size: .8rem; font-weight: 700; color: var(--green);
  margin-bottom: .6rem;
}
.station-btn {
  width: 100%; padding: .5rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; border: none; border-radius: 8px;
  font-size: .75rem; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  transition: opacity .2s;
}
.station-btn:hover { opacity: .9; }

/* Phone badges */
.phone-badge {
  position: absolute;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(13,17,23,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px; padding: .4rem .75rem;
  font-size: .72rem; font-weight: 500; color: var(--text);
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite;
}
.phone-badge--left { top: 30%; left: -80px; animation-delay: .5s; }
.phone-badge--right { bottom: 35%; right: -90px; animation-delay: 2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-hint-dot {
  width: 24px; height: 40px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.scroll-hint-dot::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--green);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   NETWORKS STRIP
══════════════════════════════════════════════════════ */
.networks-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.015);
}
.networks-strip .container {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.networks-label { font-size: .78rem; color: var(--text-dim); white-space: nowrap; }
.networks-logos { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.network-tag {
  font-size: .78rem; font-weight: 500; color: var(--text-muted);
  transition: color .2s;
}
.network-tag:hover { color: var(--green); }
.network-dot { color: var(--border); }

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section--dark {
  background: linear-gradient(180deg, #080c12 0%, #060a0f 100%);
  position: relative; overflow: hidden;
}
.section--subtle {
  background: rgba(255,255,255,.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--cta {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,.07) 0%, transparent 100%);
  position: relative; overflow: hidden;
}

.solution-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(34,197,94,.05) 0%, transparent 100%);
  pointer-events: none;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
}
.section-label--light { color: var(--green); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 1rem;
}
.section-title--light { color: var(--text); }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-desc--light { color: var(--text-muted); }

/* ── Pain cards ── */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.pain-card:hover {
  border-color: rgba(248,113,113,.25);
  transform: translateY(-3px);
}
.pain-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: #f87171;
}
.pain-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text);
}
.pain-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Feature cards ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover {
  border-color: var(--border-hover); transform: translateY(-3px);
}
.feature-card--highlight {
  background: rgba(34,197,94,.06);
  border-color: rgba(34,197,94,.2);
}
.feature-card--highlight:hover { border-color: rgba(34,197,94,.4); }
.feature-num {
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 800; color: var(--text-dim);
  letter-spacing: .08em; margin-bottom: .6rem;
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: .5rem;
}
.feature-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Steps ── */
.steps-container {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.step {
  display: grid; grid-template-columns: 48px 2px 1fr;
  gap: 0 1.25rem; align-items: start;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: white;
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
  flex-shrink: 0;
}
.step-line {
  background: linear-gradient(to bottom, var(--green), var(--border));
  width: 2px; height: 80px; margin-top: 48px; margin-left: 23px;
  grid-column: 2;
  grid-row: 1;
}
.step-line--last { background: transparent; }
.step-content {
  padding: .5rem 0 2.5rem;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.step-content p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Business ── */
.biz-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.biz-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.biz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.biz-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.biz-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 1rem;
}
.biz-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.biz-card p  { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ── CTA ── */
.cta-content {
  max-width: 600px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
  border-radius: 100px; padding: .35rem .9rem;
  font-size: .78rem; font-weight: 600; color: var(--green);
  margin-bottom: 1.5rem;
}
.cta-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; margin-bottom: 1rem; color: var(--text);
}
.cta-content > p {
  color: var(--text-muted); margin-bottom: 2.5rem; font-size: .95rem; line-height: 1.7;
}
.cta-form { margin-bottom: 1rem; }
.cta-form-row { display: flex; gap: .75rem; }
.cta-input {
  flex: 1; padding: .875rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text); font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.cta-input::placeholder { color: var(--text-dim); }
.cta-input:focus { border-color: rgba(34,197,94,.4); }
.cta-privacy {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .78rem; color: var(--text-dim); margin-top: .75rem;
}
.cta-success {
  flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
}
.cta-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.cta-success p  { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-top {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: 1.1rem;
  margin-bottom: 1rem; width: fit-content;
}
.footer-logo strong { color: var(--green); }
.footer-brand p {
  font-size: .875rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--green); border-color: rgba(34,197,94,.25); }
.footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.footer-col h4 {
  font-size: .78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: .875rem; color: var(--text-dim);
  margin-bottom: .6rem; transition: color .2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: var(--text-dim); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .biz-layout { grid-template-columns: 1fr; gap: 3rem; }
  .biz-cards { order: 2; }
  .biz-text { order: 1; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,10,15,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 6rem 0 3rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero-stat-divider { width: 40px; height: 1px; }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .biz-cards { grid-template-columns: 1fr; }

  .cta-form-row { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .phone-badge { display: none; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
