/* Hero */

.hero {
  padding: var(--s10) 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.hero-eyebrow {
  color: var(--fg-on-dark-muted);
}

.hero h1 {
  color: var(--fg-on-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-on-dark-muted);
  max-width: 54ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s3);
}

.hero-meta {
  font-size: 0.8125rem;
  color: var(--fg-on-dark-muted);
  letter-spacing: 0.04em;
}

/* Sections */

.section-problem,
.section-how,
.section-what-you-get {
  padding: var(--s9) 0;
}

.section-header {
  margin-bottom: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.section-header .eyebrow {
  display: block;
}

/* Problem grid */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

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

.problem-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--line);
  line-height: 1;
  margin-bottom: var(--s4);
}

.card h3 {
  margin-bottom: var(--s3);
}

.card p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

/* Steps */

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

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

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

.step {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.step-number {
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent-soft);
  line-height: 1;
}

.step-body h3 {
  margin-bottom: var(--s2);
}

.step-body p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

/* What you get */

.wyg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-bottom: var(--s7);
}

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

.wyg-item h3 {
  margin-bottom: var(--s3);
}

.wyg-item p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.cost-callout {
  background-color: var(--accent-soft);
  border-color: #e8c4a8;
}

.cost-callout .eyebrow {
  margin-bottom: var(--s3);
}

.cost-callout-text {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.accent-text {
  color: var(--accent-dark);
}

/* CTA section */

.section-cta {
  padding: var(--s9) 0;
}

.section-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s5);
}

.section-cta h2 {
  color: var(--fg-on-dark);
}

.section-cta p {
  color: var(--fg-on-dark-muted);
  font-size: 1.125rem;
}

/* Footer */

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer nav a {
  font-size: 0.9375rem;
}
