/* ===========================================================
   AGROQALQON — Design System
   Display: Space Grotesk | Body: Manrope | Utility: IBM Plex Mono
   =========================================================== */

:root{
  /* Color tokens */
  --bg:            #F6F3E9;   /* warm parchment field */
  --bg-alt:        #EEE8D6;   /* deeper wheat panel */
  --ink:           #1D2417;   /* near-black field green */
  --ink-soft:      #4A5240;   /* muted body text */
  --forest:        #2F4A24;   /* primary deep green */
  --forest-dark:   #203318;
  --crop:          #6E9E3F;   /* fresh crop green accent */
  --crop-light:    #8FBB5C;
  --soil:          #A97A50;   /* soil brown secondary */
  --alert:         #D97B29;   /* amber warning / CTA */
  --alert-dark:    #B8611A;
  --acar:          #3F5D4E;   /* muted sage-teal — akaritsid */
  --reg:           #8C6B2F;   /* golden ochre — o'sish regulyatori */
  --slate:         #4C6B7A;   /* acaricide category accent */
  --line:          rgba(29,36,23,0.12);
  --whatsapp:      #25D366;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(29,36,23,0.08);
  --shadow-md: 0 10px 30px rgba(29,36,23,0.12);
  --shadow-lg: 0 20px 60px rgba(29,36,23,0.18);

  --ease: cubic-bezier(.22,.9,.34,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Manrope', system-ui, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4{
  font-family:'Comfortaa', system-ui, sans-serif;
  color:var(--ink);
  line-height:1.1;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}

p{ margin:0 0 1em; color:var(--ink-soft); }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

.mono{
  font-family:'IBM Plex Mono', monospace;
  letter-spacing:.02em;
}

.container{
  width:100%;
  max-width:1220px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--forest);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:22px; height:2px;
  background:var(--crop);
  display:inline-block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ===================== NAV ===================== */
.site-header{
  position:sticky; top:0; z-index:900;
  border-bottom:1px solid var(--line);
}
.site-header::before{
  content:'';
  position:absolute; inset:0;
  background:rgba(246,243,233,0.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  z-index:-1;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Comfortaa', sans-serif;
  font-weight:700; font-size:1.28rem;
  color:var(--forest-dark);
}
.brand-mark{
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(135deg, var(--forest) 0%, var(--crop) 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}
.brand-mark svg{ width:22px; height:22px; }
.brand small{
  display:block; font-family:'IBM Plex Mono', monospace;
  font-weight:400; font-size:.62rem; letter-spacing:.12em;
  color:var(--soil); text-transform:uppercase;
}

.nav-links{
  display:flex; align-items:center; gap:2px;
}
.nav-links a{
  position:relative;
  padding:10px 16px;
  font-size:.95rem; font-weight:600;
  color:var(--ink-soft);
  border-radius:999px;
  transition:color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover{ color:var(--forest-dark); background:rgba(111,158,63,.12); }
.nav-links a.active{ color:var(--forest-dark); background:rgba(111,158,63,.18); }

.nav-cta{
  display:flex; align-items:center; gap:12px;
}
.nav-phone{
  display:none;
  font-family:'IBM Plex Mono', monospace;
  font-size:.85rem; font-weight:500;
  color:var(--forest-dark);
}

.nav-toggle{
  display:flex; flex-direction:column; gap:5px;
  background:none; border:none; padding:8px;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--ink);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:920px){
  .nav-links{
    position:fixed; inset:70px 0 0 0;
    background:var(--bg);
    flex-direction:column; align-items:stretch;
    padding:18px 20px; gap:6px;
    transform:translateY(-8px);
    opacity:0; visibility:hidden;
    transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    border-top:1px solid var(--line);
  }
  .nav-links.open{ opacity:1; visibility:visible; transform:translateY(0); }
  .nav-links a{ padding:14px 16px; font-size:1.05rem; }
  .nav-toggle{ display:flex; }
}
@media (min-width:921px){
  .nav-toggle{ display:none; }
  .nav-phone{ display:block; }
}

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700; font-size:.95rem;
  border:1.5px solid transparent;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--forest); color:#fff;
  box-shadow:0 6px 20px rgba(47,74,36,.28);
}
.btn-primary:hover{ background:var(--forest-dark); transform:translateY(-2px); box-shadow:0 10px 26px rgba(47,74,36,.36); }

.btn-alert{
  background:var(--alert); color:#fff;
  box-shadow:0 6px 20px rgba(217,123,41,.3);
}
.btn-alert:hover{ background:var(--alert-dark); transform:translateY(-2px); }

.btn-outline{
  background:transparent; color:var(--forest-dark);
  border-color:var(--ink);
}
.btn-outline:hover{ border-color:var(--forest); background:rgba(47,74,36,.06); transform:translateY(-2px); }

.btn-ghost-light{
  background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.4);
}
.btn-ghost-light:hover{ background:rgba(255,255,255,.22); transform:translateY(-2px); }

.btn-sm{ padding:10px 18px; font-size:.85rem; }
.btn-wa{ background:var(--whatsapp); color:#fff; box-shadow:0 6px 18px rgba(37,211,102,.35); }
.btn-wa:hover{ background:#1fb457; transform:translateY(-2px); }

/* ===================== FURROW SIGNATURE ===================== */
.furrows{
  position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none;
}
.furrows svg{ width:140%; height:100%; position:absolute; left:-5%; top:0; }
.furrow-line{
  animation:furrowDrift 26s linear infinite;
}
@keyframes furrowDrift{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-120px); }
}

.divider-furrow{
  height:46px; width:100%;
  background-image:repeating-linear-gradient(-8deg, var(--line) 0 2px, transparent 2px 34px);
  opacity:.6;
}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  background:var(--forest-dark);
  color:#fff;
  overflow:hidden;
  padding:120px 0 90px;
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 75% 20%, rgba(111,158,63,.35), transparent 60%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; }
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center;
}
.hero h1{
  font-size:clamp(2.4rem, 5vw, 3.6rem);
  color:#fff;
  margin-bottom:.4em;
}
.hero h1 em{
  font-style:normal; color:var(--crop-light);
}
.hero p.lead{
  color:rgba(255,255,255,.78);
  font-size:1.12rem; max-width:520px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }

.hero-visual{
  position:relative; aspect-ratio:1/1; max-width:420px; justify-self:end;
}
.hero-badge{
  position:absolute; background:#fff; color:var(--ink);
  border-radius:var(--radius-md); padding:14px 18px;
  box-shadow:var(--shadow-lg);
  font-family:'IBM Plex Mono', monospace; font-size:.82rem;
  display:flex; align-items:center; gap:10px;
  animation:floatY 5s ease-in-out infinite;
}
.hero-badge b{ font-family:'Comfortaa',sans-serif; font-size:1.3rem; display:block; color:var(--forest-dark); }
.hero-badge.b1{ top:6%; left:-6%; animation-delay:.2s; }
.hero-badge.b2{ bottom:10%; right:-4%; animation-delay:1.1s; }
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

.stat-strip{
  position:relative; z-index:2;
  background:var(--bg-alt);
  border-top:1px solid var(--line);
}
.stat-strip .container{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding:34px 24px;
}
.stat-item{ text-align:center; border-left:1px solid var(--line); padding:0 10px; }
.stat-item:first-child{ border-left:none; }
.stat-num{
  font-family:'Comfortaa',sans-serif; font-weight:700;
  font-size:2rem; color:var(--forest-dark);
}
.stat-label{
  font-size:.8rem; color:var(--ink-soft); font-family:'IBM Plex Mono',monospace;
  text-transform:uppercase; letter-spacing:.06em;
}

@media (max-width:820px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ justify-self:center; margin-top:20px; }
  .stat-strip .container{ grid-template-columns:repeat(2,1fr); gap:20px; }
  .stat-item{ border-left:none; }
}

/* ===================== SECTIONS ===================== */
section{ padding:96px 0; position:relative; }
.section-alt{ background:var(--bg-alt); }
.section-dark{ background:var(--forest-dark); color:#fff; }
.section-dark p{ color:rgba(255,255,255,.72); }
.section-dark h2{ color:#fff; }

.section-head{
  max-width:640px; margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem,3.4vw,2.6rem); }

/* ===================== CATEGORY / PRODUCT CARDS ===================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }

.cat-card{
  position:relative;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px 28px;
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.cat-card .icon-wrap{
  width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  transition:transform .4s var(--ease);
}
.cat-card:hover .icon-wrap{ transform:rotate(-6deg) scale(1.06); }
.cat-card.insect .icon-wrap{ background:#FBEFE3; }
.cat-card.herb .icon-wrap{ background:#EBF3E0; }
.cat-card.fung .icon-wrap{ background:#E7EEE0; }
.cat-card .icon-wrap svg{ width:28px; height:28px; }
.cat-card h3{ font-size:1.28rem; margin-bottom:8px; }
.cat-card .furrow-underline{
  height:3px; width:40px; background:var(--crop); border-radius:2px;
  margin-top:18px; transition:width .4s var(--ease);
}
.cat-card:hover .furrow-underline{ width:80px; }
.cat-tag{
  position:absolute; top:24px; right:24px;
  font-family:'IBM Plex Mono',monospace; font-size:.7rem;
  color:var(--soil); letter-spacing:.06em;
}

.product-card{
  background:#fff; border-radius:var(--radius-md);
  border:1px solid var(--line);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), opacity .4s cubic-bezier(.22,.9,.34,1), filter .4s cubic-bezier(.22,.9,.34,1);
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }

.product-card.card-hide{
  opacity:0 !important;
  transform:scale(.8) translateY(10px) rotate(-3deg) !important;
  filter:blur(10px);
  pointer-events:none;
}
.product-card.card-show{
  animation:cardPop .6s cubic-bezier(.22,.9,.34,1) both;
}
@keyframes cardPop{
  0%{ opacity:0; transform:scale(.78) translateY(30px) rotate(-4deg); filter:blur(12px); }
  55%{ opacity:1; transform:scale(1.04) translateY(-6px) rotate(1deg); filter:blur(0); }
  80%{ transform:scale(.98) translateY(2px) rotate(-.3deg); }
  100%{ opacity:1; transform:scale(1) translateY(0) rotate(0deg); filter:blur(0); }
}

.filter-btn{ transition:all .25s var(--ease), transform .15s var(--ease); }
.filter-btn:active{ transform:scale(.94); }
.product-media{
  aspect-ratio:3/4;
  background:radial-gradient(ellipse at 50% 45%, #ffffff 0%, var(--bg-alt) 100%);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.product-media svg{ width:64px; height:64px; opacity:.85; }
.product-photo{ width:100%; height:100%; object-fit:contain; padding:10px; }
.badge{
  position:absolute; top:14px; left:14px;
  font-family:'IBM Plex Mono',monospace; font-size:.68rem;
  padding:5px 10px; border-radius:999px;
  text-transform:uppercase; letter-spacing:.05em;
  color:#fff;
}
.badge.insect{ background:var(--alert); }
.badge.herb{ background:var(--crop); }
.badge.fung{ background:var(--soil); }
.badge.acar{ background:var(--acar); }
.badge.reg{ background:var(--reg); }

.brand-mark-img{
  width:44px; height:44px; border-radius:10px;
  object-fit:cover;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}
.footer-brand .brand-mark-img{ width:46px; height:46px; }

/* dosage table inside product card (details/summary) */
.dose-toggle{
  border-top:1px dashed var(--line);
  margin-top:4px; padding-top:12px;
}
.dose-toggle summary{
  cursor:pointer; list-style:none;
  font-family:'IBM Plex Mono',monospace; font-size:.78rem;
  color:var(--forest-dark); font-weight:600;
  display:flex; align-items:center; gap:6px;
  user-select:none;
}
.dose-toggle summary::-webkit-details-marker{ display:none; }
.dose-toggle summary::before{
  content:'+'; display:inline-flex; align-items:center; justify-content:center;
  width:16px; height:16px; border-radius:4px; background:var(--bg-alt);
  font-size:.9rem; transition:transform .25s var(--ease);
}
.dose-toggle[open] summary::before{ content:'−'; }
.dose-table{
  width:100%; border-collapse:collapse; margin-top:10px; font-size:.76rem;
}
.dose-table th{
  text-align:left; font-family:'IBM Plex Mono',monospace; font-weight:600;
  color:var(--soil); padding:6px 6px; border-bottom:1px solid var(--line);
  font-size:.68rem; text-transform:uppercase;
}
.dose-table td{ padding:7px 6px; border-bottom:1px solid var(--line); color:var(--ink-soft); }
.dose-table tr:last-child td{ border-bottom:none; }

/* region chip grid */
.region-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.region-chip{
  padding:10px 18px; border-radius:999px; background:#fff;
  border:1.5px solid var(--line); font-size:.86rem; font-weight:600;
  color:var(--forest-dark); display:inline-flex; align-items:center; gap:8px;
}
.region-chip svg{ width:14px; height:14px; flex-shrink:0; }

.product-body{ padding:20px 20px 22px; flex:1; display:flex; flex-direction:column; }
.product-body h3{ font-size:1.1rem; margin-bottom:4px; }
.product-active{
  font-family:'IBM Plex Mono',monospace; font-size:.78rem;
  color:var(--ink-soft); margin-bottom:12px;
}
.product-body p{ font-size:.9rem; flex:1; }
.product-specs{
  display:flex; gap:14px; font-family:'IBM Plex Mono',monospace;
  font-size:.72rem; color:var(--soil); margin:10px 0 16px;
  border-top:1px dashed var(--line); padding-top:12px;
}
.product-footer{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}

/* filter bar */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px;
}
.filter-btn{
  padding:10px 20px; border-radius:999px;
  border:1.5px solid var(--line); background:#fff;
  font-weight:700; font-size:.86rem; color:var(--ink-soft);
  transition:all .25s var(--ease);
}
.filter-btn:hover{ border-color:var(--crop); color:var(--forest-dark); }
.filter-btn.active{ background:var(--forest); border-color:var(--forest); color:#fff; }

/* ===================== FEATURE LIST / WHY US ===================== */
.feature-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.feature-item{ padding:6px; }
.feature-num{
  font-family:'IBM Plex Mono',monospace; color:var(--crop);
  font-size:.85rem; margin-bottom:10px;
}
.feature-item h4{ font-size:1.08rem; margin-bottom:8px; }
.feature-item p{ font-size:.92rem; }

/* ===================== STEPS (delivery) ===================== */
.steps{ position:relative; }
.step{
  display:grid; grid-template-columns:90px 1fr; gap:24px;
  padding:34px 0; border-bottom:1px solid var(--line);
}
.step:last-child{ border-bottom:none; }
.step-num{
  font-family:'Comfortaa',sans-serif; font-weight:700;
  font-size:2.4rem; color:var(--bg-alt);
  -webkit-text-stroke:1.5px var(--crop);
  color:transparent;
}
.step h3{ font-size:1.2rem; }

/* ===================== TESTIMONIAL / CTA BAND ===================== */
.cta-band{
  background:linear-gradient(120deg, var(--forest) 0%, var(--forest-dark) 100%);
  color:#fff; border-radius:var(--radius-lg);
  padding:60px 50px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:10px; }
.cta-band p{ color:rgba(255,255,255,.75); margin:0; max-width:420px; }

/* ===================== FORMS ===================== */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:.85rem; font-weight:700; color:var(--forest-dark); }
.field input, .field select, .field textarea{
  padding:14px 16px; border-radius:var(--radius-sm);
  border:1.5px solid var(--line); background:#fff;
  font-family:inherit; font-size:.95rem; color:var(--ink);
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--crop); box-shadow:0 0 0 4px rgba(111,158,63,.16);
}
.field textarea{ resize:vertical; min-height:120px; }

.form-note{ font-size:.82rem; color:var(--ink-soft); margin-top:6px; }
.form-success{
  display:none; background:#EBF3E0; border:1px solid var(--crop);
  border-radius:var(--radius-sm); padding:16px 18px; font-weight:700; color:var(--forest-dark);
  margin-bottom:18px;
}
.form-success.show{ display:block; }

/* ===================== CONTACT INFO CARDS ===================== */
.info-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:24px; display:flex; gap:16px; align-items:flex-start;
}
.info-card .ic{
  width:44px; height:44px; border-radius:12px; background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-card .ic svg{ width:22px; height:22px; }
.info-card h4{ font-size:1rem; margin-bottom:4px; }
.info-card p{ font-size:.9rem; margin:0; }

/* map placeholder */
.map-frame{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  aspect-ratio:16/9;
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ===================== ABOUT / TEAM ===================== */
.value-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px;
}
.value-card .icon-wrap{
  width:48px; height:48px; border-radius:12px; background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.value-card .icon-wrap svg{ width:24px; height:24px; }

.split{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.split-media{
  aspect-ratio:4/3; border-radius:var(--radius-lg);
  background:linear-gradient(135deg, var(--crop) 0%, var(--forest) 100%);
  position:relative; overflow:hidden;
}

.timeline{ display:flex; flex-direction:column; gap:0; }
.tl-item{ display:grid; grid-template-columns:110px 1fr; gap:24px; padding:26px 0; border-left:2px solid var(--line); position:relative; padding-left:30px; }
.tl-item::before{
  content:''; position:absolute; left:-7px; top:32px; width:12px; height:12px;
  border-radius:50%; background:var(--crop); border:3px solid var(--bg);
}
.tl-year{ font-family:'IBM Plex Mono',monospace; font-weight:700; color:var(--forest-dark); }

/* ===================== FOOTER ===================== */
footer{
  background:var(--ink); color:rgba(255,255,255,.7);
  padding:64px 0 30px;
}
.footer-grid{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand .brand{ color:#fff; }
.footer-grid h5{
  color:#fff; font-family:'IBM Plex Mono',monospace; font-size:.78rem;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px;
}
.footer-grid a{ display:block; padding:6px 0; color:rgba(255,255,255,.65); font-size:.92rem; transition:color .25s; }
.footer-grid a:hover{ color:var(--crop-light); }
.footer-bottom{
  padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.82rem; color:rgba(255,255,255,.45);
}
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s;
}
.social-row a:hover{ background:var(--crop); }
.social-row svg{ width:17px; height:17px; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:62px; height:62px; border-radius:50%;
  background:var(--whatsapp); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.45);
  transition:transform .3s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; }
.wa-float::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  background:var(--whatsapp); opacity:.55;
  animation:pulseWa 2.2s ease-out infinite;
}
@keyframes pulseWa{
  0%{ transform:scale(1); opacity:.55; }
  100%{ transform:scale(1.9); opacity:0; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background:var(--forest-dark); color:#fff;
  padding:70px 0 56px; position:relative; overflow:hidden;
}
.page-hero h1{ color:#fff; font-size:clamp(2rem,4vw,2.9rem); }
.page-hero p{ color:rgba(255,255,255,.72); max-width:560px; }
.breadcrumb{
  font-family:'IBM Plex Mono',monospace; font-size:.78rem;
  color:var(--crop-light); margin-bottom:14px; letter-spacing:.04em;
}

/* ===================== UTIL ===================== */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.flex-center{ display:flex; align-items:center; justify-content:center; }
.gap-10{ gap:10px; }

@media (max-width:960px){
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .feature-row{ grid-template-columns:repeat(2,1fr); }
  .split{ grid-template-columns:1fr; gap:34px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .form-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .grid-3, .grid-4{ grid-template-columns:1fr; }
  .feature-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .cta-band{ padding:40px 26px; flex-direction:column; align-items:flex-start; }
  section{ padding:64px 0; }
  .stat-strip .container{ padding:24px; }
}
