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

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ece4;
  --fg: #1c1c1e;
  --fg-muted: #6b6460;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --surface: #ffffff;
  --border: #e8e2d9;
  --blob-1: #d97706;
  --blob-2: #b45309;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ===== LAYOUT ===== */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== NAV ===== */
.nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ===== HERO ===== */
.hero-outer {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-headline br { display: none; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.hero-blob-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #d97706 0%, #b45309 100%);
  top: 20px;
  right: 40px;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f59e0b 0%, #d97706 100%);
  bottom: 40px;
  left: 40px;
  opacity: 0.6;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  background: #1a1a2e;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
  width: 220px;
}

.phone-screen {
  background: #16213e;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
}

.social-card {
  background: #1e2a4a;
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #b45309 100%);
  flex-shrink: 0;
}

.meta { flex: 1; }

.name-bar {
  height: 8px;
  width: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin-bottom: 4px;
}

.time-bar {
  height: 6px;
  width: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.social-card-body { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.8rem; }

.text-line { height: 7px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.text-line.short { width: 70%; }

.img-placeholder {
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #b45309 100%);
  border-radius: 8px;
  opacity: 0.6;
}

.social-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.reaction { display: flex; align-items: center; gap: 4px; }

/* ===== PAIN SECTION ===== */
.pain { padding: 5rem 0; background: var(--bg-alt); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== SOLUTION SECTION ===== */
.solution { padding: 5rem 0; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.solution-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.2s;
}

.solution-card:hover { border-color: var(--accent); }

.solution-card-wide { grid-column: span 2; }

.solution-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.solution-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING SECTION ===== */
.pricing { padding: 5rem 0; background: var(--bg-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== TESTIMONIALS / VERTICALS ===== */
.testimonials { padding: 5rem 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: var(--accent); }

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-vertical {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.testimonial-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 0;
  background: var(--fg);
  color: var(--bg);
}

.closing .section-inner { text-align: center; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--bg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: rgba(250,247,242,0.75);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.closing-cta {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3rem;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.closing-note {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--fg);
  color: rgba(250,247,242,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bg);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.footer-col-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 0.75rem;
}

.footer-col p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: rgba(250,247,242,0.6);
  cursor: default;
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(250,247,242,0.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #b45309;
  border-color: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--fg);
  background: rgba(0,0,0,0.03);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== HERO (UPDATED) ===== */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}

.hero-post-preview {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.post-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  width: 260px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.post-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b45309);
  flex-shrink: 0;
}

.post-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
}

.post-time {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.post-body {
  font-size: 0.78rem;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.post-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

/* ===== NAV (UPDATED) ===== */
.nav-logo { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav-links a { font-size: 0.9rem; color: var(--fg-muted); text-decoration: none; }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #b45309; }

/* ===== PAIN (UPDATED — 3 cards) ===== */
.pain-grid { grid-template-columns: repeat(3, 1fr); }

/* ===== SOLUTION STEPS ===== */
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.solution-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}

.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING CTA BUTTON ===== */
.pricing-card .btn {
  width: 100%;
  margin-top: 2rem;
  display: block;
}

/* ===== SAMPLE POSTS ===== */
.sample-posts { padding: 5rem 0; }

.sample-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sample-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sample-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(217,119,6,0.1);
}

.sample-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sample-industry-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.sample-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b45309);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample-post-content p {
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
}

.sample-post-footer {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.sample-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sample-posts-cta {
  text-align: center;
  margin-top: 3rem;
}

.sample-posts-cta p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

/* ===== INDUSTRIES ===== */
.industries { padding: 4rem 0; background: var(--bg-alt); }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.industry-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.2s;
  cursor: default;
}

.industry-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.industries-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 1.5rem;
}

/* ===== FAQ ===== */
.faq { padding: 5rem 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== FOOTER LINKS ===== */
.footer-col a {
  color: rgba(250,247,242,0.6);
  text-decoration: none;
}
.footer-col a:hover { color: rgba(250,247,242,0.9); }
.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom a {
  color: rgba(250,247,242,0.4);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(250,247,242,0.7); }

/* ===== THANK-YOU PAGE ===== */
.thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.thankyou-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.thankyou-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thankyou-card h1 {
  font-size: 2.2rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.thankyou-card p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.thankyou-card .btn { margin-top: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: auto; justify-content: flex-start; position: relative; }
  .hero-img { max-width: 100%; height: 240px; }
  .hero-post-preview { right: 0; bottom: -20px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card-wide { grid-column: span 2; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .sample-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-outer { padding: 3rem 0; }
  .hero-headline br { display: block; }
  .hero-post-preview { position: static; filter: none; margin-top: 1rem; }
  .post-card { width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card-wide { grid-column: span 1; }
  .solution-step { flex-direction: column; gap: 0.75rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .sample-posts-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .footer-links { grid-template-columns: 1fr; }
  .thankyou-card { padding: 2.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════════
   ONBOARDING / WELCOME PAGE
   ═══════════════════════════════════════════════ */

.ob-page {
  min-height: 100vh;
  background: var(--bg);
  padding: 3rem 1.5rem 6rem;
}

.ob-container {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Header ── */
.ob-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ob-step-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.ob-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.ob-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.ob-plan-badge {
  display: inline-block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

/* ── Error ── */
.ob-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ── Form & sections ── */
.ob-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ob-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.ob-section-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.ob-section-num {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 2rem;
  padding-top: 0.1rem;
}

.ob-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.25rem;
}

.ob-section-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.ob-optional-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 0.35rem;
}

/* ── Fields ── */
.ob-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ob-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ob-field--full { grid-column: span 2; }

.ob-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.ob-required { color: var(--accent); }

.ob-hint {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.ob-hint-inline {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.ob-input,
.ob-select,
.ob-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.ob-input:focus,
.ob-select:focus,
.ob-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.ob-textarea { resize: vertical; }

/* ── Checkboxes ── */
.ob-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.ob-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--fg);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.ob-checkbox { display: none; }

.ob-checkbox-custom {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
  position: relative;
}

.ob-checkbox:checked + .ob-checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.ob-checkbox:checked + .ob-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

.ob-checkbox-label:has(.ob-checkbox:checked) {
  border-color: var(--accent);
  background: #fffbeb;
}

/* ── Toggles ── */
.ob-toggles {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ob-toggle-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.ob-toggle-label-left,
.ob-toggle-label-right {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  min-width: 80px;
}

.ob-toggle-label-right { min-width: 80px; }

.ob-toggle-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
  flex: 1;
  min-width: 140px;
}

.ob-toggle-wrap { flex-shrink: 0; }

.ob-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ob-toggle-track {
  display: flex;
  align-items: center;
  width: 48px; height: 26px;
  border-radius: 100px;
  background: var(--border);
  transition: background 0.2s;
  padding: 3px;
  box-sizing: border-box;
}

.ob-toggle.is-on .ob-toggle-track { background: var(--accent); }

.ob-toggle-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.ob-toggle.is-on .ob-toggle-thumb { transform: translateX(22px); }

/* ── Cadence grid ── */
.ob-cadence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.ob-cadence-option { display: block; cursor: pointer; }

.ob-radio { display: none; }

.ob-cadence-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
}

.ob-cadence-card strong { font-size: 0.9rem; color: var(--fg); }
.ob-cadence-card span { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.4; }

.ob-cadence-option.is-selected .ob-cadence-card,
.ob-cadence-option:has(.ob-radio:checked) .ob-cadence-card {
  border-color: var(--accent);
  background: #fffbeb;
}

/* ── Upload area ── */
.ob-upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.ob-upload-area.is-drag-over {
  border-color: var(--accent);
  background: #fffbeb;
}

.ob-upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.ob-upload-link {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

.ob-upload-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
  text-align: left;
}

.ob-upload-tile {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--surface);
}

.ob-upload-tile--loading { opacity: 0.6; }
.ob-upload-tile--error { border-color: #fca5a5; background: #fef2f2; }
.ob-upload-tile--done { border-color: #86efac; background: #f0fdf4; }

.ob-upload-thumb { width: 100%; height: 80px; object-fit: cover; border-radius: 5px; }
.ob-upload-tile-name { color: var(--fg); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-upload-tile-status { color: var(--fg-muted); }

/* ── Submit ── */
.ob-submit-area {
  text-align: center;
  padding: 2rem 0 0;
}

.ob-submit-btn {
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
}

.ob-submit-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ── Done / confirmation page ── */
.ob-done-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--bg);
}

.ob-done-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.ob-done-icon { font-size: 3rem; margin-bottom: 1rem; }

.ob-done-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 0.5rem;
}

.ob-done-lead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin: 0 0 2rem;
}

.ob-done-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2rem;
}

.ob-done-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ob-done-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.ob-done-step p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

.ob-done-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
}

.ob-done-contact a { color: var(--accent); }

/* ── Sample Pack Lead Magnet ── */
.sample-pack {
  background: var(--surface-2, #f9fafb);
  padding: 5rem 1.5rem;
}

.sample-pack-form-wrap {
  max-width: 680px;
  margin: 2.5rem auto 0;
}

.sample-pack-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sp-field { display: flex; flex-direction: column; gap: 0.35rem; }
.sp-field--email { grid-column: span 2; }

.sp-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg-muted, #6b7280);
  text-transform: uppercase;
}

.sp-field input,
.sp-field select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--fg, #111827);
  background: #fff;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.sp-field input:focus,
.sp-field select:focus {
  outline: none;
  border-color: var(--accent, #f97316);
}

.sp-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.sp-submit {
  padding: 0.9rem 1.75rem;
  background: var(--accent, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  align-self: flex-start;
}
.sp-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.sp-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.sp-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted, #9ca3af);
  margin: -0.5rem 0 0;
}

/* Result / preview */
.sp-result { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.sp-result-header { text-align: center; margin-bottom: 2rem; }
.sp-result-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.sp-result-header h3 { font-size: 1.4rem; margin: 0 0 0.4rem; color: var(--fg, #111827); }
.sp-result-header p { color: var(--fg-muted, #6b7280); font-size: 0.95rem; margin: 0; }

.sp-posts-preview { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.sp-post-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.sp-post-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted, #9ca3af);
  margin-bottom: 0.5rem;
}
.sp-post-caption {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg, #111827);
  margin: 0 0 1rem;
}
.sp-post-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sp-post-meta-item {
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sp-meta-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
}

.sp-result-cta {
  background: var(--fg, #111827);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}
.sp-result-cta p { color: #d1d5db; margin: 0 0 1rem; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 600px) {
  .sp-fields { grid-template-columns: 1fr; }
  .sp-field--email { grid-column: span 1; }
  .sp-post-meta { grid-template-columns: 1fr; }
  .sp-submit { width: 100%; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .ob-section { padding: 1.5rem 1.25rem; }
  .ob-field-grid { grid-template-columns: 1fr; }
  .ob-field--full { grid-column: span 1; }
  .ob-section-header { flex-direction: column; gap: 0.5rem; }
  .ob-cadence-grid { grid-template-columns: 1fr; }
  .ob-toggle-row { gap: 0.5rem; }
  .ob-toggle-desc { display: none; }
  .ob-done-card { padding: 2rem 1.5rem; }
}