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

:root {
  --bg: #060A12;
  --bg-card: #0A1220;
  --bg-card-hover: #0E1828;
  --fg: #E8EDF2;
  --fg-muted: #6B7A8A;
  --fg-dim: #3D4F63;
  --accent: #00E5B0;
  --accent-dim: rgba(0,229,176,0.12);
  --amber: #FF6535;
  --amber-dim: rgba(255,101,53,0.12);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0,229,176,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-dim); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,10,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
}
.logo-mark--sm { width: 24px; height: 24px; }
.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.6;
}
.logo-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.navbar-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,176,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,101,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.headline-accent {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ===== PHONE FRAME ===== */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.phone-frame {
  width: 280px;
  background: #0D1525;
  border-radius: 36px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(0,229,176,0.08),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(0,229,176,0.06);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(0,229,176,0.15) 0%, transparent 50%, rgba(255,101,53,0.08) 100%);
  z-index: -1;
}
.phone-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 10px;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #0A1020;
  border-radius: 20px;
  margin: 0 auto;
}
.phone-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  position: absolute;
  left: 24px;
  top: 14px;
}
.phone-signal {
  width: 40px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 14px;
  background: repeating-linear-gradient(90deg, var(--fg-dim) 0 3px, transparent 3px 5px);
  opacity: 0.5;
}
.phone-screen {
  background: #080E1C;
  border-radius: 24px;
  padding: 16px;
  min-height: 340px;
}
.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.phone-app-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.phone-app-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--accent);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

/* ===== CALL CHAIN ===== */
.phone-call-chain {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.call-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.call-step--missed { border-color: rgba(255,101,53,0.15); }
.call-step--texted { border-color: rgba(0,229,176,0.15); }
.call-step--booked { border-color: rgba(0,229,176,0.25); background: rgba(0,229,176,0.04); }
.step-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.missed-icon { background: var(--amber-dim); color: var(--amber); }
.texted-icon { background: rgba(0,229,176,0.08); color: var(--accent); }
.booked-icon { background: var(--accent-dim); color: var(--accent); }
.step-content { flex: 1; min-width: 0; }
.step-label { font-size: 12px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.step-detail { font-size: 10px; color: var(--fg-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.step-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.step-badge.missed { background: var(--amber-dim); color: var(--amber); }
.step-badge.texted { background: rgba(0,229,176,0.08); color: var(--accent); }
.step-badge.booked { background: var(--accent-dim); color: var(--accent); }
.step-connector { padding-left: 30px; height: 18px; display: flex; align-items: center; }
.connector-line {
  width: 2px;
  height: 18px;
  border-radius: 1px;
}
.connector-line.missed { background: rgba(255,101,53,0.2); }
.connector-line.texted { background: rgba(0,229,176,0.2); }

/* ===== PHONE METRICS ===== */
.phone-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric-item { text-align: center; }
.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
}
.metric-label { font-size: 9px; color: var(--fg-muted); margin-top: 2px; line-height: 1.3; }

/* ===== STATS BAR ===== */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-block {
  padding: 0 32px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.stat-unit {
  font-size: 0.5em;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 200px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.feature-icon {
  margin-bottom: 20px;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic-cyan { background: var(--accent-dim); color: var(--accent); }
.ic-amber { background: var(--amber-dim); color: var(--amber); }
.feature-number {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-detail {
  font-size: 13px;
  color: var(--fg-dim);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ===== NICHES ===== */
.niches {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.niches-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 20px 0 32px;
}
.vertical-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vertical-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.vertical-icon { flex-shrink: 0; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-outcome {
  font-size: 12px;
  color: var(--fg-dim);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.outcome-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== PAIN POINTS ===== */
.painpoints {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.painpoints-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}
.pain-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.pain-item:last-child { border-right: none; }
.pain-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.pain-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.pain-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== SOCIAL PROOF ===== */
.socialproof {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.socialproof-header {
  text-align: center;
  margin-bottom: 60px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-logo-item {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--border-accent);
}
.testimonial-stars {
  color: #F4B942;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 11px;
  color: var(--fg-muted);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(0,229,176,0.03) 0%, var(--bg) 60%);
}
.pricing-card:hover {
  border-color: var(--border-accent);
}
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-label {
  background: var(--accent-dim);
  color: var(--accent);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-amount span {
  font-size: 22px;
  color: var(--fg-muted);
  letter-spacing: 0;
  font-weight: 600;
}
.pricing-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 10px 0 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-dim);
}
.pricing-note strong { color: var(--fg-muted); }

/* ===== NICHE CARD ===== */
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 32px;
}
.niche-card--featured {
  background: linear-gradient(135deg, rgba(0,229,176,0.04) 0%, transparent 60%);
  border-color: var(--border-accent);
}
.niche-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.niche-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.niche-card-reason {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.niche-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.niche-stat { display: flex; flex-direction: column; gap: 4px; }
.niche-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.niche-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -24px;
}
blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-style: normal;
  border: none;
  padding: 0;
}
.quote-attribution {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ===== CLOSING ===== */
.closing {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,229,176,0.03) 50%, var(--bg) 100%);
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO CTA BUTTONS ===== */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #060A12;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 24px rgba(0,229,176,0.3);
}
.btn-primary:hover {
  background: #00ffca;
  box-shadow: 0 0 36px rgba(0,229,176,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--fg-dim); flex: 1; }
.footer-copy { font-size: 12px; color: var(--fg-dim); }

/* ===== RESULTS BLOCK ===== */
.results-block {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.result-item { text-align: center; }
.result-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}
.result-value span { font-size: 0.5em; color: var(--fg-muted); }
.result-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 10px;
  line-height: 1.4;
}

/* ===== SERVICES ICONS ===== */
.services-icons {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-icons-inner {}
.services-icons-header { margin-bottom: 48px; }
.icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.icon-item .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}
.icon-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .niches-inner { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stat-block { padding: 0; }
  .navbar-tagline { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pain-item:last-child { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 40px; }
  .stats { padding: 40px 24px; }
  .howitworks { padding: 60px 24px; }
  .niches { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .stats-inner { grid-template-columns: 1fr; }
  .closing-headline { font-size: 28px; }
  .phone-frame { width: 100%; max-width: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
}
