@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─────────────────────────────────────────*/
:root {
  --green-dark:  #006837;
  --green-mid:   #007a40;
  --green-light: #8CC63F;
  --green-bg:    #f0f9f1;
  --green-border:#d4edda;
  --white: #fff;
  --text-body: #555;
  --text-head: #111;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 16px 48px rgba(0,104,55,0.12);
}

/* ─── NAV ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 72px;
  display: flex; align-items: center;
}
.navbar .inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-wrap img { height: 46px; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-text span { display: block; font-size: 1.1rem; font-weight: 900; color: var(--green-dark); letter-spacing: -0.02em; }
.logo-text .em { font-size: 0.85rem; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav-links a {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #444;
  transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a.active { color: var(--green-dark); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--green-dark); border-radius: 2px;
}
.nav-links a:hover { color: var(--green-dark); }

.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: 1.5rem; flex-shrink: 0; }
.btn-login {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid #ddd; padding: 8px 20px;
  border-radius: var(--radius-sm); font-size: .7rem;
  font-weight: 700; letter-spacing: .06em; color: #333;
  transition: all .2s; background: #fff;
}
.btn-login:hover { border-color: var(--green-dark); color: var(--green-dark); }
.btn-join {
  background: var(--green-dark); color: #fff;
  padding: 9px 22px; border-radius: var(--radius-sm);
  font-size: .7rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; transition: background .2s;
  white-space: nowrap;
}
.btn-join:hover { background: var(--green-mid); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  /* hidden by default */
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.mobile-nav a {
  font-size: 1.4rem; font-weight: 800; color: var(--green-dark);
  letter-spacing: .04em; text-transform: uppercase;
  transition: opacity .2s;
}
.mobile-nav a:hover { opacity: .6; }
.mobile-nav .close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 2.5rem; line-height: 1; color: #333;
  transition: color .2s;
}
.mobile-nav .close-btn:hover { color: var(--green-dark); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 72px;
  background: 
    radial-gradient(circle at 80% 40%, rgba(140, 198, 63, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 104, 55, 0.05) 0%, transparent 40%),
    url('assets/bg_leaves.png') center/cover no-repeat,
    linear-gradient(165deg, #f0f9f1 0%, #ffffff 40%, #e8f5e9 100%);
  background-blend-mode: soft-light, normal, overlay, normal;
  display: flex; align-items: center; overflow: hidden; position: relative;
  padding-bottom: 80px;
}
/* Green SVG wave at hero bottom */
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,100 1080,10 1440,60 L1440,90 L0,90 Z'/%3E%3C/svg%3E") center bottom/cover no-repeat;
  pointer-events: none; z-index: 2;
}
.hero-leaves {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-leaves img {
  position: absolute; opacity: .35;
  border-radius: 0 !important;
  background: transparent !important;
}
.leaf-1  { top: 8%;  right: 3%;  width: 90px;  animation: floatLeaf 7s ease-in-out infinite; }
.leaf-2  { top: 55%; right: 1%;  width: 60px;  animation: floatLeaf 9s ease-in-out infinite 1.5s; transform: rotate(60deg); }
.leaf-3  { bottom: 5%; left: 2%;  width: 80px;  animation: floatLeaf 8s ease-in-out infinite 3s; transform: rotate(-30deg); }
.leaf-4  { top: 20%; left: 1%;   width: 50px;  animation: floatLeaf 6s ease-in-out infinite 0.8s; transform: rotate(20deg); }
.leaf-5  { bottom: 20%; right: 5%; width: 70px; animation: floatLeaf 10s ease-in-out infinite 2s; transform: rotate(120deg); }

@keyframes floatLeaf {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50%      { transform: translateY(-22px) rotate(calc(var(--r,0deg) + 12deg)); }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 4rem 2rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero-badge svg { color: var(--green-dark); }
.hero-badge span { font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  color: #111; letter-spacing: -.03em; margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--green-dark); }
.hero-underline { width: 48px; height: 3px; background: var(--green-dark); border-radius: 3px; margin-bottom: 1.25rem; }

.hero-desc { font-size: 1rem; color: var(--text-body); line-height: 1.65; max-width: 400px; margin-bottom: 2rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-dark); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(0,104,55,.28); transition: all .25s;
}
.btn-hero-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,104,55,.35); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid #d0d0d0; color: #333;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  background: #fff; transition: all .25s;
}
.btn-hero-outline:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-2px); }

.hero-app-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: var(--radius-md); padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.hero-app-pill span { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #333; }
.hero-app-pill img { height: 20px; }

/* ─── HERO RIGHT / GRAPHIC ───────────────────────── */
.hero-graphic {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 520px;
}
.hero-node {
  position: absolute; width: 48px; height: 48px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--green-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); box-shadow: 0 8px 32px rgba(0,104,55,.1);
  z-index: 3; animation: float 4s ease-in-out infinite;
}
.hero-node:nth-child(2) { animation-delay: 0.5s; animation-duration: 5s; }
.hero-node:nth-child(3) { animation-delay: 1.2s; animation-duration: 4.5s; }
.hero-node:nth-child(4) { animation-delay: 0.8s; animation-duration: 6s; }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-main-img { width: 420px; max-width: 90%; z-index: 2; position: relative; filter: drop-shadow(0 20px 40px rgba(0,104,55,.2)); }

/* ─── SECTION LABELS ─────────────────────────────── */
.section-label {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: .75rem;
}
.section-label .line { width: 32px; height: 2px; background: var(--green-light); border-radius: 2px; }
.section-label span { font-size: .65rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--green-dark); }

.section-title { font-size: clamp(1.75rem,3.5vw,2.6rem); font-weight: 900; color: #111; letter-spacing: -.02em; text-align: center; }
.section-title .accent { color: var(--green-dark); }

/* ─── WHY JOIN SECTION ───────────────────────────── */
.why-section { padding: 80px 0; background: #fff; position: relative; overflow: hidden; }
.why-section::before,
.why-section::after {
  content: '';
  position: absolute; width: 220px; height: 220px;
  background: url('l1.webp') center/contain no-repeat;
  opacity: .04; pointer-events: none;
}
.why-section::before { top: -40px; left: -60px; transform: rotate(-20deg); }
.why-section::after  { bottom: -40px; right: -60px; transform: rotate(20deg) scaleX(-1); }

.feature-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 3rem; }
.feature-card {
  background: #fff; border: 1px solid #efefef;
  border-radius: var(--radius-md); padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  cursor: default;
}
.feature-card:hover {
  box-shadow: 0 20px 50px rgba(0,104,55,.13);
  border-color: #b8ddc4;
  transform: translateY(-10px);
}
.feature-card:hover .feature-icon {
  background: var(--green-dark);
  transition: background .3s;
}
.feature-card:hover .feature-icon svg { color: #fff; }
.feature-icon {
  width: 68px; height: 68px;
  background: var(--green-bg);
  border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.feature-icon svg { color: var(--green-dark); }
.feature-card h3 { font-size: 1rem; font-weight: 800; color: #111; margin-bottom: .6rem; }
.feature-card p  { font-size: .82rem; color: var(--text-body); line-height: 1.6; }

/* ─── STATS BAR ──────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, #004d2a 0%, var(--green-dark) 50%, #004d2a 100%);
  padding: 40px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/bg_leaves.png') center/cover no-repeat;
  opacity: .07;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem 3rem;
  position: relative; z-index: 1;
}
.stat-item {
  display: flex; align-items: center; gap: 16px;
  min-width: 200px;
}
.stat-item + .stat-item { border-left: none; }
.stat-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { color: var(--green-light); }
.stat-num { font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 3px; }

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-section { padding: 90px 0; background: linear-gradient(180deg,#fff 0%,#f5fbf5 100%); position: relative; overflow: hidden; }
.how-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('l1.webp') center/400px no-repeat;
  opacity: .025; pointer-events: none;
}
.how-section .bg-wrap { position: relative; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  margin-top: 4rem; position: relative;
}
/* dotted connecting arrows */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: calc(12.5% + 40px); right: calc(12.5% + 40px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #c8e6c9 0, #c8e6c9 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 88px; height: 88px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 1.75rem; border: 2px solid #eef7ee;
  transition: all .3s;
}
.step-item:hover .step-circle {
  border-color: var(--green-light);
  box-shadow: 0 12px 40px rgba(0,104,55,.15);
  transform: translateY(-4px);
}
.step-circle svg { color: var(--green-dark); }
.step-num {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-light); color: #fff;
  font-size: .65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
/* arrow between steps */
.step-arrow {
  position: absolute; top: 44px; right: -30px;
  color: var(--green-light); z-index: 2;
}
.step-item:last-child .step-arrow { display: none; }
.step-item h3 { font-size: .95rem; font-weight: 800; color: #111; margin-bottom: .5rem; }
.step-item p  { font-size: .78rem; color: var(--text-body); line-height: 1.6; max-width: 160px; }

/* ─── HERO TRUST BADGES ──────────────────────────── */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #e0ede5;
  padding: 7px 16px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; color: #333;
  box-shadow: 0 2px 10px rgba(0,104,55,.07);
  transition: all .2s;
}
.hero-trust-badge:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-2px); }

/* ─── ABOUT / MISSION SECTION ────────────────────── */
.about-section { padding: 70px 0; background: #fff; }
.about-card {
  background: #fff; border: 1px solid #ebebeb;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,.06);
  padding: 3rem; display: grid;
  grid-template-columns: 200px 1fr auto 260px;
  align-items: start; gap: 2.5rem;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, #f0f9f1 0%, transparent 55%);
  border-radius: var(--radius-lg); pointer-events: none;
}
.about-logo-col { position: relative; z-index: 1; text-align: center; }
.about-logo { width: 120px; margin: 0 auto 1.25rem; }
.about-quote {
  font-size: .8rem; font-style: italic; color: #666;
  line-height: 1.6; border-left: 3px solid var(--green-light);
  padding-left: .75rem; margin: 0; text-align: left;
}
.about-quote cite { display: block; margin-top: .5rem; font-size: .72rem; font-weight: 700; color: var(--green-dark); font-style: normal; }
.about-content { position: relative; z-index: 1; }
.about-divider { width: 1px; background: #e8e8e8; align-self: stretch; }
.about-values-col { position: relative; z-index: 1; }
.about-values-title {
  font-size: .65rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 1rem;
}
.about-values-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-values-list li { display: flex; align-items: flex-start; gap: 12px; }
.val-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--green-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-values-list strong { font-size: .85rem; color: #111; display: block; margin-bottom: 2px; }
.about-values-list small { font-size: .75rem; color: #777; line-height: 1.4; }

@media (max-width: 1100px) {
  .about-card { grid-template-columns: 1fr 1fr; }
  .about-logo-col { grid-column: 1; }
  .about-content { grid-column: 2; }
  .about-divider { display: none; }
  .about-values-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .about-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .about-logo-col, .about-content, .about-values-col { grid-column: 1; }
  .hero-trust-row { justify-content: center; }
}

/* ─── APP PROMO ──────────────────────────────────── */
.app-section {
  padding: 70px 2rem; background: #fff;
}
.app-card {
  max-width: 1180px; margin: 0 auto;
  background: #fff; border: 1px solid #ebebeb;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,.06);
  padding: 3rem; display: grid; grid-template-columns: 240px 1fr auto;
  align-items: center; gap: 3rem; position: relative; overflow: hidden;
}
.app-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg,#f0f9f1 0%, transparent 60%);
  border-radius: var(--radius-lg); pointer-events: none;
}
.app-phone-wrap { position: relative; z-index: 1; }
.app-phone {
  width: 160px; height: 320px; margin: 0 auto;
  background: #fff; border-radius: 2.5rem;
  border: 10px solid #1a1a1a;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.app-phone::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px; background: #1a1a1a; border-radius: 0 0 16px 16px; z-index: 5;
}
.app-phone img { width: 80px; }
.app-phone .phone-brand { font-size: .7rem; font-weight: 900; color: var(--green-dark); text-align: center; }

.app-content h2 { font-size: 1.6rem; font-weight: 900; color: #111; letter-spacing: -.02em; margin-bottom: .5rem; }
.app-content p  { font-size: .85rem; color: var(--text-body); line-height: 1.6; max-width: 340px; }

.app-content { position: relative; z-index: 1; }

.app-divider { width: 1px; background: #e8e8e8; height: 120px; }

.app-download-col { position: relative; z-index: 1; }
.app-download-col .dl-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem; text-align: center;
}
.dl-badges { display: flex; flex-direction: column; gap: 12px; }
.dl-badges img { height: 50px; border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,.12); transition: transform .2s; }
.dl-badges img:hover { transform: scale(1.04); }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #004d2a 100%);
  padding: 36px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/bg_leaves.png') center/cover; opacity: .08;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-icon-wrap {
  width: 60px; height: 60px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-icon-wrap svg { color: #fff; }
.cta-text h3 { font-size: 1.25rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.cta-text p  { font-size: .82rem; color: rgba(255,255,255,.72); }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--green-dark);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: all .25s; white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #0a140b; color: #fff;
  padding: 100px 0 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(140, 198, 63, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 104, 55, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 80px;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 2rem;
}
.footer-logo-wrap img { height: 54px; filter: brightness(0) invert(1); }
.footer-logo-text span {
  display: block; font-size: 1.25rem; font-weight: 900;
  color: #fff; letter-spacing: -0.02em; line-height: 1.1;
}
.footer-logo-text span.em { font-size: 0.75rem; font-weight: 800; color: var(--green-light); letter-spacing: 0.15em; margin-top: 2px; }

.footer-brand p {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.85; max-width: 320px;
}

.footer-col h4 {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 2rem; position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: -10px; left: 0;
  width: 20px; height: 2px; background: var(--green-light);
  border-radius: 2px; opacity: 0.4;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.footer-col ul li a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.45);
  transition: all 0.3s ease; display: inline-block;
}
.footer-col ul li a:hover {
  color: #fff; transform: translateX(6px);
}

.social-row { display: flex; gap: 14px; }
.social-btn {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.07);
}
.social-btn svg { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.social-btn:hover {
  background: var(--green-dark); transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: 0 12px 24px rgba(0,104,55,0.35);
}
.social-btn:hover svg { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 35px; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 2.5rem; }
.footer-bottom-links a { transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a:hover { color: #fff; }

/* ─── BACK TO TOP ────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 99; opacity: 0; transform: translateY(20px);
  transition: all 0.4s ease; border: 1px solid var(--green-light);
  box-shadow: 0 10px 25px rgba(0,104,55,0.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-mid); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,104,55,0.3); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .feature-cards { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-graphic { min-height: 380px; }
  .hero-main-img { width: 260px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .step-arrow { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .stat-item + .stat-item { border-left: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-actions .btn-login { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-main-img { width: 220px; }
  .feature-cards { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-logo-wrap { justify-content: center; }
  .footer-brand p { margin: 0 auto; }
  .social-row { justify-content: center; }
  .faq-item { padding: 1rem 1.25rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .feature-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── COMMUNITY BENEFITS ────────────────────────── */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5fbf5 0%, #fff 100%);
  position: relative; overflow: hidden;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  padding: 80px 0; background: #fff;
  position: relative; overflow: hidden;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 3rem;
}
.testimonial-card {
  background: #fff; border: 1px solid #efefef;
  border-radius: var(--radius-md); padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: all .35s ease; position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -10px; right: 20px;
  font-size: 7rem; color: var(--green-bg);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,104,55,.1);
  border-color: var(--green-border);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars span { color: #f4b942; font-size: 1rem; }
.testimonial-text {
  font-size: .9rem; color: #555; line-height: 1.7;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.testimonial-member { display: flex; align-items: center; gap: 12px; }
.member-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-bg); border: 2px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--green-dark);
  flex-shrink: 0;
}
.member-info .name { font-size: .88rem; font-weight: 800; color: #111; }
.member-info .role { font-size: .72rem; color: #999; }
.verified-badge {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  background: var(--green-bg); border: 1px solid var(--green-border);
  border-radius: 999px; padding: 3px 10px;
  font-size: .62rem; font-weight: 800; color: var(--green-dark);
}

/* ─── COMMUNITY VALUES ──────────────────────────── */
.community-values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #fff 50%, #f0f9f1 100%);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  text-align: center; padding: 2.5rem 2rem;
  background: #fff; border: 1px solid #eef5ee;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,104,55,.1);
  border-color: var(--green-border);
}
.value-icon-big {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-bg); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.value-card:hover .value-icon-big { background: var(--green-dark); }
.value-card:hover .value-icon-big svg { color: #fff; }
.value-icon-big svg { color: var(--green-dark); transition: color .3s; }
.value-card h3 { font-size: 1.2rem; font-weight: 900; color: #111; margin-bottom: .6rem; }
.value-card p { font-size: .85rem; color: #777; line-height: 1.65; }

/* ─── FAQ ───────────────────────────────────────── */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid #efefef;
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  cursor: pointer; transition: all .3s;
}
.faq-item:hover { border-color: var(--green-border); }
.faq-item.open { border-color: var(--green-border); box-shadow: 0 6px 24px rgba(0,104,55,.08); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .95rem; font-weight: 800; color: #111;
  user-select: none;
}
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-bg); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--green-dark); }
.faq-icon svg { color: var(--green-dark); transition: color .3s; }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: .87rem; color: #666; line-height: 1.7;
  transition: max-height .4s ease, padding .3s;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: .75rem; }

/* ─── CONTACT ───────────────────────────────────── */
.contact-section { padding: 80px 0; background: linear-gradient(180deg,#f5fbf5 0%,#fff 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3rem; margin-top: 3rem;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.contact-info { padding: 2.5rem; background: var(--green-dark); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.contact-info::before {
  content: ''; position: absolute; inset: 0;
  background: url('l1.webp') center/350px no-repeat; opacity: .05;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: .75rem; position: relative; z-index: 1; }
.contact-info > p { font-size: .87rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 2rem; position: relative; z-index: 1; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.contact-detail-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--green-light); }
.contact-detail-text .label { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact-detail-text .value { font-size: .87rem; font-weight: 600; color: #fff; }

.contact-form-card {
  background: #fff; border: 1px solid #efefef;
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #555; }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid #e8e8e8; border-radius: var(--radius-sm);
  padding: 11px 14px; font-family: 'Outfit', sans-serif;
  font-size: .88rem; color: #333; background: #fafafa;
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(0,104,55,.08); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--green-dark); color: #fff;
  padding: 14px; border: none; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 20px rgba(0,104,55,.25);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,104,55,.3); }

/* ─── FOOTER NEWSLETTER ─────────────────────────── */
.footer-newsletter { margin-top: 1rem; }
.footer-newsletter p { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: .75rem; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 9px 14px;
  font-family: 'Outfit', sans-serif; font-size: .8rem; color: #fff;
  outline: none; transition: border-color .2s;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-row input:focus { border-color: var(--green-light); }
.newsletter-row button {
  background: var(--green-light); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 9px 18px;
  font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 800;
  cursor: pointer; transition: background .2s;
}
.newsletter-row button:hover { background: var(--green-dark); }

/* ─── COUNTER ANIMATION ─────────────────────────── */
.stat-num { transition: none; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-graphic { min-height: 380px; }
  .hero-circle-ring { width: 280px; height: 280px; }
  .hero-main-img { width: 260px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .step-arrow { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .stat-item + .stat-item { border-left: none; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-actions .btn-login { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-node { width: 56px; height: 56px; }
  .hero-main-img { width: 220px; }
  .feature-cards { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .app-card { grid-template-columns: 1fr; text-align: center; }
  .app-phone-wrap { order: -1; }
  .app-divider { display: none; }
  .app-content p { margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .feature-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
