
/* ============ NEXA FONT ============ */
@font-face{
  font-family:'Nexa';
  src:url('NexaBook.otf') format('opentype');
  font-weight:300 400;
  font-display:swap;
}
@font-face{
  font-family:'Nexa';
  src:url('NexaRegular.otf') format('opentype');
  font-weight:500 600;
  font-display:swap;
}
@font-face{
  font-family:'Nexa';
  src:url('NexaBold.otf') format('opentype');
  font-weight:700 900;
  font-display:swap;
}

:root{
  --eco-dark:#0b1f10;
  --eco-dark-2:#0f2e17;
  --eco-green:#7bc142;
  --eco-green-light:#a3e05a;
  --eco-cream:#e9f5df;
  --eco-soil:#241207;
  --radius-pill:100px;
  --transition:all .35s cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box;}

body{
  font-family:'Nexa','Inter',sans-serif;
  margin:0;
  background:#000;
  overflow-x:hidden;
}

h1,h2,h3,h4,.brand-text,.reason-num{font-family:'Nexa','Poppins',sans-serif;}

a{text-decoration:none;}

/* ============ HEADER (floating pill) ============ */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:18px 0;
  transition:var(--transition);
}
.site-header.scrolled{padding:12px 0;}

/* transparent-until-scroll sticky header — invisible over the (always-dark)
   hero art at the top of every page, becomes a frosted dark-green glass bar
   once the page scrolls so nav stays legible over light sections below. */
.header-pill{
  position:relative;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  background:transparent;
  border:1px solid transparent;
  border-radius:var(--radius-pill);
  padding:8px 8px 8px 20px;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
  transition:var(--transition);
}
.site-header.scrolled .header-pill{
  background:rgba(5,24,13,.82);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  box-shadow:
    0 16px 42px rgba(2,12,6,.34),
    0 3px 10px rgba(2,12,6,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .site-header.scrolled .header-pill{background:rgba(5,22,12,.96);}
}

/* animated green-gradient outline that flows around the header pill */
.header-pill::before{
  content:"";
  position:absolute;
  inset:-2px;
  z-index:-1;
  border-radius:inherit;
  padding:2px;
  background:linear-gradient(90deg,
    #0e9d57, #5ef08e, #8de24e, #3ddc84, #0e9d57, #5ef08e, #8de24e, #3ddc84, #0e9d57);
  background-size:400% 100%;
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite:exclude;
  animation:headerBorderFlow 8s linear infinite;
  pointer-events:none;
  opacity:0;
  transition:opacity .35s ease;
}
.site-header.scrolled .header-pill::before{opacity:1;}
@keyframes headerBorderFlow{
  to{background-position:-400% 0%;}
}
@media (prefers-reduced-motion:reduce){
  .header-pill::before{animation:none;}
}
@supports not (mask-composite:exclude){
  .header-pill::before{display:none;}
  .header-pill{border-color:rgba(94,240,142,.35);}
}

/* logo block — full ETG + Energitechgrin lockup, same file as the footer */
.navbar-brand{display:flex;align-items:center;gap:0;}
.brand-logo-full{
  height:38px;width:auto;display:block;
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.25));
  transition:var(--transition);
}
.navbar-brand:hover .brand-logo-full{
  transform:translateY(-1px) scale(1.05);
  filter:drop-shadow(0 4px 16px rgba(94,240,142,.45));
}
.site-header.scrolled .brand-logo-full{height:32px;}

/* divider between logo and nav */
.header-divider{width:1px;align-self:stretch;margin:2px 6px;background:rgba(255,255,255,.14);flex-shrink:0;}

/* pill nav — each item floats as its own separate glossy capsule (reference-
   matched shape), filled with the site's own green gradient instead of the
   reference's teal/blue */
.pill-nav{
  list-style:none;display:flex;align-items:center;gap:12px;
  margin:0;padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
}
/* transparent by default — the glossy green capsule (reference-matched
   shape) only appears on hover, so the nav stays minimal until touched.
   The current page keeps a permanent (dimmer) fill so wayfinding isn't lost. */
.pill-nav .nav-link{
  display:flex;align-items:center;justify-content:center;
  padding:11px 22px!important;
  border-radius:var(--radius-pill);
  color:#fff!important;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.3px;
  text-transform:uppercase;
  white-space:nowrap;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:transparent;
  box-shadow:none;
  transition:background .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* reflective glass sheen across the top half of the pill — hidden until hover */
.pill-nav .nav-link::before{
  content:"";
  position:absolute;top:0;left:6%;right:6%;height:52%;
  background:linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0));
  border-radius:999px 999px 50% 50% / 999px 999px 100% 100%;
  pointer-events:none;
  opacity:0;
  transition:opacity .3s ease;
}
.pill-nav .nav-link .pnl-icon{display:none;}
.pill-nav .nav-link.active{
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
}
.pill-nav .nav-link:hover,
.pill-nav .nav-link.active:hover{
  background:var(--btn-gradient-hover);
  transform:translateY(-2px);
  box-shadow:
    0 12px 26px var(--btn-glow),
    inset 0 1px 0 rgba(255,255,255,.5);
}
.pill-nav .nav-link:hover::before{opacity:1;}

.btn-cta{
  background:var(--btn-gradient);
  color:#fff;
  font-weight:600;
  font-size:15px;
  padding:11px 22px;
  border-radius:var(--radius-pill);
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  box-shadow:0 6px 18px rgba(123,193,66,.35);
  transition:var(--transition);
  white-space:nowrap;
}
.btn-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(123,193,66,.5);
  color:#fff;
}
.btn-cta i{transition:transform .3s ease;}
.btn-cta:hover i{transform:translateX(3px);}

/* Custom hamburger — frosted glass chip, matches the header pill */
.hamburger-btn{
  width:44px;height:44px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.35);
  backdrop-filter:blur(10px) saturate(160%);
  -webkit-backdrop-filter:blur(10px) saturate(160%);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:var(--transition);
  flex-shrink:0;
}
.hamburger-btn:hover{background:rgba(123,193,66,.16);border-color:var(--eco-green);}
.hamburger-icon{width:18px;height:13px;position:relative;}
.hamburger-icon span{
  position:absolute;left:0;width:100%;height:2px;background:#17211a;border-radius:2px;
  transition:var(--transition);
}
.hamburger-icon span:nth-child(1){top:0;}
.hamburger-icon span:nth-child(2){top:5.5px;}
.hamburger-icon span:nth-child(3){top:11px;}
.hamburger-btn.active .hamburger-icon span:nth-child(1){top:5.5px;transform:rotate(45deg);}
.hamburger-btn.active .hamburger-icon span:nth-child(2){opacity:0;}
.hamburger-btn.active .hamburger-icon span:nth-child(3){top:5.5px;transform:rotate(-45deg);}

@media (max-width:1199.98px){
  .pill-nav{gap:8px;}
  .pill-nav .nav-link{padding:9px 16px!important;font-size:11px;}
}
@media (max-width:575.98px){
  .header-pill{padding:6px 6px 6px 14px;}
  .brand-logo-full{height:30px;}
}

/* Offcanvas mobile menu — light, premium (matches the header pill design) */
.offcanvas-eco{
  background:#fff;
  width:min(360px,88vw)!important;
  border-left:1px solid #eef0e4;
  box-shadow:-24px 0 60px rgba(10,30,15,.12);
}
.offcanvas-eco .offcanvas-header{border-bottom:1px solid #eef0e4;padding:18px 20px;}
.offcanvas-eco .btn-close{opacity:.55;}
.offcanvas-eco .btn-close:hover{opacity:1;}

/* brand block inside the offcanvas header — same full logo, no dark-glass
   filter needed since the offcanvas panel itself is already light. */
.oc-brand{display:flex;align-items:center;gap:10px;}
.oc-brand .brand-logo-full{height:32px;filter:none;}

.offcanvas-eco .nav-link{
  color:#17211a;
  font-size:15px;
  font-weight:600;
  padding:13px 14px;
  margin-bottom:8px;
  border-radius:16px;
  border:1px solid #eef0e4;
  background:#fbfdf9;
  display:flex;align-items:center;gap:12px;
  opacity:0;
  transform:translateX(30px);
  animation:slideFade .5s forwards;
  transition:var(--transition);
}
.offcanvas-eco .nav-link .oc-icon{
  width:34px;height:34px;flex-shrink:0;
  border-radius:10px;
  background:#e4f3d8;
  color:#1c7d31;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;
  transition:var(--transition);
}
.offcanvas-eco .nav-link .oc-label{flex:1;}
.offcanvas-eco .nav-link .oc-arrow{color:#c3cebc;font-size:12px;transition:var(--transition);}
.offcanvas-eco .nav-link:hover,
.offcanvas-eco .nav-link.active{
  border-color:#cfe9b3;
  background:#f4f9ee;
  color:#1c7d31;
}
.offcanvas-eco .nav-link:hover .oc-icon,
.offcanvas-eco .nav-link.active .oc-icon{
  background:var(--btn-gradient);
  color:#fff;
}
.offcanvas-eco .nav-link:hover .oc-arrow,
.offcanvas-eco .nav-link.active .oc-arrow{color:#1c7d31;transform:translateX(2px);}
.offcanvas-eco.show .nav-link:nth-child(1){animation-delay:.05s;}
.offcanvas-eco.show .nav-link:nth-child(2){animation-delay:.1s;}
.offcanvas-eco.show .nav-link:nth-child(3){animation-delay:.15s;}
.offcanvas-eco.show .nav-link:nth-child(4){animation-delay:.2s;}
.offcanvas-eco.show .nav-link:nth-child(5){animation-delay:.25s;}
.offcanvas-eco.show .nav-link:nth-child(6){animation-delay:.3s;}
@keyframes slideFade{to{opacity:1;transform:translateX(0);}}
.offcanvas-social a{
  width:38px;height:38px;border-radius:50%;
  background:#f4f7f1;
  border:1px solid #eef0e4;
  display:inline-flex;align-items:center;justify-content:center;
  color:#5a6b60;margin-right:8px;transition:var(--transition);
}
.offcanvas-social a:hover{
  background:var(--btn-gradient);
  border-color:transparent;color:#fff;
  transform:translateY(-3px);
}

/* light variant of the "Our Brands" pills, scoped to the offcanvas only
   (the base .brand-btn stays dark for the footer) */
.offcanvas-eco .brand-btn{
  border:1px solid #eef0e4;
  background:#fbfdf9;
  color:#17211a;
}
.offcanvas-eco .brand-btn svg{color:#1c7d31;}
.offcanvas-eco .brand-btn:hover{
  background:var(--btn-gradient);
  border-color:transparent;color:#fff;
}
.offcanvas-eco .brand-btn:hover svg{color:#fff;}

/* Full-width, properly-sized "Get in Touch" CTA inside the mobile offcanvas */
.offcanvas-eco .btn-cta{
  width:100%;
  justify-content:center;
  padding:15px 22px;
  font-size:15.5px;
}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#0bdc5b02;
  padding:150px 0 120px;
}

/* slow cinematic Ken Burns zoom + auto-crossfading 3-image slider on the hero photo */
.hero-bg{position:absolute;inset:0;z-index:-1;overflow:hidden;}
.hero-bg-img{
  position:absolute;inset:-4%;
  background-position:center 42%;
  background-size:cover;
  background-repeat:no-repeat;
  will-change:transform,opacity;
}
.hero-slide{
  opacity:0;
  animation:heroKenBurns 24s ease-in-out infinite alternate, heroSlideFade 18s ease-in-out infinite;
}
.hero-slide-1{background-image:url('/assets/hero-bg.png');   animation-delay:0s, 0s;}
.hero-slide-2{background-image:url('/assets/about-bg.jpg');  animation-delay:-8s, -6s;}
.hero-slide-3{background-image:url('/assets/Earth.png');animation-delay:-16s, -12s;}
@keyframes heroKenBurns{
  0%{transform:scale(1) translate(0,0);}
  100%{transform:scale(1.13) translate(-1.5%,-1%);}
}
/* each slide holds fully visible for ~4s then smoothly crossfades into the next,
   staggered so exactly one image is on screen at a time */
@keyframes heroSlideFade{
  0%{opacity:0;}
  6%{opacity:1;}
  28%{opacity:1;}
  36%{opacity:0;}
  100%{opacity:0;}
}
@media (prefers-reduced-motion:reduce){
  .hero-slide{animation:none;opacity:0;}
  .hero-slide-1{opacity:1;}
}

/* gradient tint over the photo, kept for text contrast */
.hero::before{
  content:"";
  position:absolute;inset:0;
  z-index:0;
  background:
    radial-gradient(ellipse 900px 700px at 45% 0%, rgba(255,196,92,.20), transparent 55%),
    linear-gradient(105deg, rgba(4,12,6,.90) 0%, rgba(6,18,9,.70) 38%, rgba(6,18,9,.28) 70%, rgba(4,12,6,.16) 100%);
  pointer-events:none;
}

/* soil texture footer of hero */
.hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:38%;
  background:
    radial-gradient(circle at 20% 100%, rgba(0,0,0,.55), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(20,10,5,.55) 55%, rgba(15,7,3,.85) 100%);
  pointer-events:none;
  z-index:1;
}

/* decorative blurred leaf glow blobs */
.hero-glow{
  position:absolute;border-radius:50%;
  filter:blur(90px);
  opacity:.35;
  z-index:0;
  animation:floatBlob 10s ease-in-out infinite;
}
.hero-glow.g1{width:420px;height:420px;background:#ffcf6b;top:-120px;left:-100px;animation-duration:14s;}
.hero-glow.g2{width:520px;height:520px;background:#7bc142;bottom:-160px;right:-140px;animation-duration:16s;animation-delay:1s;}
@keyframes floatBlob{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(30px,-25px) scale(1.08);}
}

/* floating leaf particles */
.leaf-particle{
  position:absolute;
  opacity:.55;
  animation:leafFloat linear infinite;
  z-index:1;
  pointer-events:none;
}
@keyframes leafFloat{
  0%{transform:translateY(0) rotate(0deg);opacity:0;}
  10%{opacity:.6;}
  90%{opacity:.4;}
  100%{transform:translateY(-120vh) rotate(360deg);opacity:0;}
}

.hero-content{position:relative;z-index:2;}

.eco-badge{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--eco-green-light);
  font-weight:600;
  font-size:13px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  background:rgba(123,193,66,.12);
  border:1px solid rgba(123,193,66,.35);
  padding:8px 18px;
  border-radius:var(--radius-pill);
  margin-bottom:26px;
  opacity:0;
  animation:fadeUp .8s ease forwards;
}
.eco-badge::before{
  content:"";width:7px;height:7px;border-radius:50%;
  background:var(--eco-green-light);
  box-shadow:0 0 10px var(--eco-green-light);
}

.hero h1{
  font-weight:800;
  font-size:clamp(2.4rem, 5.2vw, 4.2rem);
  line-height:1.08;
  color:#fff;
  margin-bottom:22px;
  opacity:0;
  animation:fadeUp .8s .12s ease forwards;
}
.hero h1 .accent{
  background:linear-gradient(100deg,var(--eco-green-light),var(--eco-green) 60%,#e9ff8f);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:inline-block;
}

.hero p.lead{
  color:rgba(255,255,255,.78);
  font-size:clamp(1rem,1.6vw,1.15rem);
  max-width:520px;
  margin-bottom:36px;
  opacity:0;
  animation:fadeUp .8s .24s ease forwards;
}

.hero-buttons{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .8s .36s ease forwards;
}
.hero-buttons-top{
  margin-bottom:28px;
  animation-delay:.05s;
  gap:14px;
}
/* dark glass panel button with a glossy round icon badge — used for the
   Healthcare Solutions / AI Solutions chips at the top of the hero */
.btn-pill-outline{
  display:inline-flex;align-items:center;gap:12px;
  padding:9px 9px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(160deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.02) 40%, rgba(0,0,0,.15) 100%), #0b0f0c;
  color:#fff;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.2px;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition:var(--transition);
  white-space:nowrap;
}
.btn-pill-outline .ppl-icon{
  width:38px;height:38px;flex-shrink:0;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg, var(--eco-green-light) 0%, var(--eco-green) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5), 0 4px 10px rgba(123,193,66,.4);
  color:#fff;
  font-size:16px;
  position:relative;
  overflow:hidden;
}
.btn-pill-outline .ppl-icon::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:55%;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events:none;
}
.btn-pill-outline i{font-size:16px;position:relative;z-index:1;}
.btn-pill-outline .ppl-arrow{
  width:32px;height:32px;flex-shrink:0;
  margin-left:auto;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg, var(--eco-green-light) 0%, var(--eco-green) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5), 0 4px 10px rgba(123,193,66,.4);
  color:#fff;
  position:relative;
  overflow:hidden;
  transition:var(--transition);
}
.btn-pill-outline .ppl-arrow::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:55%;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events:none;
}
.btn-pill-outline .ppl-arrow i{font-size:14px;}
.btn-pill-outline:hover{
  color:#fff;
  border-color:rgba(94,240,142,.4);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.42), 0 0 0 1px rgba(94,240,142,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-pill-outline:hover .ppl-icon{transform:scale(1.06);}
.btn-pill-outline:hover .ppl-arrow{transform:translateX(3px);}
@media (max-width:575.98px){
  .btn-pill-outline{padding:7px;font-size:13px;gap:10px;}
  .btn-pill-outline .ppl-arrow{width:28px;height:28px;}
  .btn-pill-outline .ppl-icon{width:32px;height:32px;border-radius:10px;}
}
@media (max-width:991.98px){
  .hero-buttons-top{justify-content:center;}
}
.btn-cta-lg{
  background:var(--btn-gradient);
  color:#fff;font-weight:600;font-size:16px;
  padding:16px 30px;border-radius:var(--radius-pill);
  display:inline-flex;align-items:center;gap:10px;
  box-shadow:0 10px 28px rgba(123,193,66,.4);
  border:none;transition:var(--transition);
}
.btn-cta-lg:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(123,193,66,.55);color:#fff;}
.btn-cta-lg .icon-circle{
  width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.22);
  display:flex;align-items:center;justify-content:center;font-size:13px;
}

/* Healthcare Solutions / AI Solutions hero buttons — same shape, gradient,
   shine-sweep and glow as the header CTA button, just wider with two
   icon badges (leading + trailing arrow) instead of one */
.btn-hero-cta{font-size:15px;padding:14px 24px;}
.btn-hero-cta .icon-circle{width:32px;height:32px;font-size:15px;flex-shrink:0;}
.btn-hero-cta .icon-circle:last-child{margin-left:4px;}

.play-btn{
  width:58px;height:58px;border-radius:50%;
  background:#fff;
  border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;color:var(--eco-dark-2);
  position:relative;
  transition:var(--transition);
  cursor:pointer;
}
.play-btn::after{
  content:"";position:absolute;inset:-6px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.5);
  animation:pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing{
  0%{transform:scale(.9);opacity:.9;}
  100%{transform:scale(1.5);opacity:0;}
}
.play-btn:hover{transform:scale(1.08);}

@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
@keyframes fadeIn{from{opacity:0;transform:scale(.96);}to{opacity:1;transform:scale(1);}}

/* Stats bar */
.stats-bar{
  position:relative;
  z-index:3;
  margin-top:60px;
  background:rgba(10,20,10,.55);
  backdrop-filter:blur(16px) saturate(140%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:26px 30px;
  opacity:0;
  animation:fadeUp .8s .5s ease forwards;
}
.stat-item{
  display:flex;align-items:center;gap:14px;
  transition:var(--transition);
}
.stat-item:hover{transform:translateY(-4px);}
.stat-icon{
  width:52px;height:52px;border-radius:50%;
  background:rgba(123,193,66,.18);
  border:1px solid rgba(123,193,66,.4);
  color:var(--eco-green-light);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
}
.stat-item h4{color:#fff;font-weight:700;font-size:1.35rem;margin:0;}
.stat-item span{color:rgba(255,255,255,.65);font-size:13.5px;}

/* Scroll cue */
.scroll-cue{
  position:absolute;bottom:18px;left:50%;transform:translateX(-50%);
  z-index:3;color:rgba(255,255,255,.55);font-size:12px;letter-spacing:2px;
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.scroll-cue .line{width:1.5px;height:34px;background:linear-gradient(180deg,rgba(255,255,255,.7),transparent);animation:scrollLine 1.8s ease-in-out infinite;}
@keyframes scrollLine{0%{transform:scaleY(0);transform-origin:top;}50%{transform:scaleY(1);transform-origin:top;}51%{transform-origin:bottom;}100%{transform:scaleY(0);transform-origin:bottom;}}

/* ============ ABOUT / INTRODUCING ETG — premium 2026 dark-neutral bento ============
   No green backdrop — a graphite/charcoal base with slow-drifting aurora
   colour blobs and a fine film-grain texture instead. */
.about-etg{
  position:relative;
  background:linear-gradient(165deg, #0a0a0d 0%, #131319 46%, #0c0c10 100%);
  padding:50px 0;
  overflow:hidden;
}
.about-content{position:relative;z-index:2;}

/* drifting aurora colour blobs — muted, not green-dominant */
.ib-aurora{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;}
.ib-blob{position:absolute;border-radius:50%;filter:blur(90px);animation:ibBlobDrift 18s ease-in-out infinite;}
.ib-blob.b1{width:460px;height:460px;top:-140px;left:-100px;background:radial-gradient(circle,rgba(124,109,242,.30),transparent 70%);animation-duration:20s;}
.ib-blob.b2{width:400px;height:400px;bottom:-140px;right:-80px;background:radial-gradient(circle,rgba(45,212,191,.26),transparent 70%);animation-duration:24s;animation-delay:1.5s;}
.ib-blob.b3{width:340px;height:340px;top:40%;left:46%;background:radial-gradient(circle,rgba(94,240,142,.16),transparent 70%);animation-duration:22s;animation-delay:3s;}
@keyframes ibBlobDrift{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(36px,-28px) scale(1.1);}
}
@media (prefers-reduced-motion:reduce){
  .ib-blob{animation:none;}
}
/* fine film-grain texture for a premium, non-flat surface */
.about-etg::after{
  content:"";
  position:absolute;inset:0;z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.5;
  pointer-events:none;
}

.reveal{opacity:0;transform:translateY(34px);transition:opacity .8s ease, transform .8s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal.d1{transition-delay:.1s;}
.reveal.d2{transition-delay:.2s;}
.reveal.d3{transition-delay:.3s;}
.reveal.d4{transition-delay:.4s;}

.badge-etg{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--btn-gradient);
  color:#06220f;
  font-weight:700;font-size:13.5px;
  padding:9px 20px;border-radius:var(--radius-pill);
  margin-bottom:20px;
  box-shadow:0 8px 24px rgba(61,220,132,.35);
}
.badge-etg i{font-size:16px;}

.about-etg h2{
  font-weight:700;
  font-size:clamp(1.7rem,3.2vw,2.5rem);
  line-height:1.2;
  color:#fff;
  margin-bottom:6px;
}
.about-etg h2 .accent-line{
  color:#5ef08e;
  display:inline-block;
  border-bottom:3px solid #5ef08e;
  padding-bottom:8px;
}
.about-etg p.about-text{
  color:rgba(255,255,255,.82);
  font-size:15.5px;
  line-height:1.8;
  margin-top:18px;
  max-width:560px;
}

.mini-stats{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;max-width:560px;}
.mini-stat{
  flex:1 1 150px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  padding:18px 14px;
  text-align:center;
  transition:var(--transition);
  backdrop-filter:blur(8px);
}
.mini-stat:hover{border-color:rgba(61,220,132,.45);transform:translateY(-5px);background:rgba(61,220,132,.06);}
.mini-stat .ms-icon{
  width:42px;height:42px;margin:0 auto 10px;
  border-radius:50%;
  background:rgba(61,220,132,.12);
  border:1px solid rgba(61,220,132,.35);
  display:flex;align-items:center;justify-content:center;
  color:#5ef08e;font-size:18px;
}
.mini-stat h4{color:#5ef08e;font-weight:700;font-size:1.35rem;margin:0 0 3px;}
.mini-stat span{color:rgba(255,255,255,.75);font-size:12.5px;}

/* premium "Our Philosophy" panel — right column */
.ib-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  grid-template-rows:repeat(3,auto) auto;
  grid-template-areas:
    "main  stat1"
    "main  stat2"
    "main  stat3"
    "philo philo";
  gap:18px;
  margin-top:20px;
}
.ib-main{grid-area:main;}
.ib-stat-1{grid-area:stat1;}
.ib-stat-2{grid-area:stat2;}
.ib-stat-3{grid-area:stat3;}
.ib-philo{grid-area:philo;}

.ib-main, .ib-stat, .ib-philo{
  position:relative;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  border-radius:26px;
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  transition:transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
  will-change:transform;
  transform-style:preserve-3d;
}
.ib-main{padding:38px 36px;display:flex;flex-direction:column;justify-content:center;}
.ib-main .about-text{margin:0;color:rgba(255,255,255,.72);font-size:15px;line-height:1.9;}
.ib-stat{padding:20px 22px;display:flex;align-items:center;gap:14px;}
.ib-main:hover, .ib-stat:hover, .ib-philo:hover{
  border-color:rgba(94,240,142,.4);
  transform:translateY(-4px);
  background:rgba(255,255,255,.07);
  box-shadow:0 20px 44px rgba(0,0,0,.4), 0 0 0 1px rgba(94,240,142,.12), 0 0 32px rgba(94,240,142,.10);
}
.ib-stat-icon{
  width:46px;height:46px;flex-shrink:0;
  border-radius:14px;
  background:rgba(61,220,132,.14);
  border:1px solid rgba(61,220,132,.3);
  color:#5ef08e;
  display:flex;align-items:center;justify-content:center;
  font-size:19px;
  transition:var(--transition);
}
.ib-stat:hover .ib-stat-icon{
  background:var(--btn-gradient);
  color:#fff;
  transform:scale(1.08) rotate(-4deg);
}
.ib-stat-icon .icon-leaf{width:22px;height:22px;}
.ib-stat-text{display:flex;flex-direction:column;}
.ib-stat-text h4{color:#fff;font-weight:800;font-size:1.6rem;margin:0;line-height:1.2;}
.ib-stat-text h4 .count-num{font-variant-numeric:tabular-nums;}
.ib-stat-text span{color:rgba(255,255,255,.62);font-size:12px;font-weight:600;}

.ib-philo{padding:32px 34px;display:flex;align-items:flex-start;gap:26px;flex-wrap:wrap;}
.ib-philo .philo-icon{flex-shrink:0;margin-bottom:0;}
.ib-philo-text{flex:1 1 240px;}
.ib-philo-text h3{color:#fff;font-weight:700;font-size:1.25rem;margin-bottom:8px;}
.ib-philo-text p{color:rgba(255,255,255,.68);font-size:14px;line-height:1.8;margin:0;}
.ib-philo-points.philo-points{flex:1 1 220px;gap:10px;}
.ib-philo-points .philo-point{padding-bottom:0;border-bottom:none;}

@media (max-width:991.98px){
  .ib-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:767.98px){
  .ib-grid{grid-template-columns:1fr;grid-template-areas:"main" "stat1" "stat2" "stat3" "philo";}
  .ib-philo{padding:26px 22px;}
}

.philo-panel{
  position:relative;
  background:linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.1);
  border-radius:26px;
  padding:42px 38px;
  backdrop-filter:blur(10px);
  box-shadow:0 30px 60px rgba(0,0,0,.35);
  transition:var(--transition);
}
.philo-panel:hover{border-color:rgba(94,240,142,.35);transform:translateY(-6px);}
.philo-panel .philo-icon{
  width:60px;height:60px;
  border-radius:18px;
  background:var(--btn-gradient);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:26px;
  box-shadow:0 12px 28px rgba(61,220,132,.35);
  margin-bottom:22px;
}
.philo-panel h3{color:#fff;font-size:1.4rem;font-weight:700;margin-bottom:14px;}
.philo-panel p{color:rgba(255,255,255,.72);font-size:14.5px;line-height:1.85;margin-bottom:26px;}
.philo-points{display:flex;flex-direction:column;gap:14px;}
.philo-point{
  display:flex;align-items:center;gap:12px;
  color:rgba(255,255,255,.88);font-size:14px;font-weight:600;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.philo-point:last-child{border-bottom:none;padding-bottom:0;}
.philo-point i{color:#5ef08e;font-size:17px;flex-shrink:0;}

.btn-solid-green{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--btn-gradient);
  color:#06220f;font-weight:700;font-size:15px;
  padding:14px 28px;border-radius:var(--radius-pill);
  border:none;transition:var(--transition);
  box-shadow:0 10px 26px rgba(61,220,132,.3);
}
.btn-solid-green:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(61,220,132,.45);color:#06220f;}
.btn-outline-green{
  display:inline-flex;align-items:center;gap:10px;
  background:transparent;
  color:#fff;font-weight:600;font-size:15px;
  padding:14px 28px;border-radius:var(--radius-pill);
  border:1.5px solid rgba(255,255,255,.35);
  transition:var(--transition);
}
.btn-outline-green:hover{border-color:#5ef08e;color:#5ef08e;transform:translateY(-3px);}

@media (max-width:991.98px){
  .about-etg{padding:65px 0;}
  .mini-stats,.about-etg p.about-text{max-width:100%;}
  .philo-panel{margin-top:40px;}
}
@media (max-width:575.98px){
  .about-etg{padding:55px 0;}
  .philo-panel{padding:32px 24px;}
  .btn-solid-green,.btn-outline-green{justify-content:center;}
}

/* ============ TWELVE REASONS ============ */
.reasons{
  position:relative;
  background:
    radial-gradient(ellipse 700px 500px at 92% 8%, rgba(163,224,90,.25), transparent 60%),
    radial-gradient(ellipse 600px 450px at 4% 96%, rgba(163,224,90,.18), transparent 60%),
    linear-gradient(160deg,#f2f8ec 0%, #eaf4e2 50%, #edf6e6 100%);
  padding:50px 0;
  overflow:hidden;
}
/* decorative corner leaves */
.reasons .corner-leaf{
  position:absolute;
  color:#3f8f2e;
  opacity:.9;
  z-index:1;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.15));
  animation:leafSway 6s ease-in-out infinite;
}
.reasons .cl-1{top:-20px;left:-25px;font-size:120px;transform:rotate(140deg);}
.reasons .cl-2{top:-30px;right:-20px;font-size:140px;transform:rotate(-130deg);animation-delay:1.5s;}
@keyframes leafSway{
  0%,100%{margin-top:0;}
  50%{margin-top:12px;}
}
.reasons-inner{position:relative;z-index:2;}

.reasons-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #bfe3a8;
  color:#2f8f3f;
  font-weight:600;font-size:13.5px;
  letter-spacing:1.4px;text-transform:uppercase;
  padding:10px 24px;border-radius:var(--radius-pill);
  box-shadow:0 4px 14px rgba(63,143,46,.12);
}
.reasons-badge i{
  width:22px;height:22px;border-radius:50%;
  background:#2f8f3f;color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:12px;
}
.reasons h2{
  font-weight:800;
  font-size:clamp(2.2rem,4.6vw,3.6rem);
  line-height:1.12;
  color:#17211a;
  margin:26px 0 0;
}
.reasons h2 .grn{
  background:linear-gradient(100deg,#39a845,#1c7d31);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.reasons-divider{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:26px auto 54px;
  color:#3f9f34;
}
.reasons-divider::before,
.reasons-divider::after{
  content:"";height:1.5px;width:110px;
  background:linear-gradient(90deg,transparent,#9fce85);
}
.reasons-divider::after{background:linear-gradient(90deg,#9fce85,transparent);}
.reasons-divider i{font-size:18px;}

.reason-card{
  background:#fff;
  border-radius:20px;
  padding:26px 24px;
  display:flex;align-items:center;gap:18px;
  height:100%;
  box-shadow:0 6px 22px rgba(45,90,35,.07);
  border:1px solid rgba(63,143,46,.06);
  transition:var(--transition);
}
.reason-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 38px rgba(45,90,35,.16);
  border-color:rgba(63,143,46,.28);
}
.reason-icon{
  width:64px;height:64px;flex-shrink:0;
  border-radius:50%;
  background:#e4f3d8;
  display:flex;align-items:center;justify-content:center;
  color:#1c7d31;font-size:26px;
  transition:var(--transition);
}
.reason-card:hover .reason-icon{
  background:var(--btn-gradient);
  color:#fff;
  transform:scale(1.08) rotate(-6deg);
}
.reason-num{
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;
  font-size:1.7rem;
  color:#1c7d31;
  flex-shrink:0;
}
.reason-sep{
  width:1.5px;align-self:stretch;
  background:linear-gradient(180deg,transparent,#d6e9c8,transparent);
  flex-shrink:0;
}
.reason-card p{
  margin:0;color:#33413a;
  font-size:15px;line-height:1.65;font-weight:500;
}

@media (min-width:1600px){
  .reasons .reason-card p{font-size:15.5px;}
}
@media (max-width:767.98px){
  .reasons{padding:60px 0;}
  .reasons .cl-1{font-size:80px;}
  .reasons .cl-2{font-size:90px;}
  .reasons-divider{margin-bottom:40px;}
  .reason-card{padding:22px 18px;gap:14px;}
  .reason-icon{width:54px;height:54px;font-size:22px;}
  .reason-num{font-size:1.4rem;}
}

/* ============ INDUSTRY MOMENTUM ============ */
.momentum{
  position:relative;
  background:
    radial-gradient(ellipse 800px 600px at 50% 0%, rgba(61,220,132,.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 100%, rgba(61,220,132,.07), transparent 60%),
    linear-gradient(160deg,#062312 0%, #0a3019 50%, #072815 100%);
  padding:50px 0;
  overflow:hidden;
}
@keyframes pulseGlow{
  0%,100%{box-shadow:0 0 14px rgba(94,240,142,.35);}
  50%{box-shadow:0 0 30px rgba(94,240,142,.7);}
}
.momentum-inner{position:relative;z-index:2;}

.momentum-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:rgba(61,220,132,.08);
  border:1px solid rgba(61,220,132,.3);
  color:#5ef08e;
  font-weight:600;font-size:14px;
  padding:11px 26px;border-radius:var(--radius-pill);
  backdrop-filter:blur(8px);
}
.momentum h2{
  font-weight:700;
  font-size:clamp(2rem,4.2vw,3.4rem);
  line-height:1.18;
  color:#fff;
  margin:28px 0 22px;
}
.momentum p.momentum-sub{
  color:rgba(255,255,255,.72);
  font-size:16.5px;
  line-height:1.9;
  max-width:760px;
  margin:0 auto 60px;
}

.momentum-card{
  position:relative;
  background:linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  padding:46px 26px 42px;
  text-align:center;
  height:100%;
  backdrop-filter:blur(8px);
  transition:var(--transition);
  overflow:hidden;
}
.momentum-card::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(ellipse 220px 140px at 50% 0%, rgba(61,220,132,.14), transparent 70%);
  opacity:0;transition:var(--transition);
}
.momentum-card:hover{
  transform:translateY(-8px);
  border-color:rgba(61,220,132,.45);
  box-shadow:0 22px 44px rgba(0,0,0,.35);
}
.momentum-card:hover::before{opacity:1;}

.flag-wrap{
  position:relative;
  width:86px;height:60px;
  margin:0 auto 26px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.12);
  transition:var(--transition);
}
.momentum-card:hover .flag-wrap{transform:scale(1.1) rotate(-2deg);}
.flag-wrap svg{display:block;width:100%;height:100%;}

.momentum-card h3{
  color:#fff;font-weight:700;font-size:1.3rem;margin-bottom:14px;
}
.momentum-card p{
  color:rgba(255,255,255,.68);
  font-size:14.5px;line-height:1.8;margin:0;
}
.momentum-card .card-line{
  width:44px;height:3px;border-radius:3px;
  background:linear-gradient(90deg,#3ddc84,#1c7d31);
  margin:0 auto 16px;
  transition:var(--transition);
}
.momentum-card:hover .card-line{width:70px;}

/* Back to top */
.back-top{
  position:fixed;right:26px;bottom:26px;z-index:999;
  width:52px;height:52px;border-radius:50%;
  background:var(--btn-gradient);
  color:#06220f;border:none;font-size:20px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px rgba(61,220,132,.4);
  opacity:0;visibility:hidden;transform:translateY(16px);
  transition:var(--transition);
  cursor:pointer;
}
.back-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-top:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(61,220,132,.55);}

@media (max-width:767.98px){
  .momentum{padding:60px 0;}
  .momentum p.momentum-sub{margin-bottom:44px;}
  .momentum-card{padding:36px 22px 34px;}
  .back-top{right:18px;bottom:18px;width:46px;height:46px;}
}

/* ============ OUR VISION (Luxury) ============ */
.vision{
  position:relative;
  background:
    radial-gradient(ellipse 700px 460px at 10% 6%, rgba(163,224,90,.12), transparent 60%),
    radial-gradient(ellipse 700px 460px at 92% 94%, rgba(217,196,122,.10), transparent 60%),
    linear-gradient(165deg,#fbfdf8 0%, #f4f9ee 100%);
  padding:50px 0;
  overflow:hidden;
}
/* faint watermark leaf */
.vision .v-wm{
  position:absolute;left:-90px;top:-70px;
  width:340px;height:340px;
  opacity:.05;
  pointer-events:none;
}
.vision-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #e3d9b8;
  color:#2f8f3f;
  font-weight:600;font-size:13.5px;
  letter-spacing:1.6px;text-transform:uppercase;
  padding:11px 30px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
}
.vision h2{
  font-weight:700;
  font-size:clamp(2.1rem,4.4vw,3.4rem);
  line-height:1.15;
  color:#17211a;
  margin:28px 0 0;
}
.vision h2 .grn{
  background:linear-gradient(100deg,#22b45c,#178a44 60%,#a8892f);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
/* ornamental divider: line — diamond — line */
.vision-divider{
  display:flex;align-items:center;justify-content:center;gap:16px;
  margin:26px auto 24px;
}
.vision-divider::before,
.vision-divider::after{
  content:"";height:1.5px;width:120px;
}
.vision-divider::before{background:linear-gradient(90deg,transparent,#c9b96e);}
.vision-divider::after{background:linear-gradient(90deg,#c9b96e,transparent);}
.vision-divider .vd-gem{
  width:10px;height:10px;
  background:var(--btn-gradient);
  transform:rotate(45deg);
  border-radius:2px;
  box-shadow:0 0 14px rgba(61,220,132,.4);
}
.vision p.vision-sub{
  color:#4a5a50;
  font-size:16.5px;
  line-height:1.9;
  max-width:740px;
  margin:0 auto 70px;
}

.vision-card{
  position:relative;
  height:100%;
  background:#fff;
  border-radius:24px;
  padding:44px 28px 38px;
  text-align:center;
  border:1px solid #eef0e4;
  box-shadow:0 14px 36px rgba(45,90,35,.08);
  overflow:hidden;
  transition:var(--transition);
}
/* luxury top gradient edge */
.vision-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;
  transition:var(--transition);
}
.vision-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
@keyframes goldFlow{to{background-position:200% 0;}}
/* soft glow inside on hover */
.vision-card::after{
  content:"";
  position:absolute;top:-70px;left:50%;transform:translateX(-50%);
  width:220px;height:180px;
  background:radial-gradient(ellipse, rgba(61,220,132,.12), transparent 70%);
  opacity:0;transition:var(--transition);
  pointer-events:none;
}
.vision-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(45,90,35,.16);
  border-color:#dce8cf;
}
.vision-card:hover::after{opacity:1;}

.vision-num{
  position:absolute;top:20px;right:26px;
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:2.4rem;
  color:#17211a;opacity:.06;
  transition:var(--transition);
}
.vision-card:hover .vision-num{opacity:.14;color:#1c7d31;}

.vision-icon{
  position:relative;
  width:92px;height:92px;
  margin:0 auto 26px;
  border-radius:50%;
  background:linear-gradient(145deg,#f2f9ec,#e4f3d8);
  display:flex;align-items:center;justify-content:center;
  color:#1c7d31;font-size:34px;
  transition:var(--transition);
}
/* thin gradient ring */
.vision-icon::before{
  content:"";
  position:absolute;inset:-6px;
  border-radius:50%;
  padding:1.5px;
  background:var(--btn-gradient);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.55;
  transition:var(--transition);
}
.vision-card:hover .vision-icon{
  background:var(--btn-gradient);
  color:#fff;
  transform:scale(1.07) rotate(-4deg);
  box-shadow:0 18px 38px rgba(34,180,92,.32);
}
.vision-card:hover .vision-icon::before{opacity:1;inset:-9px;}

.vision-card h3{
  color:#17211a;font-weight:700;font-size:1.28rem;margin-bottom:12px;
  transition:var(--transition);
}
.vision-card:hover h3{color:#1c7d31;}
.vision-card .vc-line{
  width:36px;height:2.5px;border-radius:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e);
  margin:0 auto 14px;
  transition:var(--transition);
}
.vision-card:hover .vc-line{width:60px;}
.vision-card p{
  color:#5a6b60;font-size:14.5px;line-height:1.8;margin:0;
}

@media (max-width:767.98px){
  .vision{padding:60px 0;}
  .vision p.vision-sub{margin-bottom:48px;}
  .vision-card{padding:38px 22px 32px;}
  .vision-icon{width:80px;height:80px;font-size:29px;}
}

/* ============ WHY BIODEGRADABLE FALLS SHORT ============ */
.whybio{
  position:relative;
  background:
    radial-gradient(ellipse 620px 460px at 96% 6%, rgba(163,224,90,.12), transparent 60%),
    radial-gradient(ellipse 560px 420px at 4% 94%, rgba(163,224,90,.09), transparent 60%),
    #f7fbf3;
  padding:50px 0;
  overflow:hidden;
}
.whybio-img{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(23,60,25,.22);
  transition:var(--transition);
}
.whybio-img::after{
  content:"";
  position:absolute;inset:0;
  border-radius:26px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events:none;
}
.whybio-img:hover{transform:translateY(-6px);box-shadow:0 40px 74px rgba(23,60,25,.3);}
.whybio-img img{width:100%;height:auto;display:block;}
.whybio-img .img-tag{
  position:absolute;left:18px;bottom:18px;
  background:rgba(6,34,15,.8);
  backdrop-filter:blur(10px);
  border:1px solid rgba(94,240,142,.35);
  color:#c9f5d8;
  font-size:13px;font-weight:600;
  padding:9px 18px;border-radius:var(--radius-pill);
  display:inline-flex;align-items:center;gap:8px;
}
.whybio-img .img-tag i{color:#5ef08e;}

.whybio-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 24px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
  margin-bottom:26px;
}
.whybio h2{
  font-weight:700;
  font-size:clamp(2rem,3.8vw,3rem);
  line-height:1.18;
  color:#22b45c;
  margin-bottom:24px;
}
.whybio p.whybio-text{
  color:#3d4c43;
  font-size:16px;
  line-height:2;
  margin-bottom:26px;
}
.whybio .accent-bar{
  width:64px;height:4px;border-radius:4px;
  background:linear-gradient(90deg,#3ddc84,#1c7d31);
  margin-bottom:30px;
}
.check-list{list-style:none;margin:0;padding:0;}
.check-list li{
  display:flex;align-items:center;gap:14px;
  padding:15px 6px;
  border-bottom:1px dashed #dcead2;
  color:#22301f;
  font-size:15.5px;font-weight:600;
  transition:var(--transition);
}
.check-list li:last-child{border-bottom:none;}
.check-list li:hover{padding-left:14px;color:#1c7d31;}
.check-list .chk{
  width:26px;height:26px;flex-shrink:0;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:13px;
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 5px 14px rgba(34,180,92,.35);
  transition:var(--transition);
}
.check-list li:hover .chk{transform:scale(1.15) rotate(-8deg);}

/* ============ DEPENDENCE ON SINGLE-USE PLASTIC ============ */
.dependence{
  position:relative;
  background:
    radial-gradient(ellipse 620px 460px at 4% 8%, rgba(255,158,84,.08), transparent 60%),
    radial-gradient(ellipse 620px 460px at 96% 60%, rgba(163,224,90,.12), transparent 60%),
    #fdfefc;
  padding:50px 0;
  overflow:hidden;
}
.dep-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #f6d9bd;
  color:#d2691e;
  font-weight:600;font-size:14px;
  padding:10px 24px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(210,105,30,.10);
  margin-bottom:26px;
}
.dep-badge i{color:#e07b28;}
.dependence h2{
  font-weight:700;
  font-size:clamp(2rem,3.8vw,3rem);
  line-height:1.18;
  color:#22b45c;
  margin-bottom:24px;
}
.dependence p.dep-text{
  color:#3d4c43;
  font-size:16px;
  line-height:2;
  margin-bottom:22px;
  max-width:600px;
}

.stake-card{
  background:#fff;
  border:1px solid #eef3ea;
  border-radius:24px;
  padding:40px 38px;
  box-shadow:0 24px 54px rgba(45,90,35,.10);
  transition:var(--transition);
}
.stake-card:hover{transform:translateY(-6px);box-shadow:0 32px 64px rgba(45,90,35,.16);}
.stake-card h3{
  color:#17211a;font-weight:700;font-size:1.5rem;margin-bottom:12px;
}
.stake-card p.stake-sub{
  color:#5a6b60;font-size:15px;line-height:1.8;margin-bottom:28px;
}
.stake-item{
  display:flex;align-items:center;gap:13px;
  padding:12px 14px;
  border-radius:14px;
  color:#22301f;
  font-size:15.5px;font-weight:700;
  transition:var(--transition);
}
.stake-item:hover{background:#f2f9ec;transform:translateX(4px);}
.stake-item .st-icon{
  width:42px;height:42px;flex-shrink:0;
  border-radius:12px;
  background:#e4f3d8;
  color:#1c7d31;font-size:19px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.stake-item:hover .st-icon{
  background:var(--btn-gradient);
  color:#fff;transform:rotate(-8deg) scale(1.08);
}

.earth-banner{
  margin-top:64px;
  background:linear-gradient(120deg,#06301a 0%, #0a3f22 60%, #0d4a28 100%);
  border-radius:24px;
  padding:30px 38px;
  display:flex;align-items:center;gap:24px;
  box-shadow:0 24px 50px rgba(6,48,26,.35);
  position:relative;
  overflow:hidden;
}
.earth-banner::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(ellipse 400px 200px at 90% 50%, rgba(94,240,142,.12), transparent 70%);
}
.earth-banner .eb-icon{
  position:relative;
  width:58px;height:58px;flex-shrink:0;
  border-radius:50%;
  background:rgba(94,240,142,.12);
  border:1px solid rgba(94,240,142,.4);
  color:#5ef08e;font-size:26px;
  display:flex;align-items:center;justify-content:center;
  animation:pulseGlow 3s ease-in-out infinite;
}
.earth-banner p{
  position:relative;
  color:rgba(255,255,255,.88);
  font-size:16.5px;line-height:1.8;margin:0;
}
.earth-banner p .hl{color:#5ef08e;font-weight:700;}

@media (max-width:991.98px){
  .whybio,.dependence{padding:60px 0;}
  .whybio-img{max-width:560px;margin:0 auto 46px;}
  .stake-card{margin-top:40px;}
}
@media (max-width:575.98px){
  .whybio,.dependence{padding:50px 0;}
  .stake-card{padding:30px 22px;}
  .earth-banner{flex-direction:column;text-align:center;padding:28px 22px;margin-top:48px;}
}

/* ============ TRIPLE IMPACT ============ */
.impact{
  position:relative;
  background:
    radial-gradient(ellipse 900px 600px at 50% -10%, rgba(61,220,132,.10), transparent 60%),
    linear-gradient(165deg,#05200f 0%, #0a3019 45%, #083118 100%);
  padding:50px 0 70px;
  overflow:hidden;
}
/* animated background: drifting glow orbs + rising particles */
.impact .orb{
  position:absolute;border-radius:50%;
  filter:blur(80px);opacity:.28;z-index:0;
  animation:orbDrift 16s ease-in-out infinite;
}
.impact .orb.o1{width:380px;height:380px;background:#3ddc84;top:-120px;left:-100px;}
.impact .orb.o2{width:420px;height:420px;background:#1a6e3c;bottom:-140px;right:-120px;animation-delay:3s;}
.impact .orb.o3{width:260px;height:260px;background:#ffb54d;top:40%;left:46%;opacity:.12;animation-delay:6s;}
@keyframes orbDrift{
  0%,100%{transform:translate(0,0) scale(1);}
  33%{transform:translate(40px,-30px) scale(1.1);}
  66%{transform:translate(-25px,25px) scale(.95);}
}
.impact .rise{
  position:absolute;bottom:-12px;
  width:6px;height:6px;border-radius:50%;
  background:rgba(94,240,142,.5);
  animation:riseUp linear infinite;
  z-index:0;
}
@keyframes riseUp{
  0%{transform:translateY(0) scale(1);opacity:0;}
  12%{opacity:.7;}
  85%{opacity:.35;}
  100%{transform:translateY(-110vh) scale(.4);opacity:0;}
}
.impact-inner{position:relative;z-index:2;}

.impact h2{
  font-weight:700;
  font-size:clamp(2.1rem,4.4vw,3.4rem);
  color:#fff;
  margin-bottom:22px;
}
.impact p.impact-sub{
  color:rgba(255,255,255,.72);
  font-size:16.5px;line-height:1.9;
  max-width:740px;margin:0 auto 70px;
}

.impact-col{
  position:relative;
  padding:0 34px;
  height:100%;
}
/* vertical separators on desktop */
@media (min-width:992px){
  .impact-col.sep::before{
    content:"";
    position:absolute;left:0;top:10px;bottom:10px;
    width:1px;
    background:linear-gradient(180deg,transparent,rgba(255,255,255,.14),transparent);
  }
}
.impact-num{
  width:66px;height:66px;
  border-radius:50%;
  border:1.5px solid rgba(94,240,142,.55);
  background:rgba(94,240,142,.06);
  color:#5ef08e;
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:1.25rem;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:30px;
  position:relative;
  transition:var(--transition);
}
.impact-num::after{
  content:"";position:absolute;inset:-8px;border-radius:50%;
  border:1px solid rgba(94,240,142,.18);
  animation:pulseRing 2.8s ease-out infinite;
}
.impact-col:hover .impact-num{
  background:var(--btn-gradient);
  color:#06220f;transform:scale(1.08);
}
.impact-col h3{color:#fff;font-weight:700;font-size:1.45rem;margin-bottom:16px;}
.impact-col p.imp-text{
  color:rgba(255,255,255,.72);
  font-size:15px;line-height:1.85;
  margin-bottom:30px;
}

.meter-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:10px;
}
.meter-head span.lbl{
  color:rgba(255,255,255,.6);
  font-size:12.5px;font-weight:600;letter-spacing:1.4px;text-transform:uppercase;
}
.meter-head span.pct{
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:1.35rem;
}
.pct.green{color:#3ddc84;}
.pct.lime{color:#8de24e;}
.meter{
  height:7px;border-radius:7px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
  margin-bottom:26px;
}
.meter .fill{
  height:100%;width:0;
  border-radius:7px;
  background:linear-gradient(90deg,#3ddc84,#8de24e);
  box-shadow:0 0 12px rgba(61,220,132,.55);
  transition:width 1.6s cubic-bezier(.25,.8,.25,1);
  position:relative;
}
.meter .fill::after{
  content:"";position:absolute;top:0;bottom:0;right:0;width:26px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.45));
  animation:shimmer 2s ease-in-out infinite;
}
@keyframes shimmer{0%,100%{opacity:.3;}50%{opacity:1;}}

.tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:22px;}
.tag-chip{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.85);
  font-size:13px;font-weight:600;
  padding:8px 18px;border-radius:var(--radius-pill);
  transition:var(--transition);
}
.tag-chip:hover{border-color:rgba(94,240,142,.5);color:#5ef08e;transform:translateY(-2px);}

.sev-badge{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12.5px;font-weight:700;letter-spacing:1.6px;
  padding:9px 22px;border-radius:var(--radius-pill);
  animation:sevPulse 2.4s ease-in-out infinite;
}
.sev-badge::before{content:"";width:7px;height:7px;border-radius:50%;background:currentColor;}
.sev-critical{color:#ffb54d;background:rgba(255,181,77,.10);border:1px solid rgba(255,181,77,.4);}
.sev-severe{color:#ff8f6b;background:rgba(255,143,107,.10);border:1px solid rgba(255,143,107,.4);}
.sev-extreme{color:#ff6b6b;background:rgba(255,107,107,.10);border:1px solid rgba(255,107,107,.45);}
@keyframes sevPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,0);}
  50%{box-shadow:0 0 18px 0 rgba(255,180,120,.18);}
}

.impact-footer{
  margin-top:70px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:34px;
  text-align:center;
}
.impact-legend{
  display:flex;justify-content:center;gap:34px;flex-wrap:wrap;
  margin-bottom:26px;
}
.impact-legend span{
  display:inline-flex;align-items:center;gap:9px;
  color:rgba(255,255,255,.75);font-size:14px;font-weight:600;
}
.impact-legend .dot{width:9px;height:9px;border-radius:50%;}
.dot.d-eco{background:#3ddc84;box-shadow:0 0 10px rgba(61,220,132,.7);}
.dot.d-health{background:#ff8f6b;box-shadow:0 0 10px rgba(255,143,107,.7);}
.dot.d-env{background:#ff6b6b;box-shadow:0 0 10px rgba(255,107,107,.7);}
.impact-footer p.closing{
  color:#eafbf0;font-size:clamp(1.05rem,2vw,1.35rem);
  font-weight:600;margin:0;
}

@media (max-width:991.98px){
  .impact{padding:60px 0 50px;}
  .impact-col{padding:0 8px 44px;}
  .impact p.impact-sub{margin-bottom:50px;}
}

/* ============ OUR PHILOSOPHY ============ */
.philosophy-strip{
  position:relative;
  background:#fdfefc;
  padding:0 0 70px;
}
.phil-card{
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(16,40,20,.06);
  box-shadow:0 24px 54px -18px rgba(16,40,20,.14), 0 2px 10px rgba(16,40,20,.04);
  padding:42px 50px;
  display:flex;
  align-items:center;
  gap:34px;
  transition:var(--transition);
}
.phil-card:hover{transform:translateY(-4px);box-shadow:0 30px 64px -18px rgba(16,40,20,.18), 0 2px 10px rgba(16,40,20,.05);}
.phil-icon{
  flex-shrink:0;
  width:92px;height:92px;
  border-radius:50%;
  background:var(--btn-gradient);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:38px;
  box-shadow:0 12px 26px var(--btn-glow-soft), inset 0 1px 0 rgba(255,255,255,.3);
}
.phil-eyebrow{
  display:block;
  color:#00b84a;
  font-weight:700;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.phil-content h3{
  font-size:clamp(1.35rem,2.2vw,1.75rem);
  font-weight:700;
  color:#0e1c12;
  margin-bottom:12px;
}
.phil-content p{
  color:#5c6b60;
  font-size:15.5px;
  line-height:1.8;
  margin:0;
  max-width:920px;
}
@media (max-width:767.98px){
  .phil-card{flex-direction:column;text-align:center;padding:34px 26px;gap:20px;}
  .phil-content p{max-width:none;}
}

/* ============ PRODUCT RANGE ============ */
.range{
  position:relative;
  background:
    radial-gradient(ellipse 640px 480px at 6% 6%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 640px 480px at 96% 94%, rgba(163,224,90,.12), transparent 60%),
    #f8fcf4;
  padding:50px 0;
  overflow:hidden;
}
.range-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 26px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
}
.range h2{
  font-weight:700;
  font-size:clamp(2.1rem,4.4vw,3.4rem);
  color:#17211a;
  margin:26px 0 20px;
}
.range p.range-sub{
  color:#4a5a50;
  font-size:16.5px;line-height:1.9;
  max-width:720px;margin:0 auto 64px;
}

.range-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  height:100%;
  border:1px solid #eef3ea;
  box-shadow:0 10px 30px rgba(45,90,35,.08);
  transition:var(--transition);
  position:relative;
}
.range-card:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 56px rgba(45,90,35,.18);
  border-color:#cde8ba;
}
.range-img{
  position:relative;
  overflow:hidden;
  aspect-ratio:6/5;
}
.range-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s cubic-bezier(.25,.8,.25,1);
}
.range-card:hover .range-img img{transform:scale(1.09);}
.range-img::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 55%, rgba(6,34,15,.35));
  opacity:0;transition:var(--transition);
}
.range-card:hover .range-img::after{opacity:1;}
.range-img .r-icon{
  position:absolute;top:14px;right:14px;
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(6px);
  color:#1c7d31;font-size:19px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  transform:translateY(-64px);
  transition:var(--transition);
}
.range-card:hover .r-icon{transform:translateY(0);}
.range-body{padding:24px 24px 28px;}
.range-body h3{
  color:#17211a;font-weight:700;font-size:1.25rem;margin-bottom:10px;
  transition:var(--transition);
}
.range-card:hover .range-body h3{color:#1c7d31;}
.range-body p{color:#5a6b60;font-size:14.5px;line-height:1.75;margin:0;}
.range-body .r-line{
  width:38px;height:3px;border-radius:3px;
  background:linear-gradient(90deg,#3ddc84,#1c7d31);
  margin-bottom:14px;
  transition:var(--transition);
}
.range-card:hover .r-line{width:64px;}

.range-pills{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px;
  margin:56px auto 0;
  max-width:1000px;
}
.range-pill{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1px solid #e6efe0;
  color:#22301f;
  font-size:14px;font-weight:600;
  padding:11px 24px;border-radius:var(--radius-pill);
  box-shadow:0 4px 14px rgba(45,90,35,.06);
  transition:var(--transition);
  cursor:default;
}
.range-pill::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:#22b45c;
  box-shadow:0 0 8px rgba(34,180,92,.6);
  transition:var(--transition);
}
.range-pill:hover{
  transform:translateY(-3px);
  border-color:#22b45c;
  color:#1c7d31;
  box-shadow:0 10px 24px rgba(34,180,92,.18);
}

.range-cta{
  display:inline-flex;align-items:center;gap:11px;
  background:var(--btn-gradient);
  color:#fff;font-weight:700;font-size:15.5px;
  padding:16px 34px;border-radius:var(--radius-pill);
  border:none;
  box-shadow:0 12px 30px rgba(34,180,92,.35);
  transition:var(--transition);
  margin-top:52px;
}
.range-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(34,180,92,.5);
  color:#fff;
}
.range-cta i{transition:transform .3s ease;}
.range-cta:hover i{transform:translateX(4px);}

@media (max-width:767.98px){
  .range{padding:60px 0;}
  .range p.range-sub{margin-bottom:44px;}
  .range-pills{margin-top:40px;gap:10px;}
  .range-pill{padding:9px 18px;font-size:13px;}
}

/* ============ CTA ============ */
.cta{
  position:relative;
  background:#f8fcf4;
  padding:50px 0;
  overflow:hidden;
}
.cta-banner{
  position:relative;
  background:linear-gradient(115deg,#06301a 0%, #0a3f22 55%, #0d4a28 100%);
  border-radius:28px;
  padding:48px 54px;
  overflow:hidden;
  box-shadow:0 26px 60px rgba(6,48,26,.35);
}
/* soft glow accents */
.cta-banner::before{
  content:"";
  position:absolute;
  width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle, rgba(94,240,142,.18), transparent 70%);
  top:-200px;right:-120px;
  animation:orbDrift 14s ease-in-out infinite;
}
.cta-banner::after{
  content:"";
  position:absolute;
  width:320px;height:320px;border-radius:50%;
  background:radial-gradient(circle, rgba(163,224,90,.12), transparent 70%);
  bottom:-170px;left:-90px;
  animation:orbDrift 17s ease-in-out infinite reverse;
}
.cta-inner{position:relative;z-index:2;}

.cta-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  color:#5ef08e;
  font-weight:600;font-size:13px;
  letter-spacing:1.6px;text-transform:uppercase;
  margin-bottom:14px;
}
.cta-eyebrow svg{width:16px;height:16px;}
.cta h2{
  color:#fff;font-weight:700;
  font-size:clamp(1.7rem,3.2vw,2.5rem);
  line-height:1.25;
  margin-bottom:12px;
}
.cta h2 .grn{color:#8de24e;}
.cta p.cta-sub{
  color:rgba(255,255,255,.75);
  font-size:15.5px;line-height:1.85;
  max-width:560px;margin:0;
}
.cta-actions{
  display:flex;gap:16px;flex-wrap:wrap;
  justify-content:flex-end;align-items:center;
}
.cta-btn-main{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--btn-gradient);
  color:#06220f;font-weight:700;font-size:15.5px;
  padding:15px 32px;border-radius:var(--radius-pill);
  box-shadow:0 12px 30px rgba(61,220,132,.4);
  transition:var(--transition);
}
.cta-btn-main:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(61,220,132,.55);
  color:#06220f;
}
.cta-btn-main svg{transition:transform .3s ease;}
.cta-btn-main:hover svg{transform:translateX(4px);}
.cta-btn-ghost{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.06);
  color:#fff;font-weight:600;font-size:15.5px;
  padding:15px 32px;border-radius:var(--radius-pill);
  border:1.5px solid rgba(255,255,255,.3);
  transition:var(--transition);
}
.cta-btn-ghost:hover{border-color:#5ef08e;color:#5ef08e;transform:translateY(-3px);}
.cta-btn-main svg,.cta-btn-ghost svg{width:18px;height:18px;flex-shrink:0;}

.cta-trust{
  display:flex;gap:30px;flex-wrap:wrap;
  margin-top:34px;padding-top:26px;
  border-top:1px solid rgba(255,255,255,.12);
}
.cta-trust span{
  display:inline-flex;align-items:center;gap:9px;
  color:rgba(255,255,255,.75);font-size:13.5px;font-weight:600;
}
.cta-trust svg{width:17px;height:17px;color:#5ef08e;flex-shrink:0;}

@media (max-width:991.98px){
  .cta-banner{padding:42px 34px;text-align:center;}
  .cta p.cta-sub{margin:0 auto;}
  .cta-actions{justify-content:center;margin-top:28px;}
  .cta-trust{justify-content:center;}
}
@media (max-width:575.98px){
  .cta{padding:50px 0;}
  .cta-banner{padding:36px 22px;border-radius:22px;}
  .cta-actions{flex-direction:column;align-items:stretch;}
  .cta-btn-main,.cta-btn-ghost{justify-content:center;}
  .cta-trust{gap:14px;}
}




/* ============ FOOTER ============ */
.footer{
  position:relative;
  background:linear-gradient(170deg,#041509 0%, #031107 60%, #020c05 100%);
  color:rgba(255,255,255,.7);
  border-top:1px solid rgba(255,255,255,.07);
  overflow:hidden;
}
.footer .wm{display:none;}
.footer-main{position:relative;z-index:2;padding:46px 0 26px;}
.footer-logo img{height:44px;width:auto;margin-bottom:16px;}
.footer-about{
  font-size:13.5px;line-height:1.75;
  color:rgba(255,255,255,.6);
  max-width:320px;
  margin-bottom:18px;
}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.8);
  display:inline-flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.footer-social a svg{width:15px;height:15px;}
.footer-social a:hover{
  background:var(--btn-gradient);
  border-color:transparent;color:#06220f;
  transform:translateY(-4px);
  box-shadow:0 10px 22px rgba(61,220,132,.35);
}
.footer h6{
  color:#fff;font-weight:700;font-size:14px;
  letter-spacing:1.1px;text-transform:uppercase;
  margin-bottom:16px;
  position:relative;padding-bottom:10px;
}
.footer h6::after{
  content:"";
  position:absolute;left:0;bottom:0;
  width:28px;height:2px;border-radius:3px;
  background:linear-gradient(90deg,#3ddc84,#d9c47a);
}
.footer-links{list-style:none;margin:0;padding:0;}
.footer-links li{margin-bottom:9px;}
.footer-links a{
  color:rgba(255,255,255,.62);
  font-size:14.5px;
  display:inline-flex;align-items:center;gap:9px;
  transition:var(--transition);
}
.footer-links a svg{
  width:12px;height:12px;color:#3ddc84;
  transition:var(--transition);
}
.footer-links a:hover{color:#5ef08e;padding-left:5px;}
.footer-contact li{
  display:flex;align-items:flex-start;gap:12px;
  margin-bottom:14px;
  font-size:14px;color:rgba(255,255,255,.62);
}
.footer-contact .fc-icon{
  width:34px;height:34px;flex-shrink:0;
  border-radius:10px;
  background:rgba(61,220,132,.09);
  border:1px solid rgba(61,220,132,.25);
  color:#5ef08e;
  display:inline-flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.footer-contact .fc-icon svg{width:15px;height:15px;}
.footer-contact li:hover .fc-icon{
  background:var(--btn-gradient);
  color:#06220f;border-color:transparent;
}
.footer-contact strong{
  display:block;color:#fff;font-size:12px;
  letter-spacing:.7px;text-transform:uppercase;margin-bottom:2px;
}
.footer-contact a{color:rgba(255,255,255,.62);transition:var(--transition);}
.footer-contact a:hover{color:#5ef08e;}
.footer-bottom{
  position:relative;z-index:2;
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
  font-size:13px;
  color:rgba(255,255,255,.45);
}
.footer-bottom .grn{color:#5ef08e;}
.footer-bottom a{color:rgba(255,255,255,.55);transition:var(--transition);}
.footer-bottom a:hover{color:#5ef08e;}
.footer-bottom .sep-dot{margin:0 10px;opacity:.4;}
@media (max-width:991.98px){
  .footer-main{padding:40px 0 22px;}
  .footer .col-footer{margin-bottom:24px;}
}

/* ============ INDUSTRIES SLIDER ============ */
.industries{
  position:relative;
  background:
    radial-gradient(ellipse 700px 460px at 92% 8%, rgba(163,224,90,.12), transparent 60%),
    radial-gradient(ellipse 640px 420px at 6% 92%, rgba(217,196,122,.09), transparent 60%),
    linear-gradient(165deg,#f8fcf4 0%, #f2f8ec 100%);
  padding:50px 0;
  overflow:hidden;
}
.ind-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:13.5px;
  letter-spacing:1.4px;text-transform:uppercase;
  padding:11px 28px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
}
.industries h2{
  font-weight:700;
  font-size:clamp(2.1rem,4.4vw,3.4rem);
  color:#17211a;
  margin:26px 0 20px;
}
.industries p.ind-sub{
  color:#4a5a50;
  font-size:16.5px;line-height:1.9;
  max-width:700px;margin:0 auto 60px;
}

.ind-slider{position:relative;}
.ind-viewport{overflow:hidden;padding:10px 4px 30px;}
.ind-track{
  display:flex;
  transition:transform .65s cubic-bezier(.25,.8,.25,1);
  will-change:transform;
}
.ind-slide{
  flex:0 0 25%;
  padding:0 12px;
  box-sizing:border-box;
}
.ind-card{
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:24px;
  padding:40px 26px 36px;
  text-align:center;
  height:100%;
  box-shadow:0 12px 32px rgba(45,90,35,.08);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.ind-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;transition:var(--transition);
}
.ind-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
.ind-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 52px rgba(45,90,35,.16);
  border-color:#dce8cf;
}
.ind-icon{
  width:84px;height:84px;
  margin:0 auto 24px;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:32px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 30px rgba(34,180,92,.3);
  transition:var(--transition);
}
.ind-card:hover .ind-icon{transform:scale(1.1) rotate(-6deg);}
.ind-card h3{
  color:#17211a;font-weight:700;font-size:1.18rem;margin-bottom:12px;
  transition:var(--transition);
}
.ind-card:hover h3{color:#1c7d31;}
.ind-card p{color:#5a6b60;font-size:14px;line-height:1.75;margin:0;}

/* nav arrows */
.ind-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:52px;height:52px;border-radius:50%;
  background:#fff;
  border:1px solid #e3ecd9;
  color:#1c7d31;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:5;
  box-shadow:0 10px 26px rgba(45,90,35,.14);
  transition:var(--transition);
}
.ind-nav svg{width:20px;height:20px;}
.ind-nav:hover{
  background:var(--btn-gradient);
  color:#fff;border-color:transparent;
  box-shadow:0 14px 32px rgba(123,193,66,.4);
}
.ind-prev{left:-14px;}
.ind-next{right:-14px;}

/* dots */
.ind-dots{
  display:flex;justify-content:center;gap:10px;
  margin-top:14px;
}
.ind-dot{
  width:10px;height:10px;border-radius:10px;
  background:#d5e5c8;
  border:none;cursor:pointer;padding:0;
  transition:var(--transition);
}
.ind-dot.active{
  width:32px;
  background:linear-gradient(90deg,var(--eco-green),#5a9c2f);
  box-shadow:0 3px 10px rgba(123,193,66,.45);
}

@media (max-width:1199.98px){
  .ind-slide{flex:0 0 33.3333%;}
}
@media (max-width:991.98px){
  .ind-slide{flex:0 0 50%;}
}
@media (max-width:767.98px){
  .industries{padding:60px 0;}
  .industries p.ind-sub{margin-bottom:44px;}
  .ind-slide{flex:0 0 100%;}
  .ind-prev{left:2px;}
  .ind-next{right:2px;}
}

/* ============ SCROLL PROGRESS LINE ============ */
.scroll-progress{
  position:fixed;
  top:0;left:0;right:0;
  height:3.5px;
  z-index:2000;
  background:rgba(255,255,255,.06);
  pointer-events:none;
}
.scroll-progress .sp-fill{
  height:100%;width:0;
  background:linear-gradient(90deg,#1c9e50,#3ddc84 60%,#8de24e);
  box-shadow:0 0 12px rgba(61,220,132,.7), 0 0 4px rgba(61,220,132,.9);
  border-radius:0 4px 4px 0;
  position:relative;
}
/* glowing dot at the tip */
.scroll-progress .sp-fill::after{
  content:"";
  position:absolute;right:-4px;top:50%;
  width:9px;height:9px;border-radius:50%;
  transform:translateY(-50%);
  background:#8de24e;
  box-shadow:0 0 14px 3px rgba(141,226,78,.8);
}

/* ============ UNIFIED BUTTON THEME (matches header "Get in Touch") ============
   Premium deep-green gradient (per client reference swatch) — replaces the
   previous bright lime-green button fill sitewide. */
:root{
  --btn-gradient: linear-gradient(180deg, #1adb5e 0%, #00b84a 55%, #009f3f 100%);
  --btn-gradient-hover: linear-gradient(180deg, #33e274 0%, #10c957 55%, #00ad46 100%);
  --btn-glow: rgba(0,184,74,.5);
  --btn-glow-soft: rgba(0,184,74,.36);
  --btn-glow-strong: rgba(0,184,74,.68);
}
.btn-cta,
.btn-cta-lg,
.btn-solid-green,
.range-cta,
.gf-submit,
.cf-submit,
.cta-btn-main,
.badge-etg{
  background:var(--btn-gradient) !important;
  color:#fff !important;
  box-shadow:0 8px 22px var(--btn-glow-soft);
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
/* .back-top is position:fixed (see base rule) — themed separately so that
   declaration is never overridden back to static/relative here */
.back-top{
  background:var(--btn-gradient) !important;
  color:#fff !important;
  box-shadow:0 8px 22px var(--btn-glow-soft);
  overflow:hidden;
  isolation:isolate;
}
.btn-cta:hover,
.btn-cta-lg:hover,
.btn-solid-green:hover,
.range-cta:hover,
.gf-submit:hover,
.cf-submit:hover,
.cta-btn-main:hover,
.back-top:hover{
  background:var(--btn-gradient-hover) !important;
  color:#fff !important;
  box-shadow:0 14px 32px var(--btn-glow);
  transform:translateY(-3px);
}
/* stylish shine sweep on hover */
.btn-cta::after,
.btn-cta-lg::after,
.btn-solid-green::after,
.range-cta::after,
.gf-submit::after,
.cf-submit::after,
.cta-btn-main::after,
.back-top::after{
  content:"";
  position:absolute;top:0;bottom:0;
  left:-80%;width:55%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.28),transparent);
  transform:skewX(-22deg);
  transition:left .55s cubic-bezier(.25,.8,.25,1);
  z-index:-1;
  pointer-events:none;
}
.btn-cta:hover::after,
.btn-cta-lg:hover::after,
.btn-solid-green:hover::after,
.range-cta:hover::after,
.gf-submit:hover::after,
.cf-submit:hover::after,
.cta-btn-main:hover::after,
.back-top:hover::after{
  left:130%;
}
/* soft pulsing glow while hovered */
@keyframes btnGlow{
  0%,100%{box-shadow:0 14px 32px var(--btn-glow);}
  50%{box-shadow:0 14px 40px var(--btn-glow-strong);}
}
.btn-cta:hover,
.btn-cta-lg:hover,
.btn-solid-green:hover,
.range-cta:hover,
.gf-submit:hover,
.cf-submit:hover,
.cta-btn-main:hover{
  animation:btnGlow 1.6s ease-in-out infinite;
}
/* outline buttons: fill with the same gradient on hover — every button on the
   site now fills with the exact same gradient, no more mismatched greens */
.btn-outline-green:hover,
.cta-btn-ghost:hover,
.btn-outline-white:hover,
.brand-btn:hover,
.offcanvas-eco .brand-btn:hover{
  background:var(--btn-gradient) !important;
  border-color:transparent !important;
  color:#fff !important;
  box-shadow:0 12px 28px var(--btn-glow);
}
.btn-outline-white:hover,
.brand-btn:hover{transform:translateY(-3px);}
.brand-btn:hover svg,
.offcanvas-eco .brand-btn:hover svg{color:#fff;}

/* ============ ANGLED TAB BUTTON SHAPE — same silhouette/hover-glow as the
   reference nav bar, applied sitewide using the site's own green gradient
   (not the reference's black/cyan). Circular controls (back-top, play-btn,
   hamburger, slider arrows) and label chips are left round on purpose. */
.btn-cta,
.btn-cta-lg,
.btn-solid-green,
.btn-outline-green,
.btn-outline-white,
.brand-btn,
.cf-submit,
.gf-submit,
.cta-btn-main,
.cta-btn-ghost,
.range-cta{
  position:relative;
  border-radius:8px !important;
  clip-path:polygon(13px 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
}
.btn-cta:hover,
.btn-cta-lg:hover,
.btn-solid-green:hover,
.btn-outline-green:hover,
.btn-outline-white:hover,
.brand-btn:hover,
.cf-submit:hover,
.gf-submit:hover,
.cta-btn-main:hover,
.cta-btn-ghost:hover,
.range-cta:hover{
  box-shadow:0 16px 30px -6px var(--btn-glow-strong), 0 4px 14px var(--btn-glow-soft) !important;
}


/* Premium leaf icon (inline SVG, replaces the old bootstrap-icons mask hack
   — bootstrap-icons has no "leaf" glyph at all, and the previous hand-drawn
   mask path rendered as a blurry blob at small sizes) */
.icon-leaf{
  width:1em;height:1em;
  display:inline-block;
  vertical-align:-0.14em;
  flex-shrink:0;
}

/* Header social icons */
.header-social{display:flex;align-items:center;gap:8px;}
.header-social a{
  width:34px;height:34px;border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.05);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.header-social a svg{width:14px;height:14px;}
.header-social a:hover{
  background:var(--btn-gradient);
  border-color:transparent;
  transform:translateY(-3px);
  box-shadow:0 8px 18px rgba(123,193,66,.4);
}
@media (max-width:575.98px){
  .header-social{gap:6px;}
  .header-social a{width:30px;height:30px;}
  .header-social a svg{width:12px;height:12px;}
}

/* Offcanvas brands label */
.oc-brands-label{
  color:#8a978d;
  font-size:12px;font-weight:700;
  letter-spacing:2px;text-transform:uppercase;
  margin-bottom:12px;
}

/* Footer brand buttons */
.brand-btns{display:flex;flex-wrap:wrap;gap:12px;margin-top:14px;}
.brand-btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:11px 22px;border-radius:var(--radius-pill);
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  color:#fff;font-size:13.5px;font-weight:600;
  transition:var(--transition);
}
.brand-btn svg{width:15px;height:15px;color:#5ef08e;transition:var(--transition);}
.brand-btn:hover{
  background:var(--btn-gradient);
  border-color:transparent;color:#fff;
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(123,193,66,.4);
}
.brand-btn:hover svg{color:#fff;}

/* ============ RESPONSIVE ============ */
/* Full HD (1920x1080) optimization */
@media (min-width:1600px){
  .container{max-width:1560px;}
  .hero{padding-top:160px;}
  .hero h1{font-size:4.6rem;}
  .hero p.lead{font-size:1.2rem;max-width:580px;}
  .about-etg h2{font-size:2.6rem;}
  .about-etg p.about-text,.mini-stats{max-width:560px;}
}
@media (max-width:991.98px){
  .hero{padding-top:120px;text-align:center;background-attachment:scroll;}
  .hero p.lead{margin-left:auto;margin-right:auto;}
  .hero-buttons{justify-content:center;}
  .eco-badge{margin-inline:auto;}
}
@media (max-width:767.98px){
  .stats-bar{border-radius:18px;padding:20px 16px;}
  .stat-item{flex-direction:column;text-align:center;gap:8px;}
  .stat-item h4{font-size:1.15rem;}
}
@media (max-width:575.98px){
  .hero{padding-top:110px;}
  .hero-buttons{gap:14px;}
  .btn-cta-lg{padding:14px 24px;font-size:14.5px;}
}
@media (max-width:429.98px){
  .hero h1{font-size:1.85rem;}
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(ellipse 900px 600px at 50% 0%, rgba(255,196,92,.14), transparent 55%),
    linear-gradient(105deg, rgba(4,12,6,.93) 0%, rgba(6,18,9,.75) 40%, rgba(6,18,9,.35) 75%, rgba(4,12,6,.25) 100%),
    url('about-bg.jpg') center/cover no-repeat;
  padding:170px 0 90px;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:30%;
  background:linear-gradient(180deg, transparent 0%, rgba(4,12,6,.75) 100%);
  pointer-events:none;
}
.page-hero .hero-glow{position:absolute;}
.ph-content{position:relative;z-index:2;}

.ph-breadcrumb{
  display:inline-flex;align-items:center;gap:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  padding:10px 24px;border-radius:var(--radius-pill);
  font-size:13.5px;font-weight:600;
  margin-bottom:28px;
  opacity:0;animation:fadeUp .8s ease forwards;
}
.ph-breadcrumb a{color:rgba(255,255,255,.7);transition:var(--transition);}
.ph-breadcrumb a:hover{color:#5ef08e;}
.ph-breadcrumb .sep{color:rgba(255,255,255,.35);}
.ph-breadcrumb .cur{color:#5ef08e;}

.page-hero h1{
  font-weight:800;
  font-size:clamp(2.2rem,4.8vw,3.8rem);
  line-height:1.12;
  color:#fff;
  margin-bottom:20px;
  opacity:0;animation:fadeUp .8s .12s ease forwards;
}
.page-hero h1 .accent{
  background:linear-gradient(100deg,var(--eco-green-light),var(--eco-green) 60%,#e9ff8f);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.page-hero p.ph-sub{
  color:rgba(255,255,255,.78);
  font-size:clamp(1rem,1.5vw,1.12rem);
  line-height:1.9;
  max-width:640px;
  margin-bottom:38px;
  opacity:0;animation:fadeUp .8s .24s ease forwards;
}

/* quick fact chips */
.ph-chips{
  display:flex;flex-wrap:wrap;gap:14px;
  opacity:0;animation:fadeUp .8s .36s ease forwards;
}
.ph-chip{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  color:#fff;font-size:14px;font-weight:600;
  padding:12px 22px;border-radius:var(--radius-pill);
  transition:var(--transition);
}
.ph-chip:hover{border-color:rgba(94,240,142,.5);transform:translateY(-3px);}
.ph-chip i{color:#5ef08e;font-size:16px;}

@media (max-width:991.98px){
  .page-hero{min-height:64vh;padding:150px 0 70px;text-align:center;background-attachment:scroll;}
  .page-hero p.ph-sub{margin-inline:auto;}
  .ph-chips{justify-content:center;}
}
@media (max-width:575.98px){
  .page-hero{padding:130px 0 60px;}
}

/* ============ WHO WE ARE (About page) ============ */
.whoweare{
  position:relative;
  background:
    radial-gradient(ellipse 640px 460px at 94% 8%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 560px 420px at 4% 92%, rgba(217,196,122,.08), transparent 60%),
    #fdfefc;
  padding:80px 0;
  overflow:hidden;
}
.wwa-img{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(23,60,25,.18);
  transition:var(--transition);
}
.wwa-img img{width:100%;height:auto;display:block;transition:transform .7s cubic-bezier(.25,.8,.25,1);}
.wwa-img:hover img{transform:scale(1.04);}
.wwa-img::after{
  content:"";
  position:absolute;inset:0;border-radius:28px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events:none;
}
/* floating founded badge */
.wwa-founded{
  position:absolute;left:-18px;bottom:26px;
  display:flex;align-items:center;gap:14px;
  background:#fff;
  border-radius:18px;
  padding:16px 24px 16px 16px;
  box-shadow:0 18px 44px rgba(23,60,25,.22);
  z-index:3;
  animation:chipFloat 4.5s ease-in-out infinite;
}
@keyframes chipFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
.wwa-founded .wf-icon{
  width:46px;height:46px;border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:20px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(123,193,66,.4);
}
.wwa-founded strong{display:block;color:#17211a;font-size:15px;font-weight:700;line-height:1.2;}
.wwa-founded span{color:#5a6b60;font-size:12.5px;}

.wwa-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 24px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
  margin-bottom:24px;
}
.wwa-badge i{font-size:15px;}
.whoweare h2{
  font-weight:700;
  font-size:clamp(2rem,3.8vw,3rem);
  line-height:1.16;
  color:#17211a;
  margin-bottom:22px;
}
.whoweare h2 .grn{color:#22b45c;}
.whoweare p.wwa-text{
  color:#3d4c43;
  font-size:16px;
  line-height:1.95;
  margin-bottom:20px;
  max-width:600px;
}
.wwa-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-top:10px;}
.wwa-btn-ghost{
  display:inline-flex;align-items:center;gap:10px;
  background:#fff;
  color:#17211a;font-weight:600;font-size:15px;
  padding:14px 30px;border-radius:var(--radius-pill);
  border:1.5px solid #e2ecd9;
  transition:var(--transition);
}
.wwa-btn-ghost:hover{
  background:var(--btn-gradient);
  color:#fff;border-color:transparent;
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(123,193,66,.45);
}

@media (max-width:991.98px){
  .whoweare{padding:60px 0;}
  .wwa-img{max-width:560px;margin:0 auto 40px;}
  .wwa-founded{left:8px;}
}
@media (max-width:575.98px){
  .wwa-founded{padding:12px 18px 12px 12px;bottom:16px;}
  .wwa-founded .wf-icon{width:40px;height:40px;font-size:17px;}
  .wwa-buttons{flex-direction:column;}
  .wwa-buttons .btn-cta-lg,.wwa-buttons .wwa-btn-ghost{justify-content:center;}
}

/* ============ WHO WE ARE — premium upgrade ============ */
/* layered luxury frame behind the image */
.wwa-frame{position:relative;}
.wwa-frame::before{
  content:"";
  position:absolute;inset:18px -18px -18px 18px;
  border-radius:32px;
  background:linear-gradient(135deg, rgba(123,193,66,.16), rgba(217,196,122,.14));
  z-index:0;
}
.wwa-frame::after{
  content:"";
  position:absolute;top:-14px;right:-14px;
  width:120px;height:120px;
  border-top:2.5px solid #c9b96e;
  border-right:2.5px solid #c9b96e;
  border-radius:0 28px 0 0;
  opacity:.65;
  z-index:2;
  transition:var(--transition);
}
.wwa-frame:hover::after{width:150px;height:150px;opacity:1;}
.wwa-img{position:relative;z-index:1;}
/* gradient ring on the image */
.wwa-img::before{
  content:"";
  position:absolute;inset:0;border-radius:28px;z-index:2;
  padding:1.5px;
  background:linear-gradient(135deg,rgba(123,193,66,.7),rgba(217,196,122,.6) 55%,rgba(123,193,66,.7));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
/* second floating chip (top-right) */
.wwa-chip2{
  position:absolute;right:-14px;top:26px;
  display:flex;align-items:center;gap:10px;
  background:rgba(6,34,15,.85);
  backdrop-filter:blur(10px);
  border:1px solid rgba(94,240,142,.35);
  color:#c9f5d8;
  font-size:13px;font-weight:600;
  padding:11px 20px;border-radius:var(--radius-pill);
  box-shadow:0 14px 30px rgba(0,0,0,.3);
  z-index:3;
  animation:chipFloat 5s 1s ease-in-out infinite;
}
.wwa-chip2 i{color:#5ef08e;font-size:15px;}

/* ornamental mini divider under badge */
.wwa-orn{
  display:flex;align-items:center;gap:12px;
  margin:0 0 18px;
}
.wwa-orn::before{content:"";height:1.5px;width:70px;background:linear-gradient(90deg,#7bc142,#c9b96e);}
.wwa-orn .wo-gem{
  width:8px;height:8px;border-radius:2px;
  background:linear-gradient(135deg,#7bc142,#c9b96e);
  transform:rotate(45deg);
  box-shadow:0 0 10px rgba(123,193,66,.5);
}
/* premium checklist */
.wwa-points{
  display:flex;flex-wrap:wrap;gap:12px 26px;
  margin:6px 0 26px;
  padding:0;list-style:none;
}
.wwa-points li{
  display:inline-flex;align-items:center;gap:10px;
  color:#22301f;font-size:14.5px;font-weight:600;
  transition:var(--transition);
}
.wwa-points li:hover{color:#1c7d31;transform:translateX(3px);}
.wwa-points .wp-chk{
  width:24px;height:24px;flex-shrink:0;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:12px;
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(123,193,66,.35);
}
@media (max-width:991.98px){
  .wwa-frame::before{inset:14px -10px -14px 10px;}
  .wwa-chip2{right:6px;}
}

/* ============ JOURNEY TIMELINE (About page) ============ */
.journey{
  position:relative;
  background:
    radial-gradient(ellipse 800px 540px at 50% -8%, rgba(61,220,132,.10), transparent 60%),
    radial-gradient(ellipse 640px 460px at 96% 100%, rgba(61,220,132,.07), transparent 60%),
    linear-gradient(165deg,#05200f 0%, #0a3019 50%, #072815 100%);
  padding:80px 0 90px;
  overflow:hidden;
}
.journey-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:rgba(94,240,142,.08);
  border:1px solid rgba(94,240,142,.3);
  color:#5ef08e;
  font-weight:600;font-size:13.5px;
  letter-spacing:1.6px;text-transform:uppercase;
  padding:10px 26px;border-radius:var(--radius-pill);
  backdrop-filter:blur(8px);
}
.journey h2{
  font-weight:700;
  font-size:clamp(2.1rem,4.2vw,3.3rem);
  color:#fff;
  margin:26px 0 18px;
}
.journey p.journey-sub{
  color:rgba(255,255,255,.72);
  font-size:16px;line-height:1.9;
  max-width:640px;margin:0 auto 70px;
}

.timeline{position:relative;max-width:1000px;margin:0 auto;}
/* glowing center line */
.timeline::before{
  content:"";
  position:absolute;top:0;bottom:0;left:50%;
  width:2px;transform:translateX(-50%);
  background:linear-gradient(180deg, transparent, rgba(94,240,142,.55) 8%, rgba(94,240,142,.55) 92%, transparent);
  box-shadow:0 0 14px rgba(94,240,142,.35);
}
.tl-item{
  position:relative;
  width:50%;
  padding:0 54px 56px 0;
}
.tl-item:nth-child(even){
  left:50%;
  padding:0 0 56px 54px;
}
.tl-item:last-child{padding-bottom:8px;}
/* node dot */
.tl-dot{
  position:absolute;top:26px;right:-9px;
  width:18px;height:18px;border-radius:50%;
  background:var(--btn-gradient);
  border:3px solid #0a3019;
  box-shadow:0 0 0 3px rgba(94,240,142,.35), 0 0 18px rgba(94,240,142,.6);
  z-index:2;
  animation:pulseGlow 3s ease-in-out infinite;
}
.tl-item:nth-child(even) .tl-dot{right:auto;left:-9px;}
/* connector from card to line */
.tl-item::after{
  content:"";
  position:absolute;top:34px;right:9px;
  width:45px;height:1.5px;
  background:linear-gradient(90deg, rgba(94,240,142,.4), rgba(94,240,142,.05));
}
.tl-item:nth-child(even)::after{
  right:auto;left:9px;
  background:linear-gradient(90deg, rgba(94,240,142,.05), rgba(94,240,142,.4));
  transform:scaleX(-1);
}

.tl-card{
  position:relative;
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.11);
  border-radius:22px;
  padding:30px 30px 26px;
  backdrop-filter:blur(10px);
  transition:var(--transition);
  overflow:hidden;
}
.tl-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:2.5px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;transition:var(--transition);
}
.tl-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
.tl-card:hover{
  transform:translateY(-6px);
  border-color:rgba(94,240,142,.4);
  box-shadow:0 22px 46px rgba(0,0,0,.35);
}
.tl-year{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--btn-gradient);
  color:#fff;
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:15px;
  padding:7px 20px;border-radius:var(--radius-pill);
  box-shadow:0 8px 20px rgba(123,193,66,.35);
  margin-bottom:16px;
}
.tl-card h3{
  color:#fff;font-weight:700;font-size:1.25rem;margin-bottom:10px;
}
.tl-card p{
  color:rgba(255,255,255,.7);
  font-size:14.5px;line-height:1.8;margin:0;
}
/* big ghost year in card corner */
.tl-ghost{
  position:absolute;right:18px;bottom:6px;
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:3.2rem;
  color:#fff;opacity:.045;
  pointer-events:none;
  transition:var(--transition);
}
.tl-card:hover .tl-ghost{opacity:.1;color:#5ef08e;}

@media (max-width:991.98px){
  .journey{padding:60px 0 70px;}
  .journey p.journey-sub{margin-bottom:50px;}
  .timeline::before{left:16px;transform:none;}
  .tl-item,
  .tl-item:nth-child(even){
    width:100%;left:0;
    padding:0 0 40px 52px;
  }
  .tl-dot,
  .tl-item:nth-child(even) .tl-dot{right:auto;left:8px;}
  .tl-item::after,
  .tl-item:nth-child(even)::after{
    right:auto;left:26px;width:26px;
    background:linear-gradient(90deg, rgba(94,240,142,.4), rgba(94,240,142,.05));
    transform:none;
  }
}

/* ============ NATURAL INGREDIENTS (About page) ============ */
.ingredients{
  position:relative;
  background:
    radial-gradient(ellipse 640px 460px at 6% 10%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 600px 440px at 96% 90%, rgba(217,196,122,.09), transparent 60%),
    #f8fcf4;
  padding:80px 0;
  overflow:hidden;
}
.ing-img{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(23,60,25,.18);
}
.ing-img img{width:100%;height:auto;display:block;transition:transform .7s cubic-bezier(.25,.8,.25,1);}
.ing-img:hover img{transform:scale(1.04);}
/* lab-tested tag (top-left, over image) */
.ing-tag{
  position:absolute;top:18px;left:18px;
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(6,34,15,.88);
  backdrop-filter:blur(10px);
  border:1px solid rgba(94,240,142,.3);
  color:#fff;font-size:13.5px;font-weight:600;
  padding:10px 22px 10px 12px;border-radius:var(--radius-pill);
  z-index:3;
}
.ing-tag .it-flask{
  width:30px;height:30px;border-radius:50%;
  background:rgba(94,240,142,.15);
  color:#5ef08e;
  display:inline-flex;align-items:center;justify-content:center;
}
.ing-tag .it-flask svg{width:15px;height:15px;}
/* plant-based floating badge (bottom-right, over image) */
.ing-float{
  position:absolute;right:-16px;bottom:-18px;
  display:flex;align-items:center;gap:14px;
  background:#fff;
  border-radius:20px;
  padding:18px 26px 18px 18px;
  box-shadow:0 18px 44px rgba(23,60,25,.22);
  z-index:3;
  animation:chipFloat 4.5s ease-in-out infinite;
}
.ing-float .if-icon{
  width:52px;height:52px;border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:22px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(123,193,66,.4);
}
.ing-float strong{display:block;color:#17211a;font-size:16px;font-weight:700;line-height:1.25;}
.ing-float span{color:#5a6b60;font-size:13px;}

.ing-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 24px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
  margin-bottom:24px;
}
.ingredients h2{
  font-weight:700;
  font-size:clamp(2rem,3.8vw,3rem);
  line-height:1.16;
  color:#17211a;
  margin-bottom:22px;
}
.ingredients h2 .grn{color:#22b45c;}
.ingredients p.ing-text{
  color:#3d4c43;
  font-size:15.5px;
  line-height:1.95;
  margin-bottom:26px;
}
/* feature checklist 2-col */
.ing-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
  margin-bottom:30px;
}
.ing-feat{
  display:flex;align-items:center;gap:11px;
  color:#22301f;font-size:15px;font-weight:600;
  transition:var(--transition);
}
.ing-feat:hover{color:#1c7d31;transform:translateX(4px);}
.ing-feat .if-dot{
  width:30px;height:30px;flex-shrink:0;
  border-radius:50%;
  background:#e4f3d8;
  color:#1c7d31;font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.ing-feat:hover .if-dot{
  background:var(--btn-gradient);
  color:#fff;transform:rotate(-8deg) scale(1.1);
}
/* material cards 2x2 */
.ing-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.ing-card{
  display:flex;align-items:center;gap:15px;
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 8px 22px rgba(45,90,35,.06);
  transition:var(--transition);
}
.ing-card:hover{
  transform:translateY(-4px);
  border-color:#cde8ba;
  box-shadow:0 16px 34px rgba(45,90,35,.14);
}
.ing-card .ic-icon{
  width:46px;height:46px;flex-shrink:0;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:19px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px rgba(123,193,66,.35);
  transition:var(--transition);
}
.ing-card:hover .ic-icon{transform:scale(1.1) rotate(-6deg);}
.ing-card em{
  display:block;font-style:normal;
  color:#2f8f3f;font-size:11.5px;font-weight:700;
  letter-spacing:1.4px;text-transform:uppercase;
  margin-bottom:3px;
}
.ing-card strong{color:#17211a;font-size:15px;font-weight:700;}

@media (max-width:991.98px){
  .ingredients{padding:60px 0;}
  .ing-img{max-width:560px;margin:0 auto;}
  .ing-wrap{max-width:560px;margin:0 auto 52px;}
  .ing-float{right:6px;bottom:-16px;}
}
@media (max-width:575.98px){
  .ing-features{grid-template-columns:1fr;}
  .ing-cards{grid-template-columns:1fr;}
  .ing-float{padding:14px 20px 14px 14px;}
  .ing-float .if-icon{width:44px;height:44px;font-size:19px;}
}

/* ============ CERTIFICATIONS (Trust & Compliance) ============ */
.certs{
  position:relative;
  background:
    radial-gradient(ellipse 640px 440px at 8% 12%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 600px 420px at 94% 88%, rgba(217,196,122,.09), transparent 60%),
    #fdfefc;
  padding:80px 0;
  overflow:hidden;
}
.certs-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 26px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
}
.certs h2{
  font-weight:700;
  font-size:clamp(2rem,4vw,3.1rem);
  color:#17211a;
  margin:26px 0 18px;
}
.certs p.certs-sub{
  color:#4a5a50;
  font-size:16px;line-height:1.9;
  max-width:640px;margin:0 auto 56px;
}
.cert-card{
  display:flex;align-items:center;gap:16px;
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:20px;
  padding:22px 26px;
  height:100%;
  box-shadow:0 12px 30px rgba(45,90,35,.08);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.cert-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;transition:var(--transition);
}
.cert-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
.cert-card:hover{
  transform:translateY(-8px);
  border-color:#cde8ba;
  box-shadow:0 26px 50px rgba(45,90,35,.16);
}
.cert-seal{
  width:56px;height:56px;flex-shrink:0;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:24px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px rgba(34,180,92,.35);
  transition:var(--transition);
}
.cert-card:hover .cert-seal{transform:scale(1.1) rotate(12deg);}
.cert-card h4{
  color:#17211a;font-weight:700;font-size:1.05rem;margin:0;
  transition:var(--transition);
}
.cert-card:hover h4{color:#1c7d31;}

@media (max-width:767.98px){
  .certs{padding:60px 0;}
  .certs p.certs-sub{margin-bottom:44px;}
}

/* ============ COMPARISON TABLE ============ */
.comparison{
  position:relative;
  background:
    radial-gradient(ellipse 640px 440px at 92% 6%, rgba(163,224,90,.10), transparent 60%),
    #f8fcf4;
  padding:80px 0;
  overflow:hidden;
}
.comparison h2{
  font-weight:700;
  font-size:clamp(2rem,4vw,3.1rem);
  color:#17211a;
  margin:26px 0 18px;
}
.comparison p.comp-sub{
  color:#4a5a50;
  font-size:16px;line-height:1.9;
  max-width:660px;margin:0 auto 50px;
}

.comp-wrap{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 64px rgba(45,90,35,.14);
  border:1px solid #eef0e4;
}
.comp-scroll{overflow-x:auto;}
.comp-table{width:100%;border-collapse:collapse;min-width:680px;}
.comp-table thead th{
  background:linear-gradient(120deg,#06301a,#0a3f22 65%,#0d4a28);
  color:rgba(255,255,255,.82);
  font-weight:700;font-size:14px;
  text-align:left;
  padding:22px 26px;
  position:relative;
}
.comp-table thead th:first-child{color:#fff;}
.comp-table thead th.col-recommended{
  color:#fff;
  position:relative;
}
.comp-table thead th.col-recommended .cr-brand{
  display:block;font-size:11px;font-weight:600;
  color:#5ef08e;letter-spacing:.6px;margin-top:3px;
}
.comp-recommended-tag{
  position:absolute;top:14px;right:20px;
  background:#5ef08e;color:#06220f;
  font-size:10px;font-weight:800;letter-spacing:1px;
  padding:5px 12px;border-radius:20px;
  box-shadow:0 6px 14px rgba(94,240,142,.4);
}
.comp-table tbody td{
  padding:20px 26px;
  font-size:14.5px;
  color:#33413a;
  border-bottom:1px solid #eef2ea;
  vertical-align:middle;
}
.comp-table tbody tr:last-child td{border-bottom:none;}
.comp-table tbody td:first-child{font-weight:700;color:#17211a;}
.comp-table tbody tr:nth-child(even) td.col-comp{background:#f2f9ec;}
.comp-table tbody td.col-comp{
  font-weight:700;color:#178a44;
  background:#f7fcf3;
}
.comp-table tbody tr:hover td{background:#fbfdf8;}
.comp-table tbody tr:hover td.col-comp{background:#eef8e4;}

.comp-flag{display:inline-flex;align-items:center;gap:9px;}
.comp-flag svg{width:16px;height:16px;flex-shrink:0;}
.cf-bad svg{color:#e5484d;}
.cf-warn svg{color:#e0972b;}
.cf-good svg{color:#22b45c;}

.comp-banner{
  position:relative;
  background:linear-gradient(120deg,#06301a 0%, #0a3f22 55%, #0d4a28 100%);
  border-radius:24px;
  padding:32px 40px;
  margin-top:32px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
  box-shadow:0 26px 56px rgba(6,48,26,.32);
  overflow:hidden;
}
.comp-banner::before{
  content:"";
  position:absolute;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle, rgba(94,240,142,.16), transparent 70%);
  top:-160px;right:-80px;
  animation:orbDrift 14s ease-in-out infinite;
}
.comp-banner-left{
  position:relative;z-index:2;
  display:flex;align-items:center;gap:18px;
}
.comp-banner .cb-icon{
  width:54px;height:54px;flex-shrink:0;
  border-radius:50%;
  background:rgba(94,240,142,.14);
  border:1px solid rgba(94,240,142,.4);
  color:#5ef08e;font-size:23px;
  display:flex;align-items:center;justify-content:center;
}
.comp-banner h4{color:#fff;font-weight:700;font-size:1.15rem;margin-bottom:4px;}
.comp-banner p{color:rgba(255,255,255,.7);font-size:14px;margin:0;max-width:420px;}
.comp-banner .cta-btn-main{position:relative;z-index:2;}

@media (max-width:767.98px){
  .comparison{padding:60px 0;}
  .comparison p.comp-sub{margin-bottom:40px;}
  .comp-banner{padding:28px 24px;flex-direction:column;text-align:center;}
  .comp-banner-left{flex-direction:column;text-align:center;}
}

/* ============ SWOT ANALYSIS ============ */
.swot{
  position:relative;
  background:
    radial-gradient(ellipse 700px 480px at 8% 8%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 640px 440px at 96% 92%, rgba(217,196,122,.08), transparent 60%),
    #fdfefc;
  padding:80px 0;
  overflow:hidden;
}
.swot h2{
  font-weight:700;
  font-size:clamp(2rem,4vw,3.1rem);
  color:#17211a;
  margin:26px 0 18px;
}
.swot p.swot-sub{
  color:#4a5a50;
  font-size:16px;line-height:1.9;
  max-width:660px;margin:0 auto 56px;
}

.swot-card{
  position:relative;
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:22px;
  padding:34px 32px 30px;
  height:100%;
  box-shadow:0 14px 34px rgba(45,90,35,.08);
  overflow:hidden;
  transition:var(--transition);
}
/* top accent bar per type, animated width on reveal */
.swot-card::before{
  content:"";
  position:absolute;top:0;left:0;height:4px;width:0;
  border-radius:0 4px 0 0;
  transition:width 1s cubic-bezier(.25,.8,.25,1) .1s;
}
.swot-card.in-view::before{width:100%;}
.swot-card.sc-s::before{background:linear-gradient(90deg,#3ddc84,#1c9e50);}
.swot-card.sc-w::before{background:linear-gradient(90deg,#ff9d42,#d97218);}
.swot-card.sc-o::before{background:linear-gradient(90deg,#4fb4ff,#1c7ed6);}
.swot-card.sc-t::before{background:linear-gradient(90deg,#ff6b6b,#d63b3b);}

.swot-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 54px rgba(45,90,35,.16);
  border-color:#e2e8d8;
}
/* corner glow tint matching card type */
.swot-card::after{
  content:"";
  position:absolute;top:-60px;right:-60px;
  width:180px;height:180px;border-radius:50%;
  opacity:0;transition:var(--transition);
  pointer-events:none;
}
.swot-card.sc-s::after{background:radial-gradient(circle, rgba(61,220,132,.16), transparent 70%);}
.swot-card.sc-w::after{background:radial-gradient(circle, rgba(255,157,66,.16), transparent 70%);}
.swot-card.sc-o::after{background:radial-gradient(circle, rgba(79,180,255,.16), transparent 70%);}
.swot-card.sc-t::after{background:radial-gradient(circle, rgba(255,107,107,.16), transparent 70%);}
.swot-card:hover::after{opacity:1;}

.swot-letter{
  width:56px;height:56px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:1.4rem;
  font-family:'Nexa','Poppins',sans-serif;
  margin-bottom:22px;
  transition:var(--transition);
  position:relative;z-index:1;
}
.swot-card:hover .swot-letter{transform:scale(1.08) rotate(-6deg);}
.sc-s .swot-letter{background:var(--btn-gradient);box-shadow:0 12px 26px rgba(61,220,132,.35);}
.sc-w .swot-letter{background:linear-gradient(135deg,#ff9d42,#d97218);box-shadow:0 12px 26px rgba(255,157,66,.35);}
.sc-o .swot-letter{background:linear-gradient(135deg,#4fb4ff,#1c7ed6);box-shadow:0 12px 26px rgba(79,180,255,.35);}
.sc-t .swot-letter{background:linear-gradient(135deg,#ff6b6b,#d63b3b);box-shadow:0 12px 26px rgba(255,107,107,.35);}

.swot-card h3{
  color:#17211a;font-weight:700;font-size:1.3rem;margin-bottom:12px;
  position:relative;z-index:1;
}
.swot-card p{
  color:#5a6b60;font-size:14.5px;line-height:1.85;margin:0;
  position:relative;z-index:1;
}

/* Strategic positioning banner */
.swot-banner{
  position:relative;
  background:linear-gradient(150deg,#06301a 0%, #0a3f22 55%, #0d4a28 100%);
  border-radius:26px;
  padding:48px 30px;
  margin-top:32px;
  text-align:center;
  overflow:hidden;
}
.swot-banner::before,
.swot-banner::after{
  content:"";
  position:absolute;border-radius:50%;
  background:radial-gradient(circle, rgba(94,240,142,.16), transparent 70%);
  animation:orbDrift 15s ease-in-out infinite;
}
.swot-banner::before{width:360px;height:360px;top:-180px;left:-100px;}
.swot-banner::after{width:300px;height:300px;bottom:-160px;right:-90px;animation-delay:3s;}
.swot-banner-inner{position:relative;z-index:2;}
.swot-crown{
  width:60px;height:60px;margin:0 auto 18px;
  border-radius:50%;
  background:rgba(94,240,142,.12);
  border:1px solid rgba(94,240,142,.4);
  color:#5ef08e;font-size:26px;
  display:flex;align-items:center;justify-content:center;
  animation:pulseGlow 3s ease-in-out infinite;
}
.swot-banner h4{color:#fff;font-weight:700;font-size:1.5rem;margin-bottom:10px;}
.swot-banner p{color:rgba(255,255,255,.72);font-size:15px;margin:0;}

@media (max-width:767.98px){
  .swot{padding:60px 0;}
  .swot p.swot-sub{margin-bottom:44px;}
  .swot-card{padding:28px 24px 26px;}
  .swot-banner{padding:38px 22px;}
}

/* Industries slider: draggable affordance */
.ind-track{cursor:grab;}
.ind-slider.dragging .ind-track{cursor:grabbing;}
.ind-slider.dragging .ind-card{pointer-events:none;}

/* ============ PRODUCT PAGE: CATEGORY TABS ============ */
.prod-tabs-bar{
  position:relative;
  background:#f8fcf4;
  border-bottom:1px solid #eef2ea;
  padding:22px 0;
  z-index:10;
}
.prod-tabs-bar .nav{
  display:flex;justify-content:center;gap:14px;flex-wrap:wrap;
  border:none;
}
.prod-tab-btn{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #e2ecd9;
  color:#22301f;
  font-weight:600;font-size:14.5px;
  padding:12px 26px;border-radius:var(--radius-pill);
  transition:var(--transition);
  cursor:pointer;
}
.prod-tab-btn svg,.prod-tab-btn i{width:16px;height:16px;font-size:15px;color:#1c7d31;transition:var(--transition);}
.prod-tab-btn:hover{border-color:#b9dda0;transform:translateY(-2px);}
.prod-tab-btn.active{
  background:var(--btn-gradient) !important;
  border-color:transparent;color:#fff !important;
  box-shadow:0 10px 24px rgba(123,193,66,.4);
}
.prod-tab-btn.active svg,.prod-tab-btn.active i{color:#fff;}

.prod-panels{
  position:relative;
  background:#fdfefc;
  padding:70px 0 80px;
  overflow:hidden;
}
.prod-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:10px 24px;border-radius:var(--radius-pill);
  margin-bottom:22px;
}
.prod-badge svg,.prod-badge i{width:15px;height:15px;font-size:14px;}
.prod-heading{
  font-weight:700;
  font-size:clamp(1.9rem,3.8vw,2.9rem);
  line-height:1.18;
  color:#17211a;
  margin-bottom:16px;
}
.prod-heading .grn{color:#22b45c;}
.prod-sub{
  color:#4a5a50;
  font-size:16px;line-height:1.85;
  max-width:620px;margin-bottom:44px;
}

.prod-card{
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:20px;
  padding:30px 26px 26px;
  height:100%;
  box-shadow:0 10px 28px rgba(45,90,35,.07);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.prod-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;transition:var(--transition);
}
.prod-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
.prod-card:hover{
  transform:translateY(-8px);
  border-color:#cde8ba;
  box-shadow:0 24px 48px rgba(45,90,35,.15);
}
.prod-icon{
  width:58px;height:58px;
  border-radius:16px;
  background:var(--btn-gradient);
  color:#fff;font-size:24px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px rgba(34,180,92,.32);
  margin-bottom:20px;
  transition:var(--transition);
}
.prod-icon svg{width:26px;height:26px;}
.prod-card:hover .prod-icon{transform:scale(1.08) rotate(-6deg);}
.prod-card h3{
  color:#17211a;font-weight:700;font-size:1.15rem;margin-bottom:10px;
  transition:var(--transition);
}
.prod-card:hover h3{color:#1c7d31;}
.prod-card p{
  color:#5a6b60;font-size:14px;line-height:1.75;margin-bottom:18px;
}
.prod-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:#e7f6dc;
  color:#1c7d31;
  font-size:12px;font-weight:700;
  padding:7px 16px;border-radius:var(--radius-pill);
}
.prod-tag svg,.prod-tag i{width:12px;height:12px;font-size:11px;}

/* certification featured (first item highlighted) */
.cert-card.featured{
  background:linear-gradient(135deg, rgba(61,220,132,.10), rgba(61,220,132,.04));
  border-color:#bfe6a8;
}

@media (max-width:767.98px){
  .prod-tabs-bar{padding:16px 0;}
  .prod-tab-btn{padding:10px 18px;font-size:13.5px;}
  .prod-panels{padding:50px 0 60px;}
  .prod-sub{margin-bottom:34px;}
}

/* ============ MANUFACTURING PROCESS (6-step grid) ============ */
.mfg-process{
  position:relative;
  background:
    radial-gradient(ellipse 700px 480px at 6% 8%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 640px 440px at 96% 92%, rgba(217,196,122,.08), transparent 60%),
    #fdfefc;
  padding:80px 0;
  overflow:hidden;
}
.process-card{
  position:relative;
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:22px;
  padding:30px 28px 28px;
  height:100%;
  box-shadow:0 12px 30px rgba(45,90,35,.07);
  transition:var(--transition);
  overflow:hidden;
}
.process-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#3ddc84,#c9b96e,#3ddc84);
  background-size:200% 100%;
  opacity:0;transition:var(--transition);
}
.process-card:hover::before{opacity:1;animation:goldFlow 2.4s linear infinite;}
.process-card:hover{
  transform:translateY(-8px);
  border-color:#cde8ba;
  box-shadow:0 26px 50px rgba(45,90,35,.15);
}
.process-card .pc-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:20px;}
.process-card .prod-icon{margin-bottom:0;}
.process-card .pc-num{
  font-family:'Nexa','Poppins',sans-serif;
  font-weight:700;font-size:2.2rem;
  color:#22b45c;opacity:.14;
  line-height:1;
  transition:var(--transition);
}
.process-card:hover .pc-num{opacity:.28;}
.process-card h3{color:#17211a;font-weight:700;font-size:1.15rem;margin-bottom:10px;transition:var(--transition);}
.process-card:hover h3{color:#1c7d31;}
.process-card p{color:#5a6b60;font-size:14px;line-height:1.75;margin:0;}

@media (max-width:767.98px){
  .mfg-process{padding:60px 0;}
}

/* ============ CLOSED-LOOP CYCLE (dark) ============ */
.cycle{
  position:relative;
  background:
    radial-gradient(ellipse 800px 540px at 50% -8%, rgba(61,220,132,.10), transparent 60%),
    linear-gradient(165deg,#05200f 0%, #0a3019 50%, #072815 100%);
  padding:80px 0 90px;
  overflow:hidden;
}
.cycle-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:rgba(94,240,142,.08);
  border:1px solid rgba(94,240,142,.3);
  color:#5ef08e;
  font-weight:600;font-size:13.5px;
  letter-spacing:1.4px;text-transform:uppercase;
  padding:10px 26px;border-radius:var(--radius-pill);
  backdrop-filter:blur(8px);
}
.cycle h2{
  font-weight:700;
  font-size:clamp(2rem,4.2vw,3.2rem);
  color:#fff;
  margin:26px 0 18px;
}
.cycle p.cycle-sub{
  color:rgba(255,255,255,.72);
  font-size:16px;line-height:1.9;
  max-width:640px;margin:0 auto 60px;
}
.cycle-row{display:flex;align-items:stretch;gap:0;}
.cycle-step{flex:1;min-width:0;}
.cycle-arrow-wrap{
  display:flex;align-items:center;justify-content:center;
  flex:0 0 44px;
  color:#5ef08e;opacity:.7;
}
.cycle-arrow-wrap svg{width:22px;height:22px;animation:arrowPulse 1.8s ease-in-out infinite;}
@keyframes arrowPulse{
  0%,100%{transform:translateX(0);opacity:.55;}
  50%{transform:translateX(5px);opacity:1;}
}
.cycle-card{
  position:relative;
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.11);
  border-radius:20px;
  padding:32px 20px 26px;
  text-align:center;
  height:100%;
  backdrop-filter:blur(10px);
  transition:var(--transition);
}
.cycle-card:hover{
  transform:translateY(-8px);
  border-color:rgba(94,240,142,.4);
  box-shadow:0 22px 46px rgba(0,0,0,.35);
}
.cycle-icon{
  width:64px;height:64px;margin:0 auto 18px;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:26px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 26px rgba(61,220,132,.35);
  transition:var(--transition);
}
.cycle-icon svg{width:27px;height:27px;}
.cycle-card:hover .cycle-icon{transform:scale(1.1) rotate(-6deg);}
.cycle-card h4{color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:10px;}
.cycle-card p{color:rgba(255,255,255,.68);font-size:13.5px;line-height:1.75;margin:0;}

@media (max-width:991.98px){
  .cycle{padding:60px 0 70px;}
  .cycle p.cycle-sub{margin-bottom:44px;}
  .cycle-row{flex-direction:column;gap:18px;}
  .cycle-arrow-wrap{transform:rotate(90deg);flex:0 0 auto;height:30px;}
}

/* ============ END-OF-LIFE (composting paths) ============ */
.eol{
  position:relative;
  background:
    radial-gradient(ellipse 640px 440px at 92% 10%, rgba(163,224,90,.10), transparent 60%),
    #f8fcf4;
  padding:80px 0;
  overflow:hidden;
}
.eol-card{
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:22px;
  padding:38px 30px 32px;
  text-align:center;
  height:100%;
  box-shadow:0 12px 30px rgba(45,90,35,.08);
  transition:var(--transition);
}
.eol-card:hover{
  transform:translateY(-8px);
  border-color:#cde8ba;
  box-shadow:0 26px 50px rgba(45,90,35,.16);
}
.eol-icon{
  width:70px;height:70px;margin:0 auto 20px;
  border-radius:50%;
  background:var(--btn-gradient);
  color:#fff;font-size:28px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 28px rgba(34,180,92,.32);
  transition:var(--transition);
}
.eol-icon svg{width:30px;height:30px;}
.eol-card:hover .eol-icon{transform:scale(1.08) rotate(-6deg);}
.eol-card h4{color:#17211a;font-weight:700;font-size:1.25rem;margin-bottom:14px;}
.eol-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:#e7f6dc;
  color:#178a44;
  font-weight:700;font-size:14px;
  padding:8px 20px;border-radius:var(--radius-pill);
  margin-bottom:16px;
}
.eol-card p{color:#5a6b60;font-size:14.5px;line-height:1.8;margin:0;}

@media (max-width:767.98px){
  .eol{padding:60px 0;}
}

/* ============ CORE SERVICES (grid) ============ */
.core-services{
  position:relative;
  background:
    radial-gradient(ellipse 700px 480px at 94% 6%, rgba(163,224,90,.10), transparent 60%),
    radial-gradient(ellipse 640px 440px at 4% 96%, rgba(217,196,122,.08), transparent 60%),
    #fdfefc;
  padding:80px 0;
  overflow:hidden;
}
@media (max-width:767.98px){
  .core-services{padding:60px 0;}
}

/* ============ SERVICE DETAIL (alternating two-column) ============ */
.svc-detail{
  position:relative;
  padding:76px 0;
  overflow:hidden;
  background:
    radial-gradient(ellipse 640px 440px at 4% 4%, rgba(217,196,122,.07), transparent 60%),
    #fdfefc;
}
.svc-detail.tint{
  background:
    radial-gradient(ellipse 600px 420px at 96% 10%, rgba(163,224,90,.09), transparent 60%),
    #f8fcf4;
}
.svc-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;
  font-weight:600;font-size:14px;
  padding:9px 22px;border-radius:var(--radius-pill);
  box-shadow:0 6px 18px rgba(63,143,46,.10);
  margin-bottom:22px;
}
.svc-detail h2{
  font-weight:700;
  font-size:clamp(1.9rem,3.6vw,2.7rem);
  line-height:1.2;
  color:#17211a;
  margin-bottom:18px;
}
.svc-detail h2 .grn{color:#22b45c;}
.svc-detail p.svc-text{
  color:#3d4c43;
  font-size:15.5px;
  line-height:1.9;
  margin-bottom:26px;
  max-width:560px;
}
.svc-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
  margin-bottom:30px;
  max-width:560px;
}
.svc-feat{
  display:flex;align-items:center;gap:11px;
  color:#22301f;font-size:14.5px;font-weight:600;
  transition:var(--transition);
}
.svc-feat:hover{color:#1c7d31;transform:translateX(3px);}
.svc-feat .sf-icon{
  width:32px;height:32px;flex-shrink:0;
  border-radius:9px;
  background:#e4f3d8;
  color:#1c7d31;font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.svc-feat .sf-icon svg{width:15px;height:15px;}
.svc-feat:hover .sf-icon{
  background:var(--btn-gradient);
  color:#fff;transform:scale(1.08) rotate(-6deg);
}

/* info card (Where It's Used / Powered By Data) */
.svc-card{
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:24px;
  padding:38px 34px;
  height:100%;
  box-shadow:0 20px 46px rgba(45,90,35,.10);
  transition:var(--transition);
}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 28px 58px rgba(45,90,35,.16);}
.svc-card h3{color:#17211a;font-weight:700;font-size:1.3rem;margin-bottom:12px;}
.svc-card p.svc-card-sub{color:#5a6b60;font-size:14.5px;line-height:1.8;margin-bottom:26px;}
.svc-use-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px 18px;}
.svc-use-item{display:flex;align-items:center;gap:11px;}
.svc-use-item .su-icon{
  width:34px;height:34px;flex-shrink:0;
  border-radius:9px;
  background:#e4f3d8;
  color:#1c7d31;font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;
}
.svc-use-item .su-icon svg{width:15px;height:15px;}
.svc-use-item span{color:#22301f;font-size:14px;font-weight:600;}

@media (max-width:991.98px){
  .svc-detail{padding:56px 0;}
  .svc-detail p.svc-text,.svc-features{max-width:100%;}
  .svc-card{margin-top:40px;}
}
@media (max-width:575.98px){
  .svc-features,.svc-use-grid{grid-template-columns:1fr;}
}

/* ============ SERVICE PERKS STRIP ============ */
.svc-perks{
  position:relative;
  background:
    radial-gradient(ellipse 700px 460px at 50% -10%, rgba(61,220,132,.10), transparent 60%),
    linear-gradient(165deg,#05200f 0%, #0a3019 50%, #072815 100%);
  padding:80px 0;
  overflow:hidden;
}
@media (max-width:767.98px){
  .svc-perks{padding:60px 0;}
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- Contact Hero ---- */
.contact-hero{
  position:relative;
  min-height:64vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(ellipse 900px 620px at 8% 20%, rgba(94,240,142,.14), transparent 60%),
    linear-gradient(100deg, rgba(3,16,8,.94) 0%, rgba(5,24,12,.88) 32%, rgba(6,28,14,.62) 60%, rgba(6,28,14,.4) 100%),
    url('contact-bg.jpg') center 38%/cover no-repeat;
  background-attachment:fixed;
  padding:170px 0 80px;
  overflow:hidden;
}
@media (max-width:991.98px){
  .contact-hero{background-attachment:scroll;}
}
.chero-globe{
  position:absolute;
  right:-8%;top:50%;
  transform:translateY(-50%);
  width:640px;height:640px;
  pointer-events:none;
  opacity:.9;
}
@media (max-width:1199.98px){ .chero-globe{width:480px;height:480px;right:-14%;} }
@media (max-width:991.98px){ .chero-globe{display:none;} }

.chero-content{position:relative;z-index:2;}

.chero-tag{
  display:inline-flex;align-items:center;gap:10px;
  color:#5ef08e;font-weight:700;font-size:13px;
  letter-spacing:1.5px;text-transform:uppercase;
  margin-left:16px;
}
.chero-tag .dash{width:26px;height:1px;background:#5ef08e;display:inline-block;}

.contact-hero h1{
  font-weight:800;
  font-size:clamp(2.2rem,4.6vw,3.6rem);
  line-height:1.14;
  color:#fff;
  margin:20px 0 20px;
}
.contact-hero h1 .grn{
  background:linear-gradient(100deg,var(--eco-green-light),var(--eco-green) 60%,#e9ff8f);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.contact-hero p.chero-sub{
  color:rgba(255,255,255,.78);
  font-size:clamp(1rem,1.4vw,1.1rem);
  line-height:1.85;
  max-width:560px;
  margin-bottom:36px;
}
.chero-btns{display:flex;flex-wrap:wrap;gap:16px;}
.btn-outline-white{
  display:inline-flex;align-items:center;gap:10px;
  background:transparent;
  border:1.5px solid rgba(255,255,255,.35);
  color:#fff;font-weight:600;font-size:15px;
  line-height:1.2;
  padding:14px 28px;border-radius:var(--radius-pill);
  transition:var(--transition);
}
.btn-outline-white:hover{
  border-color:#5ef08e;color:#5ef08e;
  background:rgba(94,240,142,.06);
  transform:translateY(-3px);
}
/* keep any raw inline-SVG icons the same compact size as the bi-icon buttons,
   and line-height consistent so both hero buttons match in height */
.chero-btns .btn-solid-green,
.chero-btns .btn-outline-white{
  line-height:1.2;
}
.btn-solid-green svg,
.btn-outline-white svg,
.cf-submit svg{
  width:16px;height:16px;flex-shrink:0;
  transition:transform .3s ease;
}
.btn-solid-green:hover svg,
.cf-submit:hover svg{transform:translateX(4px);}
@media (max-width:991.98px){
  .contact-hero{min-height:auto;padding:150px 0 60px;text-align:center;}
  .contact-hero p.chero-sub{margin-inline:auto;}
  .chero-btns{justify-content:center;}
  .chero-tag{display:block;margin:14px 0 0;}
}

/* ---- Info Strip ---- */
.info-strip{
  position:relative;
  background:#fff;
  border-bottom:1px solid #eef0e4;
  padding:44px 0;
}
.is-row{display:flex;flex-wrap:wrap;justify-content:space-between;gap:28px;}
.is-item{display:flex;align-items:center;gap:14px;flex:1 1 220px;}
.is-icon{
  width:52px;height:52px;flex-shrink:0;
  border-radius:14px;
  background:#e4f3d8;
  color:#1c7d31;
  display:flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.is-item:hover .is-icon{
  background:var(--btn-gradient);
  color:#fff;transform:scale(1.06) rotate(-4deg);
}
.is-icon svg,.is-icon i{width:22px;height:22px;font-size:20px;}
.is-item h5{color:#17211a;font-weight:700;font-size:14.5px;margin:0 0 3px;}
.is-item span{color:#5a6b60;font-size:13.5px;}
@media (max-width:767.98px){
  .is-row{justify-content:center;text-align:left;}
}

/* ---- Contact Split Card ---- */
.contact-split-section{
  position:relative;
  background:
    radial-gradient(ellipse 700px 480px at 96% 4%, rgba(163,224,90,.09), transparent 60%),
    #fdfefc;
  padding:80px 0;
}
.contact-split{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(45,90,35,.13);
}
.cs-left{
  position:relative;
  background:
    radial-gradient(ellipse 420px 320px at 90% 8%, rgba(94,240,142,.12), transparent 60%),
    linear-gradient(160deg,#05200f 0%, #0a3019 55%, #0d3419 100%);
  padding:52px 46px;
  color:#fff;
  display:flex;flex-direction:column;
}
.cs-badge{
  align-self:flex-start;
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(94,240,142,.08);
  border:1px solid rgba(94,240,142,.3);
  color:#5ef08e;font-weight:600;font-size:13.5px;
  padding:9px 22px;border-radius:var(--radius-pill);
  margin-bottom:22px;
}
.cs-left h3{
  font-weight:700;font-size:clamp(1.6rem,2.6vw,2rem);
  line-height:1.25;color:#fff;margin-bottom:14px;
}
.cs-left p.cs-text{
  color:rgba(255,255,255,.72);font-size:14.5px;line-height:1.85;
  margin-bottom:28px;max-width:400px;
}
.cs-info{display:flex;flex-direction:column;gap:18px;margin-bottom:28px;}
.cs-info-item{display:flex;align-items:flex-start;gap:14px;}
.cs-info-item .ci-icon{
  width:38px;height:38px;flex-shrink:0;
  border-radius:11px;
  background:rgba(94,240,142,.12);
  color:#5ef08e;
  display:flex;align-items:center;justify-content:center;
}
.cs-info-item .ci-icon svg{width:16px;height:16px;}
.cs-info-item h6{color:#fff;font-weight:700;font-size:14px;margin:0 0 2px;}
.cs-info-item span,.cs-info-item a{color:rgba(255,255,255,.65);font-size:13.5px;}
.cs-info-item a{transition:var(--transition);}
.cs-info-item a:hover{color:#5ef08e;}

.cs-trust{
  display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-pill);
  padding:10px 20px;font-size:12.5px;
  color:rgba(255,255,255,.7);
  margin-bottom:26px;align-self:flex-start;
}
.cs-trust i{color:#5ef08e;}

.cs-social{display:flex;gap:10px;margin-top:auto;}
.cs-social a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.cs-social a:hover{
  background:var(--btn-gradient);
  border-color:transparent;transform:translateY(-3px);
}
.cs-social svg,.cs-social i{width:16px;height:16px;font-size:15px;}

.cs-right{background:#fff;padding:52px 48px;}
.cf-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #d8eec9;
  color:#2f8f3f;font-weight:600;font-size:13px;
  padding:8px 20px;border-radius:var(--radius-pill);
  margin-bottom:16px;
}
.cs-right h2{
  font-weight:700;font-size:clamp(1.7rem,2.6vw,2.2rem);
  color:#17211a;margin-bottom:26px;
}
.cf-label{
  display:flex;align-items:center;gap:7px;
  color:#22301f;font-size:13.5px;font-weight:700;
  margin-bottom:9px;
}
.cf-label i{color:#1c7d31;font-size:13px;}
.cf-field{margin-bottom:20px;}
.cf-input{
  width:100%;
  background:#fbfdf9;
  border:1.5px solid #e5ebdd;
  border-radius:12px;
  color:#17211a;
  font-family:'Nexa','Inter',sans-serif;
  font-size:14.5px;
  padding:13px 16px;
  outline:none;
  transition:var(--transition);
}
.cf-input::placeholder{color:#9aa79a;}
.cf-input:focus{
  border-color:var(--eco-green);
  background:#fff;
  box-shadow:0 0 0 4px rgba(123,193,66,.14);
}
textarea.cf-input{resize:vertical;min-height:120px;}
.cf-submit{
  width:100%;
  display:inline-flex;align-items:center;justify-content:center;gap:11px;
  color:#fff;font-weight:700;font-size:15.5px;
  font-family:'Nexa','Inter',sans-serif;
  padding:15px 32px;border-radius:var(--radius-pill);
  border:none;cursor:pointer;
}
@media (max-width:991.98px){
  .contact-split-section{padding:60px 0;}
  .contact-split{grid-template-columns:1fr;border-radius:24px;}
  .cs-left,.cs-right{padding:40px 32px;}
}
@media (max-width:575.98px){
  .cs-left,.cs-right{padding:32px 22px;}
}

/* ---- FAQ ---- */
.faq-section{
  position:relative;
  background:
    radial-gradient(ellipse 640px 440px at 4% 96%, rgba(217,196,122,.08), transparent 60%),
    #f8fcf4;
  padding:80px 0;
}
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:16px;
  margin-bottom:14px;
  overflow:hidden;
  transition:var(--transition);
}
.faq-item:hover{border-color:#cfe9b3;}
.faq-q{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:transparent;border:none;
  padding:20px 26px;
  text-align:left;
  color:#17211a;font-weight:700;font-size:15.5px;
  font-family:'Nexa','Inter',sans-serif;
  cursor:pointer;
}
.faq-q .fq-chev{
  flex-shrink:0;color:#1c7d31;
  display:flex;transition:transform .35s ease;
}
.faq-q .fq-chev svg{width:18px;height:18px;}
.faq-q[aria-expanded="true"] .fq-chev{transform:rotate(180deg);}
.faq-q[aria-expanded="true"]{color:#1c7d31;}
.faq-a{
  padding:0 26px 22px;
  color:#4a5a4f;font-size:14.5px;line-height:1.85;
}

/* ---- Updates & Product News ---- */
.updates-section{
  position:relative;
  background:
    radial-gradient(ellipse 700px 480px at 94% 6%, rgba(163,224,90,.10), transparent 60%),
    #fdfefc;
  padding:80px 0;
}
.update-card{
  position:relative;
  background:#fff;
  border:1px solid #eef0e4;
  border-radius:22px;
  overflow:hidden;
  height:100%;
  box-shadow:0 10px 28px rgba(45,90,35,.07);
  transition:var(--transition);
}
.update-card:hover{
  transform:translateY(-8px);
  border-color:#cfe9b3;
  box-shadow:0 22px 46px rgba(45,90,35,.14);
}
.upd-media{
  position:relative;
  height:170px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,#0a3019,#0f2e17);
  overflow:hidden;
}
.upd-media .upd-icon{
  width:64px;height:64px;
  border-radius:18px;
  background:rgba(94,240,142,.14);
  color:#5ef08e;
  display:flex;align-items:center;justify-content:center;
}
.upd-media .upd-icon svg{width:28px;height:28px;}
.upd-media::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse 260px 180px at 80% 0%, rgba(94,240,142,.16), transparent 60%);
}
.upd-body{padding:26px 26px 28px;}
.upd-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:#e4f3d8;color:#1c7d31;
  font-weight:600;font-size:12px;
  padding:5px 14px;border-radius:var(--radius-pill);
  margin-bottom:14px;
}
.upd-date{color:#9aa79a;font-size:12.5px;font-weight:600;margin-left:10px;}
.update-card h4{
  color:#17211a;font-weight:700;font-size:1.08rem;
  line-height:1.4;margin-bottom:10px;
}
.update-card p{color:#5a6b60;font-size:14px;line-height:1.75;margin-bottom:18px;}
.upd-link{
  display:inline-flex;align-items:center;gap:8px;
  color:#1c7d31;font-weight:700;font-size:13.5px;
  transition:var(--transition);
}
.upd-link svg{width:14px;height:14px;transition:transform .3s ease;}
.upd-link:hover{color:var(--eco-green);}
.upd-link:hover svg{transform:translateX(4px);}
@media (max-width:767.98px){
  .updates-section{padding:60px 0;}
  .faq-section{padding:60px 0;}
}

/* ============================================================
   MOBILE / TABLET-ONLY ENTRANCE ANIMATION (text & images)
   Applied via script.js only on phones/tablets (<=991.98px) so
   desktop is completely unaffected.
   ============================================================ */
@media (max-width:991.98px){
  .mobile-anim{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
    will-change:opacity, transform;
  }
  .mobile-anim.mi-img{transform:translateY(24px) scale(.95);}
  .mobile-anim.visible{opacity:1;transform:translateY(0) scale(1);}
}
