/* ── Variables ── */
:root {
  --bg: #06080D;
  --bg-2: #0C1018;
  --bg-3: #111827;
  --fg: #F0F2F5;
  --fg-muted: #8892A4;
  --green: #00E887;
  --green-dim: rgba(0,232,135,0.08);
  --orange: #FF7D4F;
  --orange-dim: rgba(255,125,79,0.1);
  --violet: #7B2FFF;
  --violet-dim: rgba(123,47,255,0.1);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --max: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── Typography ── */
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,8,13,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.navbar-logo span { color: var(--fg); }
.navbar-tagline {
  font-size: 0.8rem; color: var(--fg-muted);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: -100px; right: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: glowPulse 8s ease-in-out infinite 2s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.1); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(0,232,135,0.2);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.headline-accent {
  background: linear-gradient(135deg, var(--green), #00B86B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.proof-stat {
  padding: 20px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--green);
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 100px;
}
.proof-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Network Graphic ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.network-graphic {
  position: relative; width: 400px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.network-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: linesPulse 4s ease-in-out infinite;
}
@keyframes linesPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.node {
  position: absolute;
  width: 52px; height: 52px;
  background: var(--bg-2);
  border: 1.5px solid;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.node svg { width: 20px; height: 20px; }
.node-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  z-index: 2;
}
.node-center svg { width: 28px; height: 28px; }
.node-twitter { top: 15px; right: 60px; border-color: rgba(255,255,255,0.15); }
.node-instagram { bottom: 60px; right: 20px; border-color: rgba(255,255,255,0.15); }
.node-linkedin { bottom: 30px; left: 30px; border-color: rgba(255,255,255,0.15); }
.node-youtube { top: 40px; left: 60px; border-color: rgba(255,255,255,0.15); }
.node-tiktok { bottom: 140px; right: 130px; border-color: rgba(255,125,79,0.4); color: var(--orange); }
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,232,135,0.06);
  animation: orbitSpin linear infinite;
}
.orbit-1 {
  width: 280px; height: 280px;
  animation-duration: 20s;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-2 {
  width: 380px; height: 380px;
  animation-duration: 30s;
  animation-direction: reverse;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,125,79,0.04);
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.data-stream {
  position: absolute;
  width: 2px; border-radius: 2px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  animation: streamMove 3s ease-in-out infinite;
  opacity: 0.4;
}
.data-stream-1 { height: 60px; top: 30px; left: 180px; animation-delay: 0s; }
.data-stream-2 { height: 80px; bottom: 40px; right: 100px; background: linear-gradient(to bottom, transparent, var(--orange), transparent); animation-delay: 1s; }
.data-stream-3 { height: 40px; top: 80px; left: 100px; animation-delay: 2s; }
@keyframes streamMove {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 0.6; transform: translateY(0); }
}

/* ── Problem ── */
.problem { padding: 120px 0; background: var(--bg); }
.problem-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.problem-headline em { font-style: normal; color: var(--orange); }
.problem-body {
  font-size: 1.05rem; color: var(--fg-muted);
  max-width: 580px; line-height: 1.8;
  margin-bottom: 64px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease;
}
.problem-card:hover { border-color: rgba(255,125,79,0.2); }
.problem-icon {
  width: 40px; height: 40px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.problem-icon svg { width: 20px; height: 20px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 10px;
}
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ── How ── */
.how {
  padding: 120px 0; background: var(--bg-2);
  position: relative; overflow: hidden;
}
.how-bg { position: absolute; inset: 0; pointer-events: none; }
.how-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(123,47,255,0.12) 0%, transparent 70%);
  filter: blur(60px);
}
.how-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 72px;
}
.how-steps {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 10px;
}
.step-content p { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.7; }
.step-line {
  position: absolute; left: 28px; top: 88px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), rgba(0,232,135,0.1));
}
.step:last-child .step-line { display: none; }

/* ── Services ── */
.services { padding: 120px 0; background: var(--bg); }
.services-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 64px;
}
.services-headline .green {
  background: linear-gradient(135deg, var(--green), #00B86B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover { border-color: rgba(0,232,135,0.15); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 40px; height: 40px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }

/* ── Difference ── */
.difference { padding: 120px 0; background: var(--bg-2); }
.diff-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.diff-headline .green {
  background: linear-gradient(135deg, var(--green), #00B86B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.diff-body {
  font-size: 0.95rem; color: var(--fg-muted); line-height: 1.8;
  margin-bottom: 32px;
}
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.comparison {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-header {
  display: grid; grid-template-columns: 1fr 60px 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.comp-col {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.comp-agency { color: var(--fg-muted); }
.comp-viral { color: var(--green); }
.comp-row {
  display: grid; grid-template-columns: 1fr 60px 60px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-item { font-size: 0.88rem; color: var(--fg); }
.comp-marker { display: flex; align-items: center; justify-content: center; }
.comp-marker svg { width: 16px; height: 16px; }
.comp-no { color: #FF4F6A; opacity: 0.6; }
.comp-yes { color: var(--green); }
.comp-maybe { color: var(--fg-muted); opacity: 0.5; }

/* ── Manifesto ── */
.manifesto {
  padding: 140px 0; background: var(--bg);
  position: relative; overflow: hidden;
}
.manifesto-bg { position: absolute; inset: 0; pointer-events: none; }
.manifesto-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,232,135,0.07) 0%, transparent 70%);
  filter: blur(80px);
}
.manifesto-content { max-width: 760px; }
.manifesto-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 36px;
  position: relative;
  padding-left: 32px;
}
.manifesto-quote::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--violet));
  border-radius: 2px;
}
.manifesto-body {
  font-size: 1rem; color: var(--fg-muted); line-height: 1.9;
  margin-bottom: 48px;
}
.manifesto-signature {
  display: flex; flex-direction: column; gap: 4px;
}
.sig-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--fg);
}
.sig-title { font-size: 0.82rem; color: var(--fg-muted); }

/* ── Footer ── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6;
}
.footer-info {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-info-item { display: flex; gap: 16px; align-items: center; }
.info-label { font-size: 0.72rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; min-width: 60px; }
.info-value { font-size: 0.88rem; color: var(--fg); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.82rem; color: var(--fg-muted); }
.footer-running { font-size: 0.78rem; color: rgba(0,232,135,0.4); }

/* ── Pricing ── */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.pricing-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 72px;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.pricing-card:hover { border-color: rgba(0,232,135,0.2); }
.pricing-card-featured {
  background: linear-gradient(160deg, rgba(0,232,135,0.05) 0%, var(--bg-3) 50%);
  border-color: rgba(0,232,135,0.3);
  box-shadow: 0 0 40px rgba(0,232,135,0.06);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-top { margin-bottom: 28px; }
.tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--fg);
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.tier-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg);
}
.tier-features li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--green);
  stroke: var(--green);
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}
.tier-cta-primary {
  background: var(--green);
  color: var(--bg);
}
.tier-cta-primary:hover {
  background: #00cf79;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,232,135,0.25);
}
.tier-cta-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.tier-cta-secondary:hover {
  border-color: rgba(0,232,135,0.3);
  color: var(--green);
}

/* Why row */
.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.why-icon svg { width: 18px; height: 18px; }
.why-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Secondary CTA */
.pricing-footer-cta {
  text-align: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.inline-cta {
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.inline-cta:hover { opacity: 0.8; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .section-inner { padding: 0 24px; }
  .navbar { padding: 0 24px; }
  .navbar-tagline { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 2.4rem; }
  .hero-proof { flex-wrap: wrap; }
  .proof-divider { display: none; }
  .proof-stat { padding: 16px; }
  .problem-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .comparison-header, .comp-row { grid-template-columns: 1fr 40px 40px; }
  .comp-item { font-size: 0.8rem; }
  .price-amount { font-size: 2.2rem; }
}