/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Variables ─── */
:root {
  --bg: #FAFAFA;
  --bg-warm: #F5F3EF;
  --surface: #FFFFFF;
  --surface-2: #F8F8F6;
  --primary: #0F1623;
  --primary-light: #1E2A3A;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.12);
  --text: #0F1623;
  --text-mid: #4A5568;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --success: #10B981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-height: 64px;
}

/* ─── Reset ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Utility ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

/* ─── Card grid height equalizer ─── */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-row--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-row > *,
.card-row--2col > * {
  display: flex;
  flex-direction: column;
}

/* ─── Form input unified ─── */
.input-unified {
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
  height: 48px;
}
.input-unified::placeholder { color: var(--text-light); }
.input-unified:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

/* ─── CTA button unified ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  height: 48px;
}
.btn-cta--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.30);
}
.btn-cta--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-cta--primary:active { transform: translateY(0); }
.btn-cta--white {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-cta--white:hover {
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.heading-xl {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.heading-lg {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.heading-md { font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.3; }
.body-lg { font-size: 18px; color: var(--text-mid); line-height: 1.7; }
.body-md { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  height: 44px;
  min-width: 120px;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.30);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn--primary:active { transform: translateY(0); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); height: 44px; min-width: 120px; }
.btn--outline:hover { border-color: var(--text); background: var(--surface); }
.btn--ghost { background: transparent; color: var(--text-mid); padding: 10px 16px; height: 40px; min-width: auto; }
.btn--ghost:hover { color: var(--text); background: var(--surface-2); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); height: 48px; min-width: 160px; }
.btn--sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); height: 36px; min-width: 100px; }
.btn--white {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  height: 48px;
  min-width: 160px;
}
.btn--white:hover {
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn--block { width: 100%; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-light);
  border-left: 1px solid var(--border);
  padding-left: 10px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-cta { margin-left: 8px; }

/* ─── Hero ─── */
.hero {
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  border: 1px solid rgba(59,130,246,0.2);
  color: #2563EB;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
}
.hero-headline { margin-bottom: 20px; }
.hero-sub { margin-bottom: 36px; }
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-bottom: 20px;
  align-items: stretch;
}
.hero-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
  height: 48px;
}
.hero-form input::placeholder { color: var(--text-light); }
.hero-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.hero-form button { flex-shrink: 0; height: 48px; padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.hero-note {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note svg { color: var(--success); flex-shrink: 0; }
.hero-social {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-avatars {
  display: flex;
  flex-direction: row;
}
.hero-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -8px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: var(--text-mid); }
.hero-social-text strong { color: var(--text); }

/* ─── Post Mock ─── */
.post-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.post-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}
.post-mock-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.post-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  padding: 4px 10px;
  border-radius: 12px;
}
.post-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}
.post-platform svg { color: #1DA1F2; }
.post-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-body { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.post-body p { margin-bottom: 6px; }
.post-body p:last-child { margin-bottom: 0; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.post-meta-tag { color: #3B82F6; font-weight: 600; }
.post-sep { color: var(--border); }

/* ─── Social Proof Bar ─── */
.social-proof {
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.social-proof-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-logo {
  font-weight: 700;
  font-size: 15px;
  color: #CBD5E1;
  letter-spacing: -0.01em;
}
.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.proof-stats { display: flex; gap: 40px; flex-shrink: 0; }
.proof-stat-item { text-align: left; }
.proof-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.proof-stat-label { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ─── How It Works ─── */
.how { background: var(--bg-warm); }
.how-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.how-header .eyebrow { margin-bottom: 12px; }
.how-header p { margin-top: 16px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.2);
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.4;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ─── Features ─── */
.features { background: var(--bg); }
.features-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.features-header .eyebrow { margin-bottom: 12px; }
.features-header p { margin-top: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.feature-card:hover {
  border-color: rgba(59,130,246,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ─── Testimonials ─── */
.testimonials { background: var(--surface); }
.testimonials-header { text-align: center; max-width: 500px; margin: 0 auto 56px; }
.testimonials-header .eyebrow { margin-bottom: 12px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ─── Outcomes ─── */
.outcomes {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.outcomes::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.outcomes-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}
.outcomes-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.outcomes-stats { display: flex; flex-direction: column; gap: 32px; }
.outcome-stat { min-height: 100px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.stat-bar {
  margin-top: 12px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ─── Pricing ─── */
.pricing { background: var(--bg-warm); }
.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.pricing-header .eyebrow { margin-bottom: 12px; }
.pricing-header p { margin-top: 16px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--accent-glow);
}
.pricing-card--featured:hover { transform: translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--text-light); vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; }
.pricing-desc { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 1px; color: var(--success); }
.pricing-card .btn { width: 100%; margin-top: auto; height: 44px; font-size: 15px; border-radius: var(--radius-md); }
.pricing-card .btn--primary { box-shadow: 0 2px 8px rgba(59,130,246,0.30); }
.pricing-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.pricing-faq {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-mid);
}
.pricing-faq a { color: var(--accent); text-decoration: none; font-weight: 600; }
.pricing-faq a:hover { text-decoration: underline; }

/* ─── CTA Section ─── */
.cta-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.4); }
.cta-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto; align-items: stretch; }
.cta-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
  height: 48px;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.cta-form button { flex-shrink: 0; height: 48px; padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); background: #fff; color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,0.15); border: none; font-weight: 600; cursor: pointer; }
.cta-form button:hover { background: var(--surface); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  height: 48px;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.cta-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 14px; }

/* ─── Footer ─── */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-tagline { display: none; }
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-form { flex-direction: column; max-width: 100%; }
  .social-proof-inner { flex-direction: column; gap: 24px; }
  .proof-stats { width: 100%; justify-content: flex-start; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cta-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }
  .stat-num { font-size: 38px; }
  .proof-stat-num { font-size: 22px; }
  .heading-xl { font-size: 32px; }
}