/* הורות של דיאלוג — Landing page (extended) */

:root {
  --bg: #faf7f2;
  --bg-warm: #f3ebe0;
  --bg-dark: #1e2a24;
  --bg-accent: #3d5a4c;
  --text: #1e2420;
  --text-muted: #5c6560;
  --text-light: #e8ebe9;
  --accent: #c4704a;
  --accent-hover: #a85d3c;
  --accent-soft: rgba(196, 112, 74, 0.1);
  --sage: #5a7d6a;
  --sage-light: #e8f0eb;
  --border: #e0d8ce;
  --shadow: 0 4px 24px rgba(44, 62, 53, 0.08);
  --shadow-lg: 0 12px 48px rgba(44, 62, 53, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Heebo', system-ui, sans-serif;
  --font-display: 'Frank Ruhl Libre', 'Heebo', serif;
  --max: 1120px;
  --narrow: 680px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
  color: var(--text);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 112, 74, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 112, 74, 0.45);
}

.btn-small {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  padding: 0.5rem 1.125rem;
  font-size: 0.9rem;
}

.btn-small:hover {
  background: var(--sage-light);
}

.btn-large {
  padding: 1.05rem 2rem;
  font-size: 1.0625rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-accent);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, var(--sage-light) 0%, transparent 55%),
    var(--bg);
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
  }
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-quote {
  border-right: 4px solid var(--accent);
  padding: 1.25rem 1.5rem 1.25rem 0;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--text);
  background: linear-gradient(to left, transparent, var(--accent-soft));
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.visual-card {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.visual-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.visual-card p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  margin: 0;
  position: relative;
}

/* Interstitial — מתח בין סקשנים */
.interstitial {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3.5rem 0;
  text-align: center;
}

.interstitial p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}

.interstitial strong {
  color: #fff;
}

.interstitial--accent {
  background: var(--accent);
  color: #fff;
}

.interstitial--accent strong {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Sections */
.section {
  padding: 5rem 0;
}

/* Scene — הרגע שאחרי */
.scene {
  background: #fff;
}

.scene-body p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.scene-emphasis {
  font-family: var(--font-display);
  font-size: 1.375rem !important;
  color: var(--text) !important;
  font-weight: 700;
}

.scene-quote {
  border-right: 3px solid var(--sage);
  padding: 1.25rem 1.5rem 1.25rem 0;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--bg-accent);
  background: var(--sage-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.scene-kicker {
  font-size: 1.1875rem;
  color: var(--accent) !important;
  margin-top: 1.5rem;
}

/* Cycle — המעגל */
.cycle {
  background: var(--bg-warm);
}

.cycle h2 {
  text-align: center;
}

.cycle-track {
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cycle-step {
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.cycle-step--tense {
  border-color: var(--accent);
  background: #fffaf7;
}

.cycle-step--dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: transparent;
}

.cycle-step--dark h3 {
  color: #fff;
}

.cycle-step--dark p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cycle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--sage-light);
  color: var(--sage);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.cycle-step--dark .cycle-num {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cycle-step h3 {
  margin-bottom: 0.35rem;
}

.cycle-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.cycle-arrow {
  text-align: center;
  padding: 0.5rem;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.cycle-arrow--loop {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.cycle-close {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mirror */
.mirror {
  background: var(--bg);
}

.mirror h2 {
  text-align: center;
}

.mirror-list {
  list-style: none;
  margin: 2.5rem 0;
}

.mirror-list li {
  position: relative;
  padding: 1.125rem 0 1.125rem 0;
  padding-right: 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.025rem;
  line-height: 1.65;
}

.mirror-list li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 1.35rem;
  font-size: 0.45rem;
  color: var(--accent);
}

.mirror-close {
  text-align: center;
  font-size: 1.1875rem;
  color: var(--text-muted);
  margin-top: 2rem;
  line-height: 1.7;
}

/* Fears */
.fears {
  background: #fff;
}

.fears h2 {
  text-align: center;
}

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

@media (min-width: 600px) {
  .fears-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .fears-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fear-card {
  background: var(--bg);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.fear-card--accent {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: transparent;
  grid-column: 1 / -1;
}

.fear-card--accent strong {
  color: #fff;
}

.fear-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.fear-card--accent .fear-num {
  color: rgba(255, 255, 255, 0.5);
}

.fear-card p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Evening scene */
.evening {
  background: var(--bg-warm);
}

.evening-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .evening-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
  }
}

.evening-story p {
  color: var(--text-muted);
  margin-bottom: 1.125rem;
}

.evening-punch {
  font-size: 1.0625rem;
  color: var(--text) !important;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.evening-aside {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.evening-aside h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.evening-aside ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.evening-aside li {
  padding: 0.5rem 0;
  padding-right: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.evening-aside-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.evening-aside-note strong {
  color: #fff;
}

/* Dream */
.dream {
  background: #fff;
}

.dream-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .dream-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.dream-text p {
  color: var(--text-muted);
}

.dream-list {
  list-style: none;
  margin-top: 1.5rem;
}

.dream-list li {
  padding: 0.625rem 0;
  padding-right: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.dream-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--sage);
  font-weight: 700;
}

.dream-aside {
  background: var(--sage-light);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border-right: 4px solid var(--sage);
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--bg-accent);
}

.dream-aside-sub {
  font-size: 0.95rem;
  color: var(--sage);
  font-weight: 600;
  margin: 0;
}

/* Beliefs */
.beliefs {
  background: var(--bg);
}

.beliefs h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.beliefs-cols {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .beliefs-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.beliefs-block {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.beliefs-block--pain {
  border-color: var(--accent);
  background: #fffaf7;
}

.beliefs-block h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage);
  margin-bottom: 1.125rem;
}

.beliefs-block ul {
  list-style: none;
}

.beliefs-block li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.beliefs-truth {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
}

.beliefs-truth p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.beliefs-truth-big {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.55;
  margin: 1.25rem 0 !important;
}

.beliefs-truth-big strong {
  color: #fff;
}

/* Failed solutions */
.failed {
  background: var(--bg-warm);
}

.failed h2 {
  text-align: center;
}

.failed-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .failed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.failed-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.failed-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.failed-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.failed-but {
  color: var(--text) !important;
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.failed-close {
  text-align: center;
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Fork */
.fork {
  background: #fff;
}

.fork h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.fork-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .fork-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fork-path {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
}

.fork-path--dark {
  background: #f5f0eb;
  border: 2px solid var(--border);
}

.fork-path--light {
  background: var(--bg-accent);
  color: var(--text-light);
  border: 2px solid var(--bg-accent);
}

.fork-path h3 {
  margin-bottom: 1.25rem;
}

.fork-path--dark h3 {
  color: var(--text-muted);
}

.fork-path--light h3 {
  color: #fff;
}

.fork-path ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.fork-path li {
  padding: 0.5rem 0;
  padding-right: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
}

.fork-path--dark li {
  color: var(--text-muted);
}

.fork-path--dark li::before {
  content: '✕';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.fork-path--light li {
  color: rgba(255, 255, 255, 0.9);
}

.fork-path--light li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #fff;
  font-weight: 700;
}

.fork-end {
  font-style: italic;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.85;
}

.fork-cta {
  text-align: center;
}

/* Method */
.method {
  background:
    radial-gradient(ellipse 80% 60% at 80% 100%, var(--sage-light) 0%, transparent 50%),
    var(--bg);
}

.method-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.method-intro {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.method-steps {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .method-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: #fff;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}

.step-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 50%;
  font-size: 1.125rem;
}

.step p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.method-insight {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.method-insight p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Mechanism */
.mechanism {
  background: var(--bg-dark);
  color: var(--text-light);
}

.mechanism h2 {
  color: #fff;
  text-align: center;
}

.mechanism-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.mechanism-body strong {
  color: #fff;
}

.mechanism-kicker {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  color: #fff !important;
  margin-top: 2rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.6;
}

/* Transform before/after */
.transform {
  background: #fff;
}

.transform h2 {
  text-align: center;
}

.transform-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 700px) {
  .transform-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}

.transform-col {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
}

.transform-col--before {
  background: #f5f0eb;
  border: 1px solid var(--border);
}

.transform-col--after {
  background: var(--sage-light);
  border: 2px solid var(--sage);
}

.transform-col h3 {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.transform-col--before h3 {
  color: var(--text-muted);
}

.transform-col--after h3 {
  color: var(--bg-accent);
}

.transform-col ul {
  list-style: none;
}

.transform-col li {
  padding: 0.625rem 0;
  padding-right: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.transform-col--before li {
  color: var(--text-muted);
}

.transform-col--after li {
  color: var(--text);
}

.transform-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 699px) {
  .transform-divider {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}

/* Outcomes */
.outcomes {
  background: var(--bg-warm);
}

.outcomes h2 {
  text-align: center;
}

.outcomes-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .outcomes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.outcomes-grid article {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.outcomes-grid h3 {
  color: var(--accent);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outcomes-grid p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.outcomes-quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bg-accent);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
  border: none;
  padding: 0;
}

/* Needs */
.needs {
  background: #fff;
}

.needs h2 {
  text-align: center;
}

.needs-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 2.5rem 0;
}

.need {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.975rem;
  line-height: 1.5;
}

.need span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--sage);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  min-width: 5.5rem;
  text-align: center;
}

.needs-extra {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Objections */
.objections {
  background: var(--bg);
}

.objections h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.objections-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.objection {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.objection summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.objection summary::-webkit-details-marker {
  display: none;
}

.objection summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
}

.objection[open] summary::after {
  content: '−';
}

.objection p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 0;
}

/* Strategic */
.strategic {
  background: var(--bg-accent);
  color: var(--text-light);
  text-align: center;
  padding: 5.5rem 0;
}

.strategic-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.strategic h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.strategic-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.strategic-body--big {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
  margin: 1.5rem 0 !important;
}

.strategic-body--big strong {
  color: #fff;
}

.strategic-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* CTA */
.cta {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5.5rem 0;
}

.cta h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.cta-body {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.cta-emphasis {
  font-family: var(--font-display);
  font-size: 1.375rem !important;
  color: #fff !important;
  margin: 1.5rem 0 !important;
}

.cta-emphasis strong {
  color: var(--accent);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 540px) {
  .signup-form {
    flex-direction: row;
  }
}

.signup-form input {
  flex: 1;
  padding: 1.05rem 1.35rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input:focus {
  border-color: var(--accent);
}

.signup-form input::placeholder {
  color: #999;
}

.cta-footnote {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #141a17;
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tag {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.45;
  margin: 0;
}
