:root {
  /* Fondo & superfici */
  --bg: #f5f3ee;
  --text: #2f2a24;
  --muted: #6f6a63;
  --muted2: #9a948b;
  --line: #e0dccf;
  --surface: #ffffff;
  --surface2: #faf8f3;

  /* Accenti */
  --accent: #4f7f52; /* verde prato */
  --accent2: #8b6f4e; /* terra */
  --accent-soft: #7fa88a;

  /* UI */
  --shadow: 0 18px 40px rgba(120, 90, 60, 0.18);
  --r: 20px;
  --r2: 28px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  /*  background: linear-gradient(180deg, #f5f3ee, #f0ede6 55%, #ebe7dd); */
  /* overflow-x: hidden; */
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(245, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 10px 24px rgba(79, 127, 82, 0.35);
  color: #ffffff;
  font-weight: 900;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navlinks a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}
.navlinks a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(180deg, #6f9b75, #4f7f52);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(79, 127, 82, 0.35);
  border-radius: 999px; /* più morbido */
  padding: 12px 20px;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #5e8c65, #3f6d47);
}
.btn-ghost {
  background: var(--surface2);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: #eeeadd;
}

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

.hamburger {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  background: var(--surface);
  border-top: 1px solid var(--line);
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);

  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Stato aperto */
.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

/* Link */
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 20px;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid var(--line);

  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

/* Icone */
.mobile-menu i {
  width: 18px;
  text-align: center;
  color: var(--accent-soft, var(--accent));
  opacity: 0.85;
}

/* Hover / tap */
.mobile-menu a:hover {
  color: var(--accent);
  background: var(--surface2);
  padding-left: 26px;
}

.mobile-menu a:last-child {
  border-bottom: none;
}
/* Hero */
.hero {
  background: url("/assets/images/hero-farm.png") center / cover no-repeat;
  min-height: calc(100vh - 72px);
  display: flex;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    800px 450px at 35% 45%,
    rgba(245, 243, 238, 0.94) 0%,
    rgba(245, 243, 238, 0.85) 35%,
    rgba(245, 243, 238, 0.55) 55%,
    rgba(245, 243, 238, 0.25) 70%,
    transparent 100%
  );
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  margin-top: 10%;
}

.hero .btn-primary {
  background: linear-gradient(180deg, #6f9b75, #4f7f52);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(79, 127, 82, 0.35);
  border-radius: 999px;
  padding: 15px 25px;
  font-size: 17px;
}

.hero .btn-primary:hover {
  background: linear-gradient(180deg, #5e8c65, #3f6d47);
}

.hero .btn-ghost {
  padding: 15px 25px;
  font-size: 17px;
  border-radius: 999px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e6efe8;
  border: 1px solid #cfe0d4;
  color: #2f5d3a;
  font-size: 13px;
  width: fit-content;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted2);
  font-size: 13px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface2);
}

.hero-card {
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.25), rgba(7, 11, 20, 0.65) 58%, rgba(7, 11, 20, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 430px;
}

.hero .lead {
  color: #2f2a24;
  font-weight: 500;
}

.hero-card .content {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(146, 173, 135, 0.8);
}
.mini .k {
  /* color: rgba(231, 255, 239, 0.95); */
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 14px;
  margin-bottom: 6px;
}
.mini .v {
  /* color: rgba(231, 255, 239, 0.95); */
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

section {
  padding: 64px 0;
  scroll-margin-top: 72px;
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  letter-spacing: -0.04em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 76ch;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: 12px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Offers */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.offer {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer .thumb {
  height: 170px;
  position: relative;
  background: #0f172a;
}
.offer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 11, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.offer .body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.name {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.meta {
  color: var(--muted2);
  font-size: 12px;
}
.desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.actions {
  display: flex;
  gap: 10px;
}
.actions .btn {
  width: 100%;
}

/* CTA band */
.cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(900px 380px at 20% 30%, rgba(34, 197, 94, 0.16), transparent 60%),
    radial-gradient(800px 380px at 80% 20%, rgba(163, 230, 53, 0.12), transparent 65%), rgba(255, 255, 255, 0.04);
  border-radius: var(--r2);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}
.cta h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Forms */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 12px;
  color: var(--muted2);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.full {
  grid-column: 1 / -1;
}
.hint {
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
}

/* Footer */
footer {
  padding: 36px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted2);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footlinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footlinks a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.footlinks a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  z-index: 200;
  padding: 18px;
}
.modal.open {
  display: grid;
}
.modal-card {
  width: min(760px, 100%);
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 11, 20, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.modal-title {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.x {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}
.modal-body {
  padding: 16px;
}

/* COME FUNZIONA – STILE MOCKUP */

#come-funziona .step {
  position: relative;
  padding: 28px 24px 26px;
  overflow: hidden;
}

/* numeri */
#come-funziona .icon {
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

/* illustrazione */
#come-funziona .step::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 250px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}

/* colori + immagini */
.step-1 {
  background: #f4efe6;
  height: 22em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}

.step-1::after {
  background-image: url("/assets/illustrations/select.png");
  left: 50%;
  transform: translateX(-50%);
}

.step-2 {
  background: #eef4e9;
  height: 22em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}
.step-2::after {
  background-image: url("/assets/illustrations/progress.png");
  left: 50%;
  transform: translateX(-50%);
}

.step-3 {
  background: #f6eddc;
  height: 22em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}
.step-3::after {
  background-image: url("/assets/illustrations/delivery.png");
  left: 50%;
  transform: translateX(-50%);
}

.step:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

/* =========================
   PV SPLIT 50/50 (Community)
========================= */

.pv-split {
  padding: 84px 0;
  background: radial-gradient(900px 420px at 15% 30%, rgba(79, 127, 82, 0.12), transparent 60%),
    radial-gradient(800px 380px at 85% 20%, rgba(139, 111, 78, 0.12), transparent 65%),
    linear-gradient(180deg, #faf8f3, #f5f3ee);
}

/* griglia 50/50 */
.pv-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* blocco immagine (50%) */
.pv-split-media {
  border-radius: var(--r2);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);

  /* SOSTITUISCI con la tua immagine */
  background: url("/assets/images/community.jpg") center / cover no-repeat;
}

/* overlay soft per leggibilità e look premium */
.pv-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 30%, rgba(79, 127, 82, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(245, 243, 238, 0.05), rgba(245, 243, 238, 0.1));
  pointer-events: none;
}

/* blocco testo (50%) */
.pv-split-content {
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.75);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* sfumature decorative leggere */
.pv-split-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(700px 320px at 10% 20%, rgba(79, 127, 82, 0.1), transparent 55%),
    radial-gradient(600px 300px at 85% 20%, rgba(139, 111, 78, 0.1), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.pv-split-content > * {
  position: relative;
  z-index: 1;
}

/* titolo */
.pv-title {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* testo */
.pv-lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

/* lista punti */
.pv-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.pv-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  line-height: 1.6;
}

.pv-bullet {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(79, 127, 82, 0.1);
}

/* azioni */
.pv-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* =========================================================
   PERCHE PLEMVIVA – VALORI ORIZZONTALI
========================================================= */

.pv-why {
  background: linear-gradient(90deg, #4f7f4f 0%, #4a774a 45%, #618161 100%);
  color: #ffffff;
  min-height: calc(100vh - 72px);
  position: relative;
}

.pv-why::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.pv-why-head h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.pv-why-head p {
  color: rgba(255, 255, 255, 0.85);
}

.pv-why .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.pv-why-head {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.pv-value {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.pv-value:first-child {
  border-top: none;
  padding-top: 0;
}

.pv-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-icon i {
  font-size: 2.5rem;
  color: #ffffff;
  opacity: 0.9;
}

.pv-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.pv-why .pv-lead {
  font-size: 1.2rem;
  font-weight: 500;
}

.pv-sub {
  opacity: 0.85;
  max-width: 640px;
}

/* eyebrow */
.pv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #081a0c !important;
  background: #e6efe8;
  border: 1px solid #cfe0d4;
  width: fit-content;
}

.pv-farm-grid {
  margin-top: 3rem;
}

.pv-card-img {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pv-card-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

/* IMMAGINE */
.card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay soft */
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25) 100%);
}

/* TESTO */
.card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-body .icon {
  color: #4f7f4f;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-block: 0.8rem;
  text-align: center;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.pv-footer {
  background: #121a12; /* verde profondo, non nero */
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0;
  font-size: 0.9rem;
}

.pv-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 72ch;
  line-height: 1.6;
  opacity: 0.8;
}

#backToTop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #2f6f5f; /* verde Plem */
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 1000;
}

#backToTop:hover {
  background: #255a4c;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── DOT PULSE ── */
.dot {
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.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; }

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
}

.social-proof-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.social-proof-track:hover {
  animation-play-state: paused;
}

.social-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-right: 1px solid var(--line);
  height: 44px;
  white-space: nowrap;
}

.social-proof-item span[aria-hidden] {
  font-size: 15px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── COUNTERS ── */
.counters {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg);
  padding: 80px 0;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(120, 90, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(120, 90, 60, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 24px;
  line-height: 0;
  vertical-align: -8px;
  color: var(--accent-soft);
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 1px;
}

/* ── WAITLIST ── */
#waitlist {
  background: linear-gradient(135deg, #2d5230 0%, #4f7f52 50%, #3a6b3d 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

#waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 80% 50%, rgba(127, 168, 138, 0.3), transparent 65%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

#waitlist h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

#waitlist p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}

.waitlist-form input {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  backdrop-filter: blur(4px);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.waitlist-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
}

.waitlist-form .btn-waitlist {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.waitlist-form .btn-waitlist:hover {
  background: #f0ede6;
}

.waitlist-form .btn-waitlist:active {
  transform: translateY(1px);
}

.waitlist-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.waitlist-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ── FOOTER ENHANCED ── */
.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 14px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── HERO CARD populated ── */
.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,11,20,0.1) 0%, rgba(7,11,20,0.72) 65%, rgba(7,11,20,0.92) 100%);
}

.hero-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(79, 127, 82, 0.85);
  border: 1px solid rgba(127, 168, 138, 0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.hero-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-card-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 12px;
  backdrop-filter: blur(4px);
}

.hero-card-stat .k {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 3px;
}

.hero-card-stat .v {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 380px;
  }
  .grid-3,
  .offers {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .mobile-menu.open {
    display: block;
  }
}

/* responsive */
@media (max-width: 980px) {
  .pv-split {
    padding: 64px 0;
  }

  .pv-split-grid {
    grid-template-columns: 1fr;
  }

  .pv-split-media {
    min-height: 260px;
  }

  .pv-split-content {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .pv-value {
    gap: 1rem;
  }

  .pv-icon {
    font-size: 1.9rem;
  }

  .pv-text h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 580px) {
  .mission {
    display: none;
  }
  .hero-grid {
    margin-top: 0;
  }
  section {
    padding: 25px 0;
    scroll-margin-top: 300px;
  }
  section.hero {
    padding: 85px 0;
  }
  .badge {
    display: none;
  }
}

@media (max-width: 390px) {
  .nav .name {
    display: none;
  }
}

@media (max-width: 860px) {
  .waitlist-inner {
    padding: 0 20px;
  }
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .counter-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
  .counter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .waitlist-form {
    flex-direction: column;
  }
  .waitlist-form input {
    width: 100%;
    min-width: unset;
  }
  .waitlist-form .btn-waitlist {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
