/* ── SHARED SECTION STYLES ── */
.section-title {
  font-size: var(--text-3xl);
  color: var(--forest);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.section-title em {
  color: var(--terracotta);
  font-style: italic;
}

/* ── STATS ── */
.stats-section {
  background: var(--linen);
  padding: 52px 0;
  border-bottom: 1px solid rgba(31, 58, 46, 0.07);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stat-number {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(31, 58, 46, 0.14);
  flex-shrink: 0;
}

/* ── PROBLEM ── */
.problem-section {
  background: var(--forest);
  padding: var(--section-pad);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-title {
  font-size: var(--text-3xl);
  color: var(--paper);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.problem-title em {
  color: var(--terracotta-light);
  font-style: italic;
}

.problem-text {
  font-size: var(--text-md);
  color: rgba(242, 237, 226, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 460px;
}

.problem-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(242, 237, 226, 0.75);
  font-size: var(--text-base);
  line-height: 1.6;
}

.problem-points li::before {
  content: '—';
  color: var(--terracotta-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-visual {
  background: rgba(242, 237, 226, 0.04);
  border: 1px solid rgba(242, 237, 226, 0.09);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.problem-visual-number {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 8px;
}

.problem-visual-label {
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.problem-visual-sub {
  font-size: var(--text-base);
  color: var(--terracotta-light);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--paper);
  padding: var(--section-pad);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-header {
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(33.33% / 2 + 32px);
  right: calc(33.33% / 2 + 32px);
  height: 1px;
  background: rgba(31, 58, 46, 0.12);
}

.how-step {
  position: relative;
}

.how-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid rgba(31, 58, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.how-step-title {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.how-step-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA ── */
.cta-section {
  background: var(--forest);
  padding: var(--section-pad);
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-3xl);
  color: var(--paper);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.cta-title em {
  color: var(--terracotta-light);
  font-style: italic;
}

.cta-text {
  font-size: var(--text-md);
  color: rgba(242, 237, 226, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 22px;
  background: rgba(242, 237, 226, 0.08);
  border: 1px solid rgba(242, 237, 226, 0.18);
  border-radius: var(--radius-pill);
  color: var(--paper);
  font-family: var(--sans);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--duration-sm);
}

.cta-form input::placeholder {
  color: rgba(242, 237, 226, 0.38);
}

.cta-form input:focus {
  border-color: rgba(242, 237, 226, 0.45);
}

.cta-form button:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none !important;
}

/* ── PROBLEM SCENES ── */
.problem-scenes {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(242, 237, 226, 0.06);
}

.problem-scene-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-scene-title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--paper);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.problem-scene-body {
  font-size: var(--text-base);
  color: rgba(242, 237, 226, 0.65);
  line-height: 1.8;
}

/* House illustration */
.house-illus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house-roof {
  width: 0;
  height: 0;
  border-left: 96px solid transparent;
  border-right: 96px solid transparent;
  border-bottom: 64px solid rgba(201, 123, 74, 0.38);
}

.house-body {
  width: 192px;
  height: 136px;
  background: rgba(242, 237, 226, 0.07);
  border: 1px solid rgba(242, 237, 226, 0.14);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  position: relative;
}

.house-windows {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 22px;
}

.house-win {
  width: 30px;
  height: 30px;
  background: rgba(242, 237, 226, 0.1);
  border: 1px solid rgba(242, 237, 226, 0.18);
  border-radius: 3px;
}

.house-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  background: rgba(242, 237, 226, 0.12);
  border-radius: 3px 3px 0 0;
}

.house-badge {
  margin-top: var(--space-md);
  text-align: center;
}

.house-badge-value {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--paper);
}

.house-badge-label {
  font-size: var(--text-xs);
  color: rgba(242, 237, 226, 0.38);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Bank statement */
.bank-stmt {
  background: rgba(242, 237, 226, 0.06);
  border: 1px solid rgba(242, 237, 226, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  width: 100%;
  max-width: 300px;
}

.bank-stmt-title {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.3);
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(242, 237, 226, 0.08);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.6);
  border-bottom: 1px solid rgba(242, 237, 226, 0.05);
}

.bank-row .amt         { font-family: var(--serif); font-size: var(--text-base); }
.bank-row .amt.plus    { color: rgba(242, 237, 226, 0.85); }
.bank-row .amt.minus   { color: rgba(242, 237, 226, 0.42); }

.bank-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 0;
  margin-top: 6px;
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.7);
  font-weight: 500;
}

.bank-total .amt {
  font-family: var(--serif);
  font-size: var(--text-xl);
  color: var(--terracotta-light);
}

/* Solution card */
.solution-card {
  background: rgba(45, 82, 65, 0.55);
  border: 1px solid rgba(242, 237, 226, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.solution-amount {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
}

.solution-period {
  font-size: var(--text-xs);
  color: rgba(242, 237, 226, 0.42);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.solution-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.solution-tag {
  padding: 4px 12px;
  background: rgba(201, 123, 74, 0.18);
  border: 1px solid rgba(201, 123, 74, 0.28);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: var(--terracotta-light);
  letter-spacing: 0.06em;
}

.solution-note {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: rgba(242, 237, 226, 0.55);
  line-height: 1.65;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(242, 237, 226, 0.08);
}

/* Transition bar */
.problem-transition {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 0 0;
  text-align: center;
}

.problem-transition p {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--terracotta-light);
  line-height: 1.5;
}

/* ── CTA CARDS ── */
.cta-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(242, 237, 226, 0.1);
}

.cta-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: var(--space-md);
}

.cta-card {
  background: rgba(242, 237, 226, 0.06);
  border: 1px solid rgba(242, 237, 226, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: background var(--duration-sm), border-color var(--duration-sm);
}

.cta-card:hover {
  background: rgba(242, 237, 226, 0.1);
  border-color: rgba(242, 237, 226, 0.2);
}

.cta-card-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.cta-card-title {
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 6px;
}

.cta-card-text {
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.58);
  line-height: 1.65;
  margin-bottom: 10px;
}

.cta-card-link {
  font-size: var(--text-sm);
  color: var(--terracotta-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--duration-sm);
}

.cta-card-link:hover { opacity: 0.72; }

.cta-form-col {
  display: flex;
  flex-direction: column;
}

.cta-form-col .cta-form {
  max-width: none;
  margin: 0;
  flex-direction: column;
}

/* ── DOWNLOADS ── */
.downloads-section {
  background: var(--linen);
  padding: var(--section-pad);
}

.downloads-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.downloads-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.downloads-subtext {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.7;
  margin-top: var(--space-xs);
}

.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.download-card {
  background: var(--paper);
  border: 1px solid rgba(31, 58, 46, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}

.download-card-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.download-card-title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.download-card-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--space-lg);
}

.download-card .btn { align-self: flex-start; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stats-grid {
    padding: 0 24px;
    justify-content: center;
  }
  .stat-divider { display: none; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-visual-number { font-size: 64px; }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-steps::before { display: none; }

  .cta-form {
    flex-direction: column;
  }
  .problem-scene {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0;
  }
  .cta-top-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}
