:root {
  --green-900: #064e3b;
  --green-700: #047857;
  --green-500: #22c55e;
  --green-100: #e9fdf2;
  --green-50: #f4fdf8;
  --indigo-600: #4f46e5;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --max-width: 1120px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: #f9fafb;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(244, 253, 248, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 0 0, #22c55e 0, #22c55e 40%, #16a34a 70%, #047857 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.45);
}

.logo span:last-child {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--indigo-600));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    color 0.12s ease;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(5, 150, 105, 0.7);
}

.btn-pill-light {
  background: rgba(16, 185, 129, 0.07);
  color: var(--green-700);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #bbf7d0 0, #f9fafb 42%, #ecfeff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 3.4rem 0 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--green-900);
  margin-bottom: 0.9rem;
}

.hero-eyebrow-badge {
  background: rgba(34, 197, 94, 0.15);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-weight: 600;
  font-size: 0.76rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
  color: var(--green-900);
}

.hero-title span {
  color: var(--green-700);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--gray-600);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 0.86rem;
  color: var(--gray-700);
}

.hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-bullets span::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.2rem;
  margin-bottom: 1.1rem;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.hero-right {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
}

.hero-chip {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.16rem 0.6rem;
  background: rgba(79, 70, 229, 0.08);
  color: var(--indigo-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.metric {
  padding: 0.65rem 0.7rem;
  border-radius: 14px;
  background: var(--green-50);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.metric-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-900);
}

.hero-chart {
  margin-top: 0.5rem;
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecffe9, #cffafe);
  position: relative;
  overflow: hidden;
}

.hero-chart-bars {
  position: absolute;
  inset: 12px 16px 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  flex: 1;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  position: relative;
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
}

.bar:nth-child(1) .bar-fill {
  height: 35%;
}

.bar:nth-child(2) .bar-fill {
  height: 55%;
}

.bar:nth-child(3) .bar-fill {
  height: 80%;
}

.bar:nth-child(4) .bar-fill {
  height: 60%;
}

.hero-note {
  position: absolute;
  right: -10px;
  top: 80px;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  background: var(--green-900);
  color: #ecfdf5;
  font-size: 0.78rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.55);
  max-width: 200px;
}

.hero-note strong {
  display: block;
  font-size: 0.83rem;
}

/* Trust bar */
.trust {
  padding: 1.6rem 0 1.8rem;
  background: var(--white);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.82rem;
}

.trust-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--gray-100);
  font-weight: 500;
  color: var(--gray-700);
}

/* Section base */
section {
  padding: 3.2rem 0;
}

.section-header {
  margin-bottom: 2.2rem;
  max-width: 40rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.section-description {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* Feature grid top */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.05rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: radial-gradient(circle at 0 0, #fefce8, #dcfce7);
}

.feature-title {
  font-weight: 600;
  color: var(--gray-900);
}

.feature-text {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.feature-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.feature-link span {
  font-size: 1.1rem;
}

/* Deep feature sections */
.feature-sections {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin-top: 2.4rem;
}

.feature-row {
  background: #f8fafc;
  border-radius: 22px;
  padding: 1.7rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: grid;
  grid-template-columns: 1.15fr 1.1fr;
  gap: 1.8rem;
  align-items: flex-start;
}

.feature-row:nth-child(even) {
  background: #f0fdf4;
}

.feature-row-header h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.feature-row-header p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.feature-row-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
  font-size: 0.86rem;
  color: var(--gray-700);
}

.feature-row-list li {
  list-style: none;
  padding-left: 1.1rem;
  position: relative;
}

.feature-row-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-600);
}

.mini-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.85rem;
  color: var(--gray-700);
}

.mini-panel-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.9);
}

/* Stats + CTA band */
.cta-band {
  background: linear-gradient(120deg, #bbf7d0, #a5f3fc);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-headline {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.cta-copy {
  font-size: 0.9rem;
  color: var(--green-900);
  max-width: 30rem;
  margin-bottom: 1.1rem;
}

.cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.82rem;
  color: var(--green-900);
}

.cta-stat strong {
  display: block;
  font-size: 1.15rem;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.84rem;
  color: var(--gray-700);
}

.cta-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cta-panel-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9rem;
}

.cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: #f97316;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  background: var(--white);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.faq-items {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f9fafb;
  padding: 0.4rem 0.2rem;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.faq-button span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease-out;
  padding: 0 1rem;
}

.faq-panel-inner {
  padding: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--gray-600);
}

.faq-item[aria-expanded="true"] .faq-panel {
  padding-top: 0;
}

.faq-item[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  background: var(--green-700);
  color: #ecfdf5;
  border-color: var(--green-700);
}

/* Bottom CTA + footer */
.bottom-cta {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(130deg, #dcfce7, #bbf7d0);
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.bottom-cta-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.4rem 1.5rem 1.1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.84rem;
  color: var(--gray-700);
}

.bottom-cta-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gray-900);
}

footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.78rem;
  padding: 1.4rem 0 1.1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

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

  .feature-row,
  .cta-band-inner,
  .faq-grid,
  .bottom-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-note {
    right: 8px;
    top: auto;
    bottom: -6px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 2.4rem 0 2.2rem;
  }

  section {
    padding: 2.4rem 0;
  }

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

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

  .cta-band-inner {
    gap: 1.4rem;
  }

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