:root {
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", system-ui, -apple-system, sans-serif;
  --green-950: #052e16;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #2f9e6f;
  --green-400: #34d399;
  --green-300: #6ee7b7;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --cream: #fafdf9;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 32px 80px rgba(47, 158, 111, 0.15);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(47, 158, 111, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}

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

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.font-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-500) 55%, var(--green-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 253, 249, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--green-900);
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-400), var(--green-700));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 10px 24px rgba(47, 158, 111, 0.4);
}

.brand__icon svg {
  width: 22px;
  height: 22px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__links a:hover {
  color: var(--green-800);
}

.nav__links a:hover::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 158, 111, 0.38);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(47, 158, 111, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-800);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: white;
  border-color: var(--green-300);
}

.btn--white {
  background: white;
  color: var(--green-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(52, 211, 153, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 60%, rgba(47, 158, 111, 0.14), transparent 50%),
    linear-gradient(180deg, var(--green-50) 0%, var(--cream) 75%);
  z-index: -1;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 320px;
  height: 320px;
  background: rgba(110, 231, 183, 0.35);
  top: 10%;
  right: 5%;
}

.hero__blob--2 {
  width: 240px;
  height: 240px;
  background: rgba(47, 158, 111, 0.2);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(47, 158, 111, 0.2);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(47, 158, 111, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47, 158, 111, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(47, 158, 111, 0.08); }
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--green-950);
}

.hero__lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.trust-pill svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
}

/* Hero visual / mockup */
.hero__visual {
  position: relative;
}

.mockup {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--border);
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dot--r { background: #fca5a5; }
.mockup__dot--y { background: #fcd34d; }
.mockup__dot--g { background: #86efac; }

.mockup__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: white;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.mockup__layout {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 280px;
}

.mockup__sidebar {
  background: linear-gradient(180deg, #ffffff, var(--green-50));
  border-right: 1px solid var(--border);
  padding: 1rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  margin: 0 auto 0.75rem;
}

.mockup__nav-item {
  height: 32px;
  border-radius: 8px;
  background: var(--border);
  opacity: 0.5;
}

.mockup__nav-item--active {
  background: var(--green-100);
  opacity: 1;
  border-left: 3px solid var(--green-500);
}

.mockup__main {
  padding: 1.25rem;
  background: #fafbfc;
}

.mockup__title {
  height: 14px;
  width: 45%;
  background: var(--green-900);
  border-radius: 4px;
  opacity: 0.15;
  margin-bottom: 1rem;
}

.mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.mockup__stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}

.mockup__stat-val {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-700);
  font-family: var(--font-display);
}

.mockup__stat-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.mockup__chart {
  height: 80px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0.75rem;
}

.mockup__bar-col {
  flex: 1;
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.hero__card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: min(100%, 320px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  z-index: 3;
}

.demo-form h3 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
}

.demo-form p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.demo-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.demo-form input,
.demo-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(47, 158, 111, 0.15);
}

.demo-form button {
  width: 100%;
}

.demo-form__note {
  margin: 0.625rem 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
}

/* Stats */
.stats {
  padding: 0 0 4rem;
  margin-top: -1rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 800;
  color: var(--green-700);
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--muted {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 100%);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__head h2 {
  font-size: clamp(2.125rem, 4vw, 3.125rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.875rem;
  color: var(--green-950);
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-100), rgba(110, 231, 183, 0.35));
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--green-700);
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
}

.pillar h3 {
  margin: 0 0 0.625rem;
  font-size: 1.3125rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-950);
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.625rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(47, 158, 111, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--green-50);
  color: var(--green-700);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-950);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Industries */
.industries-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.industry-tag {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-900);
  transition: all 0.2s ease;
  cursor: default;
}

.industry-tag:hover {
  background: white;
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote__stars {
  color: #fbbf24;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0.875rem;
}

.quote__mark {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--green-100);
  line-height: 1;
}

.quote p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.quote__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.quote__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
  min-width: 0;
}

.quote__meta cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--green-950);
  line-height: 1.3;
}

.quote__meta span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Pricing */
.pricing-wrap {
  position: relative;
  isolation: isolate;
}

.pricing-toolbar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-toolbar__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.currency-select {
  position: relative;
  z-index: 51;
}

.currency-select__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 118px;
  padding: 0.625rem 0.875rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-select__trigger:hover,
.currency-select.is-open .currency-select__trigger {
  border-color: rgba(47, 158, 111, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.currency-select__flag {
  font-size: 1.125rem;
  line-height: 1;
}

.currency-select__code {
  flex: 1;
  text-align: left;
}

.currency-select__chevron {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.currency-select.is-open .currency-select__chevron {
  transform: rotate(180deg);
}

.currency-select__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 200;
  min-width: 100%;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.currency-select__menu[hidden] {
  display: none;
}

.currency-select__menu li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.currency-select__menu li:hover,
.currency-select__menu li[aria-selected="true"] {
  background: var(--green-50);
  color: var(--green-900);
}

.pricing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card--featured {
  border: 2px solid var(--green-500);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
}

.price-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(47, 158, 111, 0.4);
}

.price-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-950);
}

.price-card__amount {
  font-size: clamp(2.75rem, 5vw, 3.25rem);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-900);
  margin: 0.75rem 0 1.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-card__amount small {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
}

.price-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
  flex-shrink: 0;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0.75rem;
  background: white;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(47, 158, 111, 0.3);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
  padding: 1.125rem 1.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green-600);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0;
  padding: 0 1.375rem 1.125rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* CTA */
.cta-band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 50%, var(--green-500) 100%);
  z-index: 0;
}

.cta-band__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(110, 231, 183, 0.2), transparent 35%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-band h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0 0 0.875rem;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  opacity: 0.92;
  max-width: 520px;
  font-size: 1.125rem;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: white;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}

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

.footer li {
  margin-bottom: 0.625rem;
}

.footer a:hover {
  color: var(--green-300);
}

.footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.mobile-nav {
  display: none;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__card {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }

  .mockup {
    transform: none;
  }

  .hero {
    padding-bottom: 4rem;
  }
}

@media (max-width: 960px) {
  .pillars,
  .features-grid,
  .testimonials,
  .pricing,
  .footer__grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .mockup__cards {
    grid-template-columns: 1fr 1fr;
  }

  .nav__links,
  .nav__actions .btn--ghost {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid var(--border);
  }

  .mobile-nav a,
  .mobile-nav .btn {
    width: 100%;
  }

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