*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f4fbf9;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 251, 249, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #4ade80, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 12px;
  color: #64748b;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  color: #0f172a;
  opacity: 0.75;
  font-weight: 500;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.06);
}

/* HERO */

.hero {
  padding: 72px 0 40px;
  background: radial-gradient(circle at top left, #ecfdf5 0, #f4fbf9 45%, #e0f2fe 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.06;
  margin: 0 0 18px;
}

.hero-sub {
  max-width: 640px;
  font-size: 17px;
  color: #475569;
  margin: 0 0 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.16s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.3);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(148, 163, 184, 0.5);
  color: #0f172a;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

.btn.wide {
  width: 100%;
  justify-content: center;
}

.hero-pill-row,
.hero-pill-row .pill {
  margin-top: 4px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
}

.pill-soft {
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
}

/* SECTIONS */

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f8fafc;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
}

.lead {
  font-size: 16px;
  color: #475569;
  margin-bottom: 18px;
}

.underline {
  text-decoration: underline;
}

/* LISTS */

.icon-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #1e293b;
}

.icon-list .icon {
  font-size: 22px;
  line-height: 1;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #1e293b;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #16a34a;
}

.check-list.compact li {
  margin-bottom: 4px;
  font-size: 14px;
}

/* CARDS / STATS */

.highlight {
  background: linear-gradient(145deg, #0f172a, #020617);
  color: #e2e8f0;
  border-radius: 26px;
  padding: 26px 24px 22px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.46);
}

.highlight h3 {
  margin-top: 4px;
}

.stats-row {
  display: flex;
  gap: 18px;
  margin: 18px 0 12px;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: #cbd5f5;
}

.note {
  font-size: 13px;
  color: #94a3b8;
}

.note.small {
  font-size: 12px;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 20px 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.card.skinny {
  max-width: 460px;
}

.card.pricing {
  margin-top: 18px;
}

.card.pricing h3 {
  margin-bottom: 6px;
}

.card.pricing .price {
  font-size: 26px;
  font-weight: 700;
}

.card-column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.card-column .card {
  width: 100%;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

/* CONTACT */

.contact-email a {
  font-weight: 600;
  color: #15803d;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 0 22px;
  background: #f8fafc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .highlight {
    margin-top: 20px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
