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

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

:root {
  --bg:          #F5F9F5;
  --bg-alt:      #ffffff;
  --bg-card:     #ffffff;
  --bg-muted:    #EEF5EE;

  --primary:     #1B5E20;
  --primary-l:   #2e7d32;
  --primary-xl:  #4CAF50;
  --primary-dim: rgba(27, 94, 32, 0.08);
  --primary-glow:rgba(27, 94, 32, 0.18);

  --accent:      #F9A825;
  --accent-l:    #FFB300;
  --accent-fg:   #111;
  --accent-dim:  rgba(249, 168, 37, 0.15);

  --fg:          #1a3320;
  --fg-2:        #3d5c42;
  --fg-3:        #7a9a7e;
  --fg-muted:    #5a6b5c;

  --border:      rgba(27, 94, 32, 0.12);
  --border-l:    rgba(27, 94, 32, 0.22);
  --white:       #ffffff;

  --radius:      1rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2rem;

  --shadow-xs:   0 1px 4px rgba(27,94,32,.06);
  --shadow-sm:   0 2px 12px rgba(27,94,32,.08);
  --shadow:      0 6px 30px rgba(27,94,32,.12);
  --shadow-lg:   0 16px 60px rgba(27,94,32,.16);
  --shadow-xl:   0 24px 80px rgba(27,94,32,.20);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --font:        'Vazirmatn', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg); color: var(--fg);
  direction: rtl; line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(to left, var(--accent), var(--primary-xl));
  transform-origin: right; transform: scaleX(0);
  z-index: 9999;
  box-shadow: 0 0 8px rgba(76,175,80,0.5);
}

/* ═══════════════════════════════════════════
   LOADER — Meridian
   A horizon line draws itself, topographic
   ellipses pulse outward like sonar through
   soil, then the brand rises from the earth.
═══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--primary);
  background-image: radial-gradient(ellipse 55% 38% at 50% 50%, rgba(76,175,80,.1) 0%, transparent 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .9s var(--ease-out), visibility .9s, transform .9s var(--ease-out);
  overflow: hidden;
}
#loader.hidden {
  opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.03);
}

/* ── Horizon line ── */
.loader-horizon {
  position: absolute;
  top: 50%; left: 0; right: 0; height: 1px; margin-top: -.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(76,175,80,.55) 10%,
    rgba(200,230,201,.45) 50%,
    rgba(76,175,80,.55) 90%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  animation: horizonDraw .5s cubic-bezier(.16,1,.3,1) .05s forwards;
  z-index: 1;
}
@keyframes horizonDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Topographic ellipse rings ── */
.loader-topo {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.lr {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  transform: scale(0);
  animation: topoExpand 2.4s cubic-bezier(.16,1,.3,1) forwards;
}
.lr-1 { width: 260px;  height: 62px;  border-width: 1px; border-color: rgba(76,175,80,.55); animation-delay: .12s; }
.lr-2 { width: 480px;  height: 114px; border-width: 1px; border-color: rgba(76,175,80,.32); animation-delay: .28s; }
.lr-3 { width: 760px;  height: 182px; border-width: 1px; border-color: rgba(76,175,80,.16); animation-delay: .44s; }
.lr-4 { width: 1120px; height: 270px; border-width: 1px; border-color: rgba(76,175,80,.07); animation-delay: .60s; }
@keyframes topoExpand {
  0%   { transform: scale(0);    opacity: 1; }
  58%  { transform: scale(1);    opacity: .8; }
  100% { transform: scale(1.1);  opacity: 0; }
}

/* ── Core text ── */
.loader-core {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}

/* Overflow-hidden wrapper — makes brand rise through the horizon line */
.loader-text-rise { overflow: hidden; }

.loader-brand {
  display: block;
  font-size: 3.6rem; font-weight: 900; letter-spacing: .08em; color: #fff;
  transform: translateY(115%);
  animation: brandRise .8s cubic-bezier(.16,1,.3,1) .68s forwards;
  text-shadow: 0 2px 32px rgba(0,0,0,.3);
}
@keyframes brandRise {
  from { transform: translateY(115%); }
  to   { transform: translateY(0); }
}

.loader-tagline {
  color: rgba(255,255,255,.55); font-size: .88rem; font-weight: 500;
  margin-top: .55rem; letter-spacing: .07em;
  opacity: 0;
  animation: subtleIn .65s ease 1.2s forwards;
}

.loader-progress-wrap {
  width: 154px; height: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 3.2rem; overflow: hidden;
  opacity: 0; animation: subtleIn .5s ease 1.35s forwards;
}
.loader-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(to left, var(--accent), rgba(255,255,255,.65));
  animation: loadFill 2.3s cubic-bezier(.25,.46,.45,.94) .35s forwards;
  box-shadow: 0 0 8px rgba(249,168,37,.5);
}

@keyframes brandReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes subtleIn   { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loadFill   { 0% { width: 0; } 100% { width: 100%; } }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.9rem; border-radius: 50px; font-weight: 700; font-size: .97rem;
  transition: all .3s var(--ease-out); cursor: pointer; position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  border-radius: inherit; pointer-events: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0; transition: opacity .3s; border-radius: inherit;
}
.btn:active::after { opacity: 1; }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 18px rgba(27,94,32,.35), 0 1px 0 rgba(255,255,255,.1) inset;
  border: 1px solid rgba(255,255,255,.08);
}
.btn-primary:hover {
  background: var(--primary-l); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,94,32,.45);
}
.btn-glass {
  background: rgba(255,255,255,.14); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
}
.btn-glass:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: var(--accent-fg);
  box-shadow: 0 4px 18px rgba(249,168,37,.4);
  border: 1px solid rgba(255,200,60,.25);
}
.btn-accent:hover { background: var(--accent-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,168,37,.5); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); border-color: rgba(255,255,255,.8); }
.btn-outline-green {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline-green:hover { background: var(--primary-dim); transform: translateY(-2px); }
.btn-lg { padding: .95rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  padding: 1.5rem 0; transition: all .4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(27,94,32,0.08), 0 4px 24px rgba(27,94,32,0.08);
  padding: .85rem 0;
}
.navbar .inner { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo {
  font-size: 1.9rem; font-weight: 900; color: #fff;
  transition: color .3s; display: flex; align-items: center; gap: .45rem; letter-spacing: .03em;
}
.navbar .logo .logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  animation: dotBounce 2.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(249,168,37,0.7);
}
@keyframes dotBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.15); } }
.navbar.scrolled .logo { color: var(--primary); }
.navbar .nav-links { display: flex; align-items: center; gap: 1.75rem; }
.navbar .nav-links a {
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.88);
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.navbar .nav-links a::after {
  content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 2px;
  background: var(--accent); transition: width .28s ease; border-radius: 2px;
}
.navbar .nav-links a:hover::after, .navbar .nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--fg); }
.navbar .nav-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--primary); }
.nav-cta .btn { font-size: .88rem; padding: .55rem 1.3rem; }
.navbar .nav-cta .btn-primary { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); box-shadow: none; }
.navbar .nav-cta .btn-primary:hover { background: rgba(255,255,255,.28); }
.navbar.scrolled .nav-cta .btn-primary { background: var(--primary); border-color: transparent; box-shadow: 0 4px 14px rgba(27,94,32,.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; }
.hamburger span { display: block; width: 23px; height: 2px; background: #fff; border-radius: 2px; transition: all .32s var(--ease-spring); }
.navbar.scrolled .hamburger span { background: var(--fg); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(145deg, #061409 0%, #163d1a 55%, #0a2510 100%);
  padding: 0 2.5rem 2.5rem;
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity .45s cubic-bezier(.16,1,.3,1), visibility 0s .45s;
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,.18) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu::after {
  content: '';
  position: absolute; bottom: -15%; left: -10%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,168,37,.1) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible; opacity: 1; pointer-events: all;
  transition: opacity .45s cubic-bezier(.16,1,.3,1), visibility 0s 0s;
}
.mm-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: .5rem; position: relative; z-index: 1;
}
.mm-logo {
  font-size: 1.55rem; font-weight: 900; color: #fff;
  text-decoration: none; letter-spacing: -.02em;
}
.mm-logo .logo-dot { background: var(--accent); }
.mm-tagline {
  font-size: .72rem; color: rgba(255,255,255,.38); letter-spacing: .08em;
  font-weight: 500;
}
.mm-nav {
  display: flex; flex-direction: column;
  flex: 1; justify-content: center; gap: 0;
  position: relative; z-index: 1;
}
.mm-link {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 0; text-decoration: none;
  color: rgba(255,255,255,.62);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 1.5rem; font-weight: 700;
  transition: color .25s, gap .3s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.mm-link:hover, .mm-link.active {
  color: #fff; gap: 1.65rem;
}
.mm-link.active .mm-num { color: var(--accent); }
.mm-num {
  font-size: .68rem; font-weight: 700; color: rgba(249,168,37,.65);
  letter-spacing: .06em; min-width: 1.8rem; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mm-cta {
  padding-top: 2rem; position: relative; z-index: 1;
}
.mm-cta .btn { width: 100%; justify-content: center; text-align: center; display: flex; }
.mobile-menu.open .mm-link {
  animation: mmLinkIn .5s cubic-bezier(.16,1,.3,1) both;
}
.mobile-menu.open .mm-link:nth-child(1) { animation-delay: .06s; }
.mobile-menu.open .mm-link:nth-child(2) { animation-delay: .12s; }
.mobile-menu.open .mm-link:nth-child(3) { animation-delay: .18s; }
.mobile-menu.open .mm-link:nth-child(4) { animation-delay: .24s; }
.mobile-menu.open .mm-link:nth-child(5) { animation-delay: .30s; }
.mobile-menu.open .mm-cta { animation: mmLinkIn .5s cubic-bezier(.16,1,.3,1) .36s both; }
@keyframes mmLinkIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: -5%; z-index: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  will-change: transform; transform: scale(1.06);
  filter: brightness(0.75) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(rgba(38,90,42,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,90,42,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(4,18,6,.82) 0%, rgba(10,40,14,.2) 42%, rgba(4,18,6,.92) 100%),
    radial-gradient(ellipse 70% 60% at 18% 10%, rgba(76,175,80,.26) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 82% 85%, rgba(27,94,32,.3) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 68% 3%, rgba(249,168,37,.07) 0%, transparent 50%);
  background-size: 55px 55px, 55px 55px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    118deg,
    transparent 22%,
    rgba(76,175,80,.065) 50%,
    transparent 78%
  );
  background-size: 200% 200%;
  animation: heroShine 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroShine {
  0%   { background-position: 200% center; opacity: .5; }
  50%  { background-position: -100% center; opacity: 1; }
  100% { background-position: 200% center; opacity: .5; }
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(76,175,80,.6); filter: blur(0.5px);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) translateX(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.4; }
  100% { transform: translateY(-12vh) translateX(var(--drift)) rotate(360deg); opacity: 0; }
}
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; fill: var(--bg); }
.hero-content { position: relative; z-index: 3; max-width: 940px; padding: 0 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,168,37,.2); border: 1px solid rgba(249,168,37,.4);
  color: #ffe082; font-size: .83rem; font-weight: 700;
  padding: .35rem .95rem; border-radius: 50px; margin-bottom: 1.75rem;
  animation: fadeUp .8s ease 2.3s both;
  backdrop-filter: blur(8px);
  letter-spacing: .05em;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(249,168,37,0.9);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 900; color: #fff;
  line-height: 1.12; margin-bottom: 1.35rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  animation: fadeUp .9s ease 2.5s both; letter-spacing: -.01em;
}
.hero-content h1 .highlight {
  color: var(--accent);
  position: relative; display: inline-block;
}
.hero-content h1 .highlight::after {
  content: ''; position: absolute; bottom: 3px; right: 0; left: 0; height: 3px;
  background: var(--accent); border-radius: 4px; opacity: .6;
  animation: underlineGrow 1s ease 3.4s both;
}
@keyframes underlineGrow { from { transform: scaleX(0); transform-origin: right; } to { transform: scaleX(1); } }
.hero-content p {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem); color: rgba(255,255,255,.85);
  margin-bottom: 2.75rem; font-weight: 400;
  max-width: 660px; margin-left: auto; margin-right: auto;
  line-height: 1.9;
  animation: fadeUp .9s ease 2.7s both;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .9s ease 2.9s both; }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3.5rem; animation: fadeUp .9s ease 3.1s both;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { text-align: center; color: #fff; }
.hero-stat .num { font-size: 2.2rem; font-weight: 900; color: var(--accent); display: block; text-shadow: 0 0 20px rgba(249,168,37,0.4); }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .15rem; }
.hero-stat-div { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }
.scroll-indicator {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: fadeIn 1s ease 3.5s both;
}
.scroll-indicator span { color: rgba(255,255,255,.45); font-size: .78rem; letter-spacing: .08em; }
.scroll-mouse {
  width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse::after {
  content: ''; width: 3px; height: 6px;
  background: rgba(255,255,255,.7); border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════ */
.section-heading { text-align: center; max-width: 700px; margin: 0 auto 4.5rem; }
.section-heading .eyebrow {
  display: inline-block; color: var(--primary-xl); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: .65rem;
  background: var(--primary-dim); padding: .28rem .9rem; border-radius: 50px;
  border: 1px solid rgba(27,94,32,.15);
}
.section-heading h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem); font-weight: 900; margin-bottom: .8rem;
  color: var(--fg); line-height: 1.22; letter-spacing: -.015em;
}
.section-heading h2 .accent { color: var(--primary); }
.section-heading p { color: var(--fg-muted); font-size: 1.02rem; line-height: 1.82; }

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band {
  background: var(--primary); color: #fff;
  padding: 3rem 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.stats-band::after {
  content: ''; position: absolute; bottom: -80px; left: 15%;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(249,168,37,.07); pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 1.5rem 1rem; border-left: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-left: none; }
.stat-item .num { font-size: 2.8rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; text-shadow: 0 0 20px rgba(249,168,37,.4); }
.stat-item .suffix { font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,.75); }
.stat-item .label { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: .4rem; }

/* ═══════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════ */
.benefits { padding: 7rem 0; background: var(--bg-alt); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; transition: all .4s var(--ease-out); cursor: default;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(to left, var(--accent), var(--primary-xl));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.benefit-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,.04), transparent);
  opacity: 0; transition: opacity .35s;
}
.benefit-card:hover {
  border-color: var(--border-l);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(27,94,32,0.08);
  transform: translateY(-7px);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover::after { opacity: 1; }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--primary-dim); border: 1px solid rgba(27,94,32,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  transition: all .35s var(--ease-spring);
}
.benefit-card:hover .benefit-icon {
  background: var(--primary); transform: rotate(-6deg) scale(1.1);
  border-color: transparent; box-shadow: 0 6px 20px rgba(27,94,32,.3);
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--primary); transition: stroke .3s; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card:hover .benefit-icon svg { stroke: #fff; }
.benefit-card h3 { font-size: 1.07rem; font-weight: 800; margin-bottom: .5rem; color: var(--fg); }
.benefit-card p { color: var(--fg-muted); font-size: .91rem; line-height: 1.75; }
.benefit-stat {
  margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.benefit-stat .label { font-size: .8rem; font-weight: 600; color: var(--fg-3); }
.benefit-stat .number { font-size: 1.5rem; font-weight: 900; color: var(--accent); display: flex; align-items: baseline; gap: .1rem; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works { padding: 6.5rem 0; background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; }
.how-grid::before {
  content: ''; position: absolute; top: 36px; right: 12.5%; left: 12.5%; height: 2px;
  background: linear-gradient(to left, transparent, var(--primary-xl), var(--primary-xl), transparent);
}
.how-item { text-align: center; padding: 1.5rem 1rem; position: relative; }
.how-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--primary-xl);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: var(--primary); margin: 0 auto 1.35rem;
  position: relative; z-index: 1; transition: all .35s var(--ease-spring);
  box-shadow: 0 4px 18px rgba(76,175,80,.2);
}
.how-item:hover .how-num { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.1); box-shadow: 0 8px 28px rgba(27,94,32,.3); }
.how-item h3 { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; color: var(--fg); }
.how-item p { color: var(--fg-muted); font-size: .88rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0; background: var(--primary); color: #fff;
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background: url('images/hero-bg.png') center/cover; mix-blend-mode: overlay;
}
.testimonials::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 20%, rgba(76,175,80,.15) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(249,168,37,.1) 0%, transparent 65%);
  pointer-events: none;
}
.testimonials .section-heading h2 { color: #fff; }
.testimonials .section-heading p { color: rgba(255,255,255,.65); }
.testimonials .section-heading .eyebrow { color: var(--accent); background: rgba(249,168,37,.15); border-color: rgba(249,168,37,.3); }
.slider-wrapper { position: relative; max-width: 820px; margin: 0 auto; z-index: 1; }
.slider { overflow: hidden; }
.slider-track {
  position: relative;
  height: 450px;
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: stretch; padding: 0 .5rem;
  opacity: 0;
  transform: scale(.88) translateY(28px);
  filter: blur(14px);
  transition:
    opacity .75s cubic-bezier(.4,0,.2,1),
    transform .75s cubic-bezier(.16,1,.3,1),
    filter .75s ease;
  pointer-events: none;
  z-index: 1;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  pointer-events: all;
  z-index: 2;
}
.slide.is-active .quote-icon  { animation: staggerUp .5s cubic-bezier(.16,1,.3,1) .08s both; }
.slide.is-active .stars        { animation: staggerUp .5s cubic-bezier(.16,1,.3,1) .17s both; }
.slide.is-active .slide-text   { animation: staggerUp .5s cubic-bezier(.16,1,.3,1) .26s both; }
.slide.is-active .slide-author { animation: staggerUp .5s cubic-bezier(.16,1,.3,1) .35s both; }
@keyframes staggerUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-inner {
  background: rgba(255,255,255,.08); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 2rem;
  padding: 3rem 2.5rem; text-align: center;
  width: 100%; position: relative; overflow: hidden;
  transition: border-color .5s, box-shadow .5s;
}
.slide.is-active .slide-inner {
  border-color: rgba(76,175,80,.28);
  box-shadow:
    0 40px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(76,175,80,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.slide.is-active .slide-inner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary-xl), transparent);
  border-radius: 0 0 2rem 2rem;
  transform-origin: right;
  animation: progressLine 5.5s linear forwards;
}
@keyframes progressLine {
  from { transform: scaleX(0); opacity: .8; }
  to   { transform: scaleX(1); opacity: 1; }
}
.quote-icon { margin: 0 auto 1.5rem; }
.quote-icon svg { width: 40px; height: 40px; fill: var(--accent); opacity: .45; }
.stars { color: var(--accent); font-size: 1rem; letter-spacing: .2em; margin-bottom: 1.1rem; }
.slide-text { font-size: 1.1rem; line-height: 1.9; font-weight: 400; margin-bottom: 2rem; font-style: italic; }
.slide-author { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.slide-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-xl), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800; color: #fff;
}
.slide-author-info h4 { font-size: .97rem; font-weight: 700; color: var(--accent); text-align: right; }
.slide-author-info p { color: rgba(255,255,255,.6); font-size: .83rem; text-align: right; }
.slider-btn {
  position: absolute; top: 45%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all .25s; cursor: pointer;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-btn.prev { left: -1.5rem; }
.slider-btn.next { right: -1.5rem; }
.slider-btn svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.5; fill: none; }
.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); transition: all .35s var(--ease-spring); cursor: pointer; }
.slider-dot.active { background: var(--accent); transform: scale(1.35); width: 22px; border-radius: 4px; box-shadow: 0 0 8px rgba(249,168,37,.5); }

/* ═══════════════════════════════════════════
   WHY ORGANIC
═══════════════════════════════════════════ */
.why-organic { padding: 7rem 0; background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-image-col { position: relative; }
.why-image-col img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.why-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: var(--accent-fg);
  font-weight: 900; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 35px rgba(249,168,37,.45); text-align: center;
  animation: floatY 3s ease-in-out infinite;
}
.why-badge-float .big { font-size: 2.2rem; display: block; line-height: 1; }
.why-badge-float .small { font-size: .8rem; font-weight: 600; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.why-text-col .feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-dim); border: 1px solid rgba(27,94,32,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .35s var(--ease-spring);
}
.feature-item:hover .feature-icon-wrap { background: var(--primary); transform: rotate(-6deg) scale(1.05); border-color: transparent; box-shadow: 0 4px 14px rgba(27,94,32,.25); }
.feature-icon-wrap svg { width: 22px; height: 22px; stroke: var(--primary); stroke-width: 2; fill: none; transition: stroke .3s; }
.feature-item:hover .feature-icon-wrap svg { stroke: #fff; }
.feature-text h4 { font-weight: 800; margin-bottom: .2rem; font-size: .97rem; color: var(--fg); }
.feature-text p { color: var(--fg-muted); font-size: .87rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.crops-marquee { background: var(--fg); padding: 1.1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marqueeScroll 24s linear infinite; will-change: transform; direction: ltr; }
.marquee-item { color: rgba(255,255,255,.45); font-size: .82rem; font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: .5rem; }
.marquee-item::before { content: '●'; color: var(--primary-xl); font-size: .5rem; opacity: .8; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  color: #fff; text-align: center; padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(76,175,80,.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 85%, rgba(249,168,37,.12) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  margin-bottom: .9rem; position: relative; z-index: 1;
  letter-spacing: -.015em;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); position: relative; z-index: 1; max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
.products { padding: 5.5rem 0; background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 5rem; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem;
  box-shadow: var(--shadow-xs); cursor: pointer;
  transition: all .4s var(--ease-out); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(to left, var(--primary-xl), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(27,94,32,.1);
  border-color: var(--border-l);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1;
  background: var(--bg-muted);
  border-radius: var(--radius); margin-bottom: 1.5rem; overflow: hidden; padding: 1rem;
  border: 1px solid var(--border); transition: background .35s;
}
.product-card:hover .product-img-wrap { background: rgba(27,94,32,.06); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s var(--ease-spring); }
.product-card:hover .product-img-wrap img { transform: scale(1.1) rotate(-2deg); }
.badge-special {
  position: absolute; top: .75rem; right: .75rem;
  background: var(--accent); color: var(--accent-fg);
  font-size: .7rem; font-weight: 800; padding: .22rem .7rem; border-radius: 50px;
}
.product-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .4rem; color: var(--fg); }
.product-coverage { color: var(--primary); font-weight: 700; margin-bottom: .5rem; font-size: .9rem; }
.product-npk { font-size: .78rem; color: var(--fg-3); margin-bottom: 1rem; }
.product-advantages { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.5rem; }
.product-advantages li { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: var(--fg-muted); }
.product-advantages li::before { content: '✓'; color: var(--primary-xl); font-weight: 800; flex-shrink: 0; }
.product-footer { margin-top: auto; }
.product-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border); margin-bottom: 1rem;
}
.product-price-row .label { color: var(--fg-3); font-size: .82rem; }
.product-price-row .price { font-size: 1.4rem; font-weight: 900; color: var(--fg); }
.product-card .btn { border-radius: var(--radius); height: 48px; }
.product-note { text-align: center; font-size: .75rem; color: var(--fg-3); margin-top: .6rem; }

/* Comparison table */
.comparison-section { padding: 3rem 0 6.5rem; background: var(--bg); }
.comparison-table-wrap {
  background: var(--bg-card); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden; max-width: 960px; margin: 0 auto; overflow-x: auto;
}
table { width: 100%; border-collapse: collapse; text-align: right; }
thead { background: rgba(27,94,32,.05); border-bottom: 1px solid var(--border-l); }
thead th { padding: 1.1rem 1.25rem; font-weight: 800; color: var(--primary); font-size: .9rem; }
tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--primary-dim); }
tbody td { padding: .95rem 1.25rem; color: var(--fg-muted); font-size: .9rem; }
tbody td:first-child { font-weight: 700; color: var(--fg); }
.check-yes { color: var(--primary); font-weight: 800; }
.check-no { color: var(--border); }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,30,14,.75); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border-radius: var(--radius-xl);
  border: 1px solid var(--border-l);
  max-width: 800px; width: 100%; overflow: hidden;
  display: flex; flex-direction: row; max-height: 90vh;
  transform: scale(.9) translateY(20px); transition: transform .5s var(--ease-spring);
  box-shadow: var(--shadow-xl);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-image-col {
  width: 40%; background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center; padding: 2rem; flex-shrink: 0;
  border-left: 1px solid var(--border);
}
.modal-image-col img { max-height: 280px; object-fit: contain; transition: transform .4s var(--ease-spring); }
.modal:hover .modal-image-col img { transform: scale(1.06); }
.modal-content-col { width: 60%; padding: 2.25rem; overflow-y: auto; }
.modal-content-col h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .35rem; }
.modal-price { font-size: 1.35rem; font-weight: 900; color: var(--primary); margin-bottom: 1.5rem; display: block; }
.modal-specs { margin-bottom: 1.5rem; }
.spec-row { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.spec-row .spec-label { color: var(--fg-3); }
.spec-row .spec-val { font-weight: 700; color: var(--fg); }
.modal-advantages h4 { font-weight: 800; margin-bottom: .75rem; }
.modal-advantages ul { list-style: none; padding: 0; }
.modal-advantages li { color: var(--fg-muted); font-size: .87rem; margin-bottom: .45rem; display: flex; align-items: center; gap: .45rem; }
.modal-advantages li::before { content: '✓'; color: var(--primary-xl); font-weight: 800; flex-shrink: 0; }
.modal-close {
  position: absolute; top: 1.1rem; left: 1.1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-muted); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: rgba(27,94,32,.1); border-color: var(--primary); }
.modal-close svg { width: 15px; height: 15px; stroke: var(--fg-3); stroke-width: 2.5; fill: none; }
.modal-footer { margin-top: 1.25rem; }

/* ═══════════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════════ */
.calculator { padding: 4.5rem 0 7rem; background: var(--bg); }
.calc-card {
  max-width: 940px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border-l);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; display: flex;
}
.calc-left {
  width: 45%;
  background: linear-gradient(145deg, var(--primary), #1a4d1e);
  border-left: 1px solid rgba(255,255,255,.1);
  color: #fff; padding: 2.75rem; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.calc-left::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.calc-left .calc-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.calc-left .calc-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.8; }
.calc-left h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: .75rem; }
.calc-left p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.75; }
.calc-result {
  margin-top: 2.5rem; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 1.5rem;
}
.calc-result .result-label { font-size: .75rem; color: rgba(255,255,255,.65); margin-bottom: .25rem; display: block; }
.calc-result .result-val { font-size: 1.75rem; font-weight: 900; margin-bottom: 1rem; }
.calc-result .result-cost { font-size: 1.2rem; font-weight: 900; color: var(--accent-l); }
.calc-right { width: 55%; padding: 2.75rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .5rem; color: var(--fg); }
.form-row { display: flex; gap: .75rem; }
.form-row .input-wrap { flex: 1; }
input[type="number"], select {
  width: 100%; height: 48px; padding: 0 1rem;
  border: 1px solid var(--border-l); border-radius: var(--radius);
  font-size: .95rem; background: var(--bg); outline: none;
  transition: border-color .25s, box-shadow .25s; color: var(--fg); appearance: auto;
}
input[type="number"]:focus, select:focus {
  border-color: var(--primary-xl); box-shadow: 0 0 0 3px rgba(76,175,80,.12);
}
.calc-note { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--fg-3); line-height: 1.65; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { padding: 7rem 0; background: var(--bg-alt); }
.about-grid { display: flex; align-items: center; gap: 5rem; }
.about-img { width: 46%; flex-shrink: 0; position: relative; }
.about-img img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.about-img-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--bg-card); border: 1px solid var(--border-l);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem;
  z-index: 2; animation: floatY 4s ease-in-out infinite;
}
.about-img-badge .icon-wrap {
  width: 40px; height: 40px; border-radius: .6rem;
  background: var(--primary-dim); border: 1px solid rgba(27,94,32,.15);
  display: flex; align-items: center; justify-content: center;
}
.about-img-badge .icon-wrap svg { width: 20px; height: 20px; stroke: var(--primary); stroke-width: 2; fill: none; }
.about-img-badge .badge-text .num { font-size: 1.25rem; font-weight: 900; color: var(--primary); display: block; }
.about-img-badge .badge-text .lbl { font-size: .72rem; color: var(--fg-3); }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.1rem; font-weight: 900; margin-bottom: .5rem; color: var(--fg); letter-spacing: -.015em; }
.about-text h3 { font-size: 1rem; color: var(--primary); font-weight: 600; margin-bottom: 1.5rem; }
.about-text p { color: var(--fg-muted); line-height: 1.85; margin-bottom: 1rem; font-size: .96rem; }
.about-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .85rem; }
.about-list li { display: flex; align-items: center; gap: .8rem; font-weight: 700; font-size: .92rem; color: var(--fg); }
.about-list svg { width: 20px; height: 20px; stroke: var(--primary-xl); flex-shrink: 0; stroke-width: 2; fill: none; }

/* ═══════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════ */
.timeline-section { padding: 6.5rem 0; background: var(--bg); }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; right: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-xl), transparent);
  transform: translateX(1px);
}
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 2.5rem); margin-bottom: 3rem; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 2.5rem); }
.timeline-dot {
  position: absolute; right: calc(50% - 8px); top: 1.1rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary-xl); border: 3px solid var(--bg);
  box-shadow: 0 0 12px rgba(76,175,80,.5);
}
.timeline-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); max-width: 320px;
  transition: all .3s var(--ease-out);
}
.timeline-card:hover { border-color: var(--border-l); transform: translateY(-3px); box-shadow: var(--shadow); }
.timeline-year { font-size: .75rem; font-weight: 700; color: var(--primary-xl); margin-bottom: .35rem; letter-spacing: .08em; }
.timeline-card h3 { font-size: .97rem; font-weight: 800; margin-bottom: .35rem; }
.timeline-card p { font-size: .84rem; color: var(--fg-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════════ */
.certifications { padding: 5.5rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; max-width: 860px; margin: 0 auto; }
.cert-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1rem; text-align: center; transition: all .35s var(--ease-out);
}
.cert-card:hover { border-color: var(--border-l); box-shadow: var(--shadow); transform: translateY(-4px); background: var(--bg-card); }
.cert-card svg { width: 40px; height: 40px; stroke: var(--primary-xl); stroke-width: 1.5; fill: none; margin: 0 auto .875rem; }
.cert-card h4 { font-size: .87rem; font-weight: 700; margin-bottom: .3rem; color: var(--fg); }
.cert-card p { font-size: .75rem; color: var(--fg-3); }

/* ═══════════════════════════════════════════
   USAGE GUIDE
═══════════════════════════════════════════ */
.usage-guide { padding: 7rem 0; background: var(--bg); }
.steps-wrapper { max-width: 820px; margin: 0 auto; position: relative; }
.steps-line { position: absolute; right: 36px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.steps-progress {
  position: absolute; right: 36px; top: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary-xl), var(--accent));
  height: 0; transition: height .4s ease;
  box-shadow: 0 0 8px rgba(76,175,80,.4);
}
.steps-list { display: flex; flex-direction: column; gap: 3.5rem; }
.step-item { display: flex; align-items: flex-start; gap: 2rem; }
.step-node {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--primary-xl); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.35rem; color: var(--primary); flex-shrink: 0;
  position: relative; z-index: 1; transition: all .4s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(76,175,80,.15);
}
.step-node.active { background: var(--primary); color: #fff; border-color: transparent; transform: scale(1.12); box-shadow: 0 8px 28px rgba(27,94,32,.35); }
.step-content {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; flex: 1; box-shadow: var(--shadow-xs); transition: all .35s var(--ease-out);
}
.step-content:hover { box-shadow: var(--shadow), 0 0 0 1px rgba(27,94,32,.08); border-color: var(--border-l); transform: translateX(-4px); }
.step-tag {
  display: inline-block; background: var(--primary-dim); color: var(--primary);
  border: 1px solid rgba(27,94,32,.15);
  font-weight: 700; font-size: .75rem; padding: .2rem .7rem; border-radius: 50px; margin-bottom: .75rem;
}
.step-content h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; color: var(--fg); }
.step-content p { color: var(--fg-muted); font-size: .9rem; line-height: 1.7; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { padding: 7rem 0; background: var(--bg-alt); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; text-align: right; padding: 1.4rem 0;
  font-size: 1rem; font-weight: 700; color: var(--fg);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .2s; cursor: pointer;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-muted); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-spring);
}
.faq-item.open .faq-icon { background: var(--primary); border-color: transparent; box-shadow: 0 4px 14px rgba(27,94,32,.3); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--fg-3); stroke-width: 2.5; fill: none; transition: all .3s; }
.faq-icon svg line:last-child { transition: transform .3s, opacity .3s; transform-origin: center; }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-item.open .faq-icon svg line:last-child { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .35s ease;
  color: var(--fg-muted); line-height: 1.85; font-size: .94rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.4rem; }
.faq-cta {
  max-width: 780px; margin: 3rem auto 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-l));
  border-radius: var(--radius-lg); padding: 2.25rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.faq-cta::before {
  content: ''; position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.05);
}
.faq-cta h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .45rem; }
.faq-cta p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { padding: 7rem 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; max-width: 1050px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.35rem; display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-xs); transition: all .3s var(--ease-out);
}
.info-card:hover { box-shadow: var(--shadow), 0 0 0 1px rgba(27,94,32,.08); transform: translateX(-4px); border-color: var(--border-l); }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-dim); border: 1px solid rgba(27,94,32,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s;
}
.info-card:hover .info-icon { background: var(--primary); border-color: transparent; box-shadow: 0 4px 14px rgba(27,94,32,.25); }
.info-icon svg { width: 22px; height: 22px; stroke: var(--primary); stroke-width: 2; fill: none; transition: stroke .3s; }
.info-card:hover .info-icon svg { stroke: #fff; }
.info-card h4 { font-weight: 700; margin-bottom: .35rem; font-size: .93rem; color: var(--fg); }
.info-card p { color: var(--fg-muted); font-size: .86rem; line-height: 1.65; }
.hours-table { width: 100%; font-size: .83rem; border-collapse: collapse; }
.hours-table td { padding: .2rem 0; color: var(--fg-muted); }
.hours-table td:last-child { text-align: left; font-weight: 600; color: var(--fg); }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border-l); border-radius: var(--radius-xl);
  padding: 2.75rem; box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .4rem; }
.contact-form-card > p { color: var(--fg-muted); font-size: .9rem; margin-bottom: 2rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .4rem; color: var(--fg-2); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--border-l);
  border-radius: var(--radius); font-size: .95rem; outline: none;
  transition: border-color .25s, box-shadow .25s; background: var(--bg); color: var(--fg); height: auto;
}
.form-field input { height: 48px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary-xl); box-shadow: 0 0 0 3px rgba(76,175,80,.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--fg-3); }

/* ═══════════════════════════════════════════
   MAP
═══════════════════════════════════════════ */
.map-section { padding: 0 0 5.5rem; background: var(--bg); }
.map-placeholder {
  max-width: 1050px; margin: 0 auto;
  background: var(--bg-muted); border-radius: var(--radius-xl);
  height: 300px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(27,94,32,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(27,94,32,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-pin { position: relative; z-index: 1; text-align: center; }
.map-pin .pin { font-size: 3rem; animation: pinBounce 1.6s ease-in-out infinite; display: block; }
.map-pin p { font-size: .88rem; color: var(--fg-3); margin-top: .5rem; }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-12px); } }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 50%, #1a6b1f 100%);
  padding: 5.5rem 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(76,175,80,.15) 0%, transparent 70%),
    url('images/hero-bg.png') center/cover;
  opacity: .04; mix-blend-mode: overlay;
}
.cta-banner::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: .9rem; position: relative; z-index: 1; letter-spacing: -.015em; }
.cta-banner p { color: rgba(255,255,255,.78); margin-bottom: 2.5rem; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-banner .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--fg); color: #fff; padding: 5rem 0 2.5rem;
  border-top: 3px solid var(--primary-xl);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.75rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: .03em; }
.footer-logo svg { width: 26px; height: 26px; stroke: var(--primary-xl); stroke-width: 2; fill: none; }
.footer-about { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.8; }
.footer-col h4 { font-size: .9rem; font-weight: 800; margin-bottom: 1.25rem; color: rgba(255,255,255,.9); }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .65rem; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--primary-xl); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-social-row { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease-spring); color: rgba(255,255,255,.5); font-size: .68rem;
}
.social-btn:hover { background: var(--primary-xl); border-color: var(--primary-xl); color: #fff; transform: translateY(-2px); }
.trust-badges { display: flex; gap: .75rem; }
.trust-badge {
  width: 70px; height: 86px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: rgba(255,255,255,.4); text-align: center; padding: .35rem;
}
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); cursor: pointer;
  transition: all .3s var(--ease-spring); text-decoration: none;
}
.wa-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.45);
  animation: waPing 2.5s ease-in-out 3s infinite;
}
@keyframes waPing { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.9); opacity: 0; } }
.wa-btn:hover { background: #128C7E; transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
.mobile-cta {
  display: none; position: fixed; bottom: 0; right: 0; left: 0; z-index: 80;
  padding: .875rem 1rem;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 24px rgba(27,94,32,.1);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; height: 50px; background: var(--accent); color: var(--accent-fg);
  font-weight: 700; font-size: 1rem; border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(249,168,37,.4);
}

/* ═══════════════════════════════════════════
   CURSOR GLOW (light version)
═══════════════════════════════════════════ */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(76,175,80,0.35);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-spring), height .35s var(--ease-spring), opacity .35s;
  mix-blend-mode: multiply;
  filter: blur(6px);
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.from-left  { transform: translateX(40px) translateY(0); }
.reveal.from-right { transform: translateX(-40px) translateY(0); }
.reveal.visible    { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════
   FORM SUCCESS
═══════════════════════════════════════════ */
#formSuccess {
  display: none; padding: 1rem 1.25rem; border-radius: var(--radius);
  background: rgba(27,94,32,.08); border: 1px solid rgba(27,94,32,.25);
  color: var(--primary); font-weight: 600; font-size: .92rem; margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   SUPPORT PAGE — QUICK STRIP
═══════════════════════════════════════════ */
.quick-strip {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.quick-grid {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.quick-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg);
  transition: all .3s var(--ease-out); text-decoration: none;
  min-width: 200px;
}
.quick-item:hover {
  border-color: var(--border-l); box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.qi-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.qi-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.qi-icon.green { background: rgba(27,94,32,.1); }
.qi-icon.green svg { stroke: var(--primary); }
.qi-icon.wa { background: rgba(37,211,102,.12); }
.qi-icon.wa svg { stroke: #25D366; fill: #25D366; }
.qi-icon.gold { background: rgba(249,168,37,.12); }
.qi-icon.gold svg { stroke: var(--accent); }
.qi-label { font-size: .75rem; color: var(--fg-3); font-weight: 600; }
.qi-value { font-size: .92rem; font-weight: 800; color: var(--fg); margin-top: .1rem; }

/* ═══════════════════════════════════════════
   SUPPORT PAGE — MAIN GRID
═══════════════════════════════════════════ */
.support-page { padding: 5rem 0; background: var(--bg); }
.support-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; align-items: start;
}
.support-info { display: flex; flex-direction: column; gap: 1rem; }

/* info-card re-scoped for support page */
.support-info .info-card,
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-xs); transition: all .3s var(--ease-out);
}
.info-card:hover {
  box-shadow: var(--shadow), 0 0 0 1px rgba(27,94,32,.08);
  transform: translateX(-4px); border-color: var(--border-l);
}
.info-ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-dim); border: 1px solid rgba(27,94,32,.12);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-spring);
}
.info-card:hover .info-ic { background: var(--primary); border-color: transparent; box-shadow: 0 4px 14px rgba(27,94,32,.25); }
.info-ic svg {
  width: 20px; height: 20px; stroke: var(--primary); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s;
}
.info-card:hover .info-ic svg { stroke: #fff; }
.info-card h4 { font-weight: 700; margin-bottom: .35rem; font-size: .93rem; color: var(--fg); }
.info-card p { color: var(--fg-muted); font-size: .86rem; line-height: 1.65; }

.support-form-card {
  background: var(--bg-card); border: 1px solid var(--border-l);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.support-form-card h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: .4rem; }
.support-form-card > p { color: var(--fg-muted); font-size: .9rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   SUPPORT PAGE — MAP
═══════════════════════════════════════════ */
.map-ph {
  background: var(--bg-muted); border-radius: var(--radius-xl);
  height: 280px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; align-items: center;
  justify-content: center; position: relative;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,94,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,94,32,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-pin-wrap { position: relative; z-index: 1; text-align: center; }
.map-pin-icon { font-size: 2.8rem; display: block; animation: pinBounce 1.8s ease-in-out infinite; }
.map-pin-wrap p { font-size: .88rem; color: var(--fg-3); margin-top: .4rem; }

/* ═══════════════════════════════════════════
   SUPPORT PAGE — FOOTER EXTRAS
═══════════════════════════════════════════ */
.footer-ci {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem;
}
.footer-ci svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--primary-xl); stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-ci span { font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 700;
  cursor: pointer; transition: all .25s var(--ease-spring);
}
.soc-btn:hover { background: var(--primary-xl); border-color: var(--primary-xl); color: #fff; transform: translateY(-2px); }
.trust-badges { display: flex; gap: .6rem; margin-top: 1rem; }
.trust-b {
  padding: .4rem .75rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  font-size: .68rem; color: rgba(255,255,255,.35); text-align: center;
}

/* ═══════════════════════════════════════════
   SUPPORT PAGE — WA FAB + BTT
═══════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: all .3s var(--ease-spring);
}
.wa-fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.45); animation: waPing 2.5s ease-in-out 3s infinite;
}
.wa-fab:hover { background: #128C7E; transform: scale(1.1); }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }
.btt {
  position: fixed; bottom: 5.5rem; left: 0.85rem; z-index: 89;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; cursor: pointer;
  box-shadow: 0 3px 10px rgba(27,94,32,.3);
}
.btt svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; fill: none; }

/* ═══════════════════════════════════════════
   SUPPORT PAGE — "قبل از تماس" SECTION HEADING
═══════════════════════════════════════════ */
.sh { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.sh .eyebrow {
  display: inline-block; color: var(--primary-xl); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; margin-bottom: .6rem;
  background: var(--primary-dim); padding: .28rem .9rem; border-radius: 50px;
  border: 1px solid rgba(27,94,32,.15);
}
.sh h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: .6rem; color: var(--fg); }
.sh p { color: var(--fg-muted); font-size: .96rem; }

/* ═══════════════════════════════════════════
   FORM SUCCESS
═══════════════════════════════════════════ */
.form-success {
  display: none; padding: 1rem 1.25rem; border-radius: var(--radius);
  background: rgba(27,94,32,.08); border: 1px solid rgba(27,94,32,.25);
  color: var(--primary); font-weight: 600; font-size: .92rem; margin-top: 1rem;
}

/* reveal delay aliases used in support.html */
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { gap: 3rem; }
  .about-grid { gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── NAVBAR: hide desktop nav, show hamburger ── */
  .navbar .nav-links { display: none !important; }
  .navbar .nav-cta   { display: none !important; }
  .hamburger         { display: flex !important; }

  /* ── NAVBAR sizing on mobile ── */
  .navbar { padding: .85rem 0; }
  .navbar.scrolled { padding: .65rem 0; }
  .navbar .logo { font-size: 1.45rem; }

  /* ── NAVBAR mobile header: clean gradient so logo/hamburger are always readable ── */
  .navbar:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(10,35,12,0.55) 0%, rgba(10,35,12,0.1) 80%, transparent 100%);
    backdrop-filter: none;
  }

  /* ── MOBILE MENU: slightly smaller links ── */
  .mm-link { font-size: 1.25rem; padding: .85rem 0; }
  .mm-header { padding: 1.1rem 0 1.25rem; }
  .mm-cta { padding-top: 1.5rem; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1rem; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-content p   { font-size: 1rem; margin-bottom: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2rem; }
  .hero-stat .num { font-size: 1.8rem; }

  /* ── STATS BAND ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.12); border-left: none; }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); border-left: none; }
  .stat-item .num { font-size: 2.2rem; }

  /* ── SECTIONS: reduce padding ── */
  .benefits      { padding: 4.5rem 0; }
  .how-it-works  { padding: 4.5rem 0; }
  .testimonials  { padding: 4.5rem 0; }
  .why-organic   { padding: 4.5rem 0; }
  .usage-guide   { padding: 4.5rem 0; }
  .faq           { padding: 4.5rem 0; }
  .contact       { padding: 4.5rem 0; }
  .about         { padding: 4.5rem 0; }
  .timeline-section { padding: 4rem 0; }
  .certifications    { padding: 3.5rem 0; }
  .products          { padding: 3.5rem 0; }
  .calculator        { padding: 3rem 0 5rem; }
  .support-page      { padding: 3rem 0; }

  /* ── SECTION HEADINGS ── */
  .section-heading { margin-bottom: 3rem; }
  .section-heading h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* ── BENEFITS ── */
  .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── HOW IT WORKS ── */
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .how-grid::before { display: none; }

  /* ── TESTIMONIALS ── */
  .slider-btn.prev { left: -.5rem; }
  .slider-btn.next { right: -.5rem; }
  .slider-track { height: 500px; }
  .slide-inner { padding: 2rem 1.5rem; }
  .slide-text { font-size: .97rem; }

  /* ── REVEAL: neutralise horizontal transforms that cause overflow in RTL ── */
  .reveal.from-left,
  .reveal.from-right { transform: translateY(28px); }
  .reveal.from-left.visible,
  .reveal.from-right.visible { transform: none; }

  /* ── WHY ORGANIC ── */
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-badge-float { right: -8px; bottom: -12px; padding: .9rem 1.1rem; }
  .why-badge-float .big { font-size: 1.75rem; }

  /* ── ABOUT ── */
  .about-grid { flex-direction: column; gap: 2rem; }
  .about-img { width: 100%; }
  .about-img-badge { left: -.5rem; top: 1.25rem; }
  .about-text h2 { font-size: 1.7rem; }

  /* ── TIMELINE ── */
  .timeline::before { right: 18px; }
  .timeline-item { padding-right: 3.5rem; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 0; padding-right: 3.5rem; justify-content: flex-start; }
  .timeline-dot { right: 10px; }
  .timeline-card { max-width: 100%; }

  /* ── CERTIFICATIONS ── */
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── PRODUCTS ── */
  .products-grid { grid-template-columns: 1fr; }
  .comparison-table-wrap { font-size: .82rem; }
  thead th, tbody td { padding: .75rem .9rem; }

  /* ── PRODUCT MODAL ── */
  .modal { flex-direction: column; max-height: 95vh; }
  .modal-image-col { width: 100%; border-left: none; border-bottom: 1px solid var(--border); height: 180px; padding: 1.25rem; }
  .modal-content-col { width: 100%; padding: 1.5rem; }

  /* ── CALCULATOR ── */
  .calc-card { flex-direction: column; }
  .calc-left, .calc-right { width: 100%; }
  .calc-left { padding: 2rem; border-radius: 0; }
  .calc-right { padding: 2rem; }
  .calc-left h2 { font-size: 1.4rem; }
  .form-row { flex-direction: column; gap: .75rem; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.75rem; }

  /* ── SUPPORT ── */
  .support-grid { grid-template-columns: 1fr; }
  .support-form-card { padding: 1.75rem; }
  .quick-item { min-width: 0; flex: 1 1 calc(50% - .5rem); }

  /* ── USAGE GUIDE ── */
  .steps-line, .steps-progress { right: 26px; }
  .step-node { width: 54px; height: 54px; font-size: 1.1rem; }
  .step-item { gap: 1.25rem; }
  .step-content { padding: 1.25rem; }

  /* ── FAQ ── */
  .faq-question { font-size: .95rem; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 7.5rem 0 3rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  footer { padding: 3.5rem 0 2rem; }

  /* ── CTA BANNER ── */
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-banner .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ── MOBILE WA BUTTON ── */
  .wa-btn  { bottom: 1.75rem; }
  .wa-fab  { bottom: 1.75rem; }

  /* ── TRUST BADGES ── */
  .trust-badges { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  /* ── CONTAINER PADDING ── */
  .container { padding: 0 1rem; }

  /* ── HERO ── */
  .hero-content h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-stats { flex-direction: row; flex-wrap: nowrap; gap: .5rem; justify-content: center; }
  .hero-stat-div { width: 1px; height: auto; align-self: stretch; }
  .hero-stat .num { font-size: 1.25rem; }
  .hero-stat .lbl { font-size: .6rem; }

  /* ── HOW GRID: single column on tiny screens ── */
  .how-grid { grid-template-columns: 1fr; }

  /* ── STATS BAND: reduce num size ── */
  .stat-item .num { font-size: 1.8rem; }

  /* ── SLIDER ── */
  .slide-inner { padding: 1.5rem 1rem; border-radius: 1.25rem; }
  .slider-btn { width: 36px; height: 36px; }

  /* ── CALCULATOR ── */
  .calc-left { padding: 1.5rem; }
  .calc-right { padding: 1.5rem; }
  .calc-result .result-val { font-size: 1.4rem; }

  /* ── PRODUCTS ── */
  .product-card { padding: 1.1rem; }
  .badge-special { font-size: .65rem; }

  /* ── MODAL ── */
  .modal-image-col { height: 150px; }
  .modal-content-col { padding: 1.25rem; }
  .modal-content-col h3 { font-size: 1.2rem; }

  /* ── USAGE GUIDE ── */
  .steps-line, .steps-progress { display: none; }
  .step-node { width: 46px; height: 46px; font-size: 1rem; }
  .step-item { gap: .85rem; }

  /* ── CERTIFICATIONS ── */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .cert-card { padding: 1.4rem .75rem; }

  /* ── QUICK STRIP (support) ── */
  .quick-grid { flex-direction: column; align-items: stretch; }
  .quick-item { min-width: 0; flex: 1 1 100%; }

  /* ── CONTACT FORM ── */
  .contact-form-card { padding: 1.25rem; }

  /* ── FAQ CTA ── */
  .faq-cta { padding: 1.75rem 1.25rem; }

  /* ── FOOTER ── */
  .footer-social-row { flex-wrap: wrap; }
  .footer-socials { flex-wrap: wrap; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 7rem 0 2.5rem; }

  /* ── BACK TO TOP ── */
  #backToTop { bottom: 5rem; left: 1rem; }
  .btt { bottom: 8.5rem; left: 1rem; }
  .wa-btn, .wa-fab { left: 1rem; }
}
