.hero {
  max-width: var(--page-outer);
  margin: 0 auto;
  padding: 56px var(--page-pad-x) 72px;
  display: grid;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 72px;
    padding-bottom: 96px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text);
}

.hero__tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.4;
  max-width: 36rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__actions .btn {
  padding: 12px 22px;
}

.hero__note {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero__panel h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 600;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.flow-step:first-child {
  border-top: none;
  padding-top: 0;
}

.flow-step__num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.flow-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  grid-column: 2;
}

.section {
  --section-pad-y: 48px;
  max-width: var(--page-outer);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--page-pad-x);
  box-sizing: border-box;
  width: 100%;
}

main > .hero + .section {
  padding-top: 40px;
}

.section--band {
  max-width: none;
  margin: 0;
  padding: var(--section-pad-y) var(--page-pad-x);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--band > .section__title,
.section--band > .section__intro,
.section--band > .section__intro-follow,
.section--band > .content-stack,
.section--band > .grid-cards,
.section--band > .faq {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.section__intro {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
}

.section__intro + .section__intro-follow {
  margin-top: -12px;
}

.section__intro-follow {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
}

.section__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent-hover);
  margin: 0 0 10px;
}

.content-block > .section__text--spaced {
  margin-bottom: 0.75rem;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.content-stack--wide {
  max-width: none;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.section--band .content-block {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.content-block--accent {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, var(--accent-dim), var(--bg-card));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.content-block--soft {
  background: rgba(255, 255, 255, 0.72);
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: none;
}

.content-block .section__subtitle {
  margin: 0;
  max-width: none;
  color: var(--text);
}

.content-block .section__text {
  margin-bottom: 0;
}

.content-block .section__text + .section__text {
  margin-top: 0.75rem;
}

.content-block .section__list {
  margin-bottom: 0;
}

.content-block .section__list + .section__text,
.content-block .section__text + .section__list {
  margin-top: 0.75rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.15;
}

.pricing-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.pricing-card__limit {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 14px;
}

.pricing-card .section__label {
  margin-top: 4px;
}

.pricing-card .checklist + .section__label {
  margin-top: 16px;
}

.section__title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--text);
}

.section__subtitle {
  color: var(--muted);
  margin: 0 0 36px;
  max-width: none;
}

.grid-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-cards--center-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.grid-cards--center-wrap > .card {
  flex: 0 1 320px;
  max-width: min(100%, 360px);
  box-sizing: border-box;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

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

.card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 6px;
}

.card ul li:last-child {
  margin-bottom: 0;
}

.section__text {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 0.9375rem;
  color: var(--muted);
}

.section__text:last-child {
  margin-bottom: 0;
}

.section__list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  max-width: none;
  font-size: 0.9375rem;
  color: var(--muted);
}

.section__list:last-child {
  margin-bottom: 0;
}

.section__list li {
  margin-bottom: 0.35rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.cta-band {
  margin: 0 auto;
  padding: 40px 28px;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--page-outer);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), #ffffff);
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.section > .cta-band {
  max-width: none;
  margin: 0;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cta-band p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn {
  margin: 0 6px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}
