/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --green-950: #052e16;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --amber-50:  #fffbeb;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;

  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:  0 10px 32px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 56px rgba(0,0,0,.18), 0 8px 16px rgba(0,0,0,.10);

  --transition: all .22s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.tag--green { background: var(--green-100); color: var(--green-800); }
.tag--amber { background: var(--amber-100); color: var(--amber-600); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,128,61,.35);
}
.btn--primary:hover {
  background: var(--green-800);
  box-shadow: 0 6px 20px rgba(21,128,61,.45);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn--secondary:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}
.btn--amber {
  background: var(--amber-500);
  color: var(--slate-900);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn--amber:hover {
  background: var(--amber-600);
  box-shadow: 0 6px 20px rgba(245,158,11,.45);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--green-800);
}
.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-900);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Navbar ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: opacity .22s ease;
}
.navbar__logo-img:hover { opacity: .85; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.navbar__links a:hover { color: var(--white); }
.navbar.scrolled .navbar__links a { color: var(--slate-600); }
.navbar.scrolled .navbar__links a:hover { color: var(--green-700); }
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--slate-800); }

.navbar__mobile-name {
  display: none;
}

.navbar__link--products {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.85) !important;
  font-weight: 600 !important;
}
.navbar__link--products:hover { color: var(--white) !important; }
.navbar.scrolled .navbar__link--products { color: var(--green-700) !important; }
.navbar.scrolled .navbar__link--products:hover { color: var(--green-800) !important; }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(21,128,61,.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(5,46,22,.9) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316a34a' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm-10 0c0-2.8 2.2-5 5-5s5 2.2 5 5-2.2 5-5 5-5-2.2-5-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 80px 80px;
}
.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.hero__circle--1 {
  width: 600px; height: 600px;
  top: -100px; right: -80px;
  background: var(--green-500);
}
.hero__circle--2 {
  width: 300px; height: 300px;
  bottom: 40px; right: 200px;
  background: var(--amber-500);
}
.hero__circle--3 {
  width: 160px; height: 160px;
  top: 120px; left: 5%;
  background: var(--green-400);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__left {
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title span { color: var(--green-500); }

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.hero__trust-item svg { flex-shrink: 0; }

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--transition);
}
.hero__card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}
.hero__card-tag {
  font-size: .78rem;
  font-weight: 600;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.hero__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hero__card-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.hero__card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero__card-original {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
}
.hero__card-final {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-500);
}
.hero__card-discount {
  font-size: .8rem;
  font-weight: 700;
  background: var(--green-700);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ─── Stats bar ─────────────────────────────────────── */
.stats {
  background: var(--green-800);
  padding: 24px 0;
}
.stats__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stats__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stats__text {}
.stats__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.stats__label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.stats__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* ─── Buyers ─────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--slate-50); }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__header .tag { margin-bottom: 16px; }
.section__header .section-title { margin-bottom: 14px; }
.section__header .section-sub { margin: 0 auto; }

.buyers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.buyer-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  cursor: default;
}
.buyer-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.buyer-card__icon {
  width: 52px; height: 52px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.buyer-card__body {}
.buyer-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.buyer-card__desc {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── How it works ──────────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-200) 0%, var(--green-400) 50%, var(--green-200) 100%);
  z-index: 0;
}

.step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}
.step-card__num {
  width: 56px; height: 56px;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--green-100);
}
.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.step-card__desc {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured:hover {
  box-shadow: var(--shadow-xl);
}

/* ── Plan A: light green ── */
.pricing-card--light {
  background: var(--green-50);
  border-color: var(--green-200);
}
.pricing-card--light .pricing-card__header {
  background: var(--green-100);
  border-bottom-color: var(--green-200);
}
.pricing-card--light .pricing-card__body {
  background: var(--green-50);
}
.pricing-card--light:hover {
  border-color: var(--green-400);
}

/* ── Plan C: premium iridescent ── */
.pricing-card--premium {
  border: 2px solid transparent;
  background-image:
    linear-gradient(160deg, #0a2318 0%, #0d3a28 45%, #082016 100%),
    linear-gradient(135deg, #166534 0%, #4ade80 30%, #15803d 55%, #86efac 80%, #166534 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 0 transparent;
}
.pricing-card--premium:hover {
  box-shadow: 0 10px 40px rgba(21,128,61,.3), 0 4px 12px rgba(34,197,94,.2);
  transform: translateY(-4px);
}
.pricing-card--premium .pricing-card__header {
  background: linear-gradient(135deg, #0a2318 0%, #0d3a28 100%);
  border-bottom-color: rgba(34,197,94,.2);
}
.pricing-card--premium .pricing-card__body {
  background: linear-gradient(160deg, #0a2318 0%, #082016 100%);
}
.pricing-card--premium .pricing-card__tag-line { color: rgba(255,255,255,.45); }
.pricing-card--premium .pricing-card__name { color: var(--white); }
.pricing-card--premium .pricing-card__for { color: #86efac; }
.pricing-card--premium .pricing-card__price-block {
  background: rgba(34,197,94,.07);
  border-color: rgba(74,222,128,.3);
}
.pricing-card--premium .pricing-card__price-list-label { color: rgba(255,255,255,.35); }
.pricing-card--premium .pricing-card__price-original { color: rgba(255,255,255,.35); }
.pricing-card--premium .pricing-card__price-main-row { border-top-color: rgba(74,222,128,.25); }
.pricing-card--premium .pricing-card__price-main-label { color: #86efac; }
.pricing-card--premium .pricing-card__price-final { color: var(--white); }
.pricing-card--premium .pricing-card__discount-badge { background: linear-gradient(90deg, #15803d, #22c55e); }
.pricing-card--premium .pricing-card__discount-text { color: rgba(255,255,255,.55); }
.pricing-card--premium .pricing-card__price-savings {
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: var(--white);
}
.pricing-card--premium .pricing-card__payment {
  background: rgba(34,197,94,.08);
  border-color: rgba(74,222,128,.25);
  color: #86efac;
}
.pricing-card--premium .btn--primary {
  background: linear-gradient(90deg, #15803d, #22c55e);
  box-shadow: 0 4px 14px rgba(21,128,61,.4);
}
.pricing-card--premium .btn--primary:hover {
  background: linear-gradient(90deg, #166534, #16a34a);
  box-shadow: 0 6px 20px rgba(21,128,61,.55);
}

.pricing-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--amber-500);
  color: var(--slate-900);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-card__header {
  background: var(--slate-50);
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.pricing-card--featured .pricing-card__header {
  background: var(--green-950);
}
.pricing-card--featured .pricing-card__body {
  background: var(--green-950);
}
.pricing-card__tag-line {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__tag-line { color: rgba(255,255,255,.55); }
.pricing-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__for {
  font-size: .875rem;
  font-weight: 500;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-card--featured .pricing-card__for { color: #86efac; }

.pricing-card__body { padding: 28px; }

.pricing-card__discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-card__discount-badge {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--green-700);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.pricing-card__discount-text {
  font-size: .875rem;
  color: var(--slate-500);
}

.pricing-card__price-block {
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card--featured .pricing-card__price-block {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.2);
}

.pricing-card__price-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pricing-card__price-list-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-card--featured .pricing-card__price-list-label { color: rgba(255,255,255,.35); }

.pricing-card__price-original {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-400);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.pricing-card--featured .pricing-card__price-original { color: rgba(255,255,255,.35); }

.pricing-card__price-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--green-100);
}
.pricing-card--featured .pricing-card__price-main-row { border-top-color: rgba(34,197,94,.2); }

.pricing-card__price-main-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pricing-card--featured .pricing-card__price-main-label { color: #86efac; }

.pricing-card__price-final {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}
.pricing-card--featured .pricing-card__price-final { color: var(--white); }

.pricing-card__price-savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--green-700);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.pricing-card__price-savings strong { font-weight: 800; }
.pricing-card__price-savings--featured {
  background: var(--amber-500);
  color: var(--slate-900);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--slate-700);
  line-height: 1.5;
}
.pricing-card__feature-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pricing-card__payment {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: var(--amber-600);
  font-weight: 500;
}

/* ─── Benefits ───────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.benefits__visual {
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.benefits__visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(34,197,94,.15) 0%, transparent 70%);
}
.benefits__visual-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.benefits__visual-sub {
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.benefits__visual-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__visual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.benefits__visual-item-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.benefit-item__icon {
  width: 52px; height: 52px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.benefit-item__desc {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── Testimonials ───────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--amber-500);
  font-size: 1rem;
}
.testimonial-card__text {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-900);
}
.testimonial-card__role {
  font-size: .8rem;
  color: var(--slate-400);
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
}
.faq-item__question {
  font-size: .975rem;
  font-weight: 600;
  color: var(--slate-800);
}
.faq-item.open .faq-item__question { color: var(--green-800); }
.faq-item__chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-item__chevron {
  background: var(--green-100);
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--slate-600);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-950) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  text-align: center;
}
.cta-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__title span { color: var(--green-500); }
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.cta-banner__note {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__brand-logo-icon {
  width: 36px; height: 36px;
  background: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer__brand-desc {
  font-size: .875rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--slate-400);
}
.footer__social-link:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}
.footer__col-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-links a {
  font-size: .875rem;
  color: var(--slate-400);
  transition: var(--transition);
}
.footer__col-links a:hover { color: var(--green-500); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--slate-400);
  margin-bottom: 10px;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: .82rem;
  color: var(--slate-500);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: .82rem;
  color: var(--slate-500);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: var(--green-500); }

/* ─── WhatsApp FAB ───────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 20px 12px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: var(--transition);
  animation: fabIn .5s ease .8s both;
}
.fab-wa:hover {
  background: #128C7E;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transform: translateY(-2px);
}
@keyframes fabIn {
  from { opacity: 0; transform: scale(.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─── Mobile nav overlay ─────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-950);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--green-500); }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
}
.mobile-menu__products {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--green-400) !important;
}
.mobile-menu__products:hover { color: var(--green-300) !important; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits__grid    { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile-name {
    display: block;
    flex: 1;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .02em;
  }
  .navbar.scrolled .navbar__mobile-name { color: var(--slate-900); }
  .hero__content { padding-top: 100px; }
  .buyers__grid  { grid-template-columns: 1fr 1fr; }
  .steps__grid   { grid-template-columns: 1fr; gap: 24px; }
  .steps__grid::before { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .stats__divider { display: none; }
  .stats__inner  { gap: 20px; }
}

@media (max-width: 480px) {
  .buyers__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
}

/* ─── Plan Modal ─────────────────────────────────────── */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.plan-modal[hidden] { display: none; }

.plan-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 46, 22, .6);
  backdrop-filter: blur(4px);
  animation: modalOverlayIn .2s ease;
}
@keyframes modalOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.plan-modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  animation: modalBoxIn .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalBoxIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.plan-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--slate-100);
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--slate-500);
  transition: var(--transition);
}
.plan-modal__close:hover {
  background: var(--slate-200);
  color: var(--slate-800);
}

.plan-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.plan-modal__sub {
  font-size: .875rem;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-modal__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-modal__option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: inherit;
}
.plan-modal__option:hover {
  border-color: var(--green-500);
  background: var(--green-50);
  transform: translateX(3px);
}
.plan-modal__option--other:hover {
  border-color: var(--amber-500);
  background: var(--amber-50);
}

.plan-modal__option-letter {
  width: 36px; height: 36px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.plan-modal__option-letter--featured {
  background: var(--green-700);
  color: var(--white);
}
.plan-modal__option-letter--other {
  background: var(--amber-100);
  color: var(--amber-600);
}

.plan-modal__option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.plan-modal__option-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-900);
}
.plan-modal__option-desc {
  font-size: .8rem;
  color: var(--slate-500);
}

.plan-modal__option-arrow {
  flex-shrink: 0;
  color: var(--slate-400);
  transition: var(--transition);
}
.plan-modal__option:hover .plan-modal__option-arrow {
  color: var(--green-600);
  transform: translateX(2px);
}
.plan-modal__option--other:hover .plan-modal__option-arrow {
  color: var(--amber-500);
}

.plan-modal__custom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-modal__custom[hidden] { display: none; }

.plan-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-500);
  padding: 0;
  transition: var(--transition);
  align-self: flex-start;
}
.plan-modal__back:hover { color: var(--green-700); }

.plan-modal__label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-800);
}

.plan-modal__textarea {
  width: 100%;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--slate-800);
  resize: vertical;
  transition: var(--transition);
  line-height: 1.6;
}
.plan-modal__textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}

.plan-modal__send {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .plan-modal__box { padding: 28px 20px 24px; }
  .plan-modal__title { font-size: 1.35rem; }
}
