.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@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__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.25);
}

.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__lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 34rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
}

.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 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

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

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

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

.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-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 {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.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 24px 80px;
  max-width: calc(var(--max) - 48px);
  margin-left: auto;
  margin-right: auto;
  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);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.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;
}
