.hero {
  padding: 84px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 26px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: .82rem;
  letter-spacing: .2px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  margin-bottom: 14px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.4px;
}

.hero p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 18px 0 0;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kicker {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: .92rem;
}

.hero-panel {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, #f7fffb 0%, #f2f7f5 100%);
  display: grid;
  align-content: space-between;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.metric {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(8, 85, 68, .14);
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-deep);
}

.metric span { color: var(--text-muted); font-size: .85rem; }

.panel-note {
  margin-top: 14px;
  border-top: 1px dashed rgba(8,85,68,.24);
  padding-top: 12px;
  color: var(--text-muted);
  font-size: .9rem;
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.07;
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 72ch;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: .95rem;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  padding: 20px;
  border-radius: 16px;
  border: 1px dashed rgba(8,85,68,.28);
  background: color-mix(in srgb, var(--surface) 90%, #fff);
}

.flow-step .index {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .86rem;
  margin-bottom: 10px;
}

.flow-step h3 { margin: 0; font-size: 1rem; }
.flow-step p { margin: 8px 0 0; color: var(--text-muted); line-height: 1.6; }

.trust-band {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15,122,99,.09) 0%, rgba(8,85,68,.14) 100%);
  border: 1px solid rgba(8,85,68,.18);
}

.trust-list {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  list-style: none;
}

.trust-list li { color: var(--text-muted); }

.cta {
  margin-top: 30px;
  padding: 30px;
  border-radius: 24px;
  background: #11261f;
  color: #e9f5ef;
}

.cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.cta p {
  margin: 10px 0 0;
  color: #b9d2c7;
  line-height: 1.6;
}

.cta .hero-actions { margin-top: 20px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid, .flow-grid, .trust-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hero { padding-top: 54px; }
  .feature-grid, .flow-grid, .trust-list { grid-template-columns: 1fr; }
  .cta { padding: 22px; }
}
