/* =========================================================
   NEKAY — Teera V. Global | Organic Fertilizers
   Brand palette: Yellow #FBD140 (45%) · Grey #686868 (35%) · Olive #A3B212 (20%, bold)
   ========================================================= */

:root{
  --yellow:#FBD140;
  --yellow-soft:#FFF3C2;
  --yellow-deep:#E7B913;
  --grey:#686868;
  --grey-dark:#3E3E3E;
  --grey-light:#F4F3EF;
  --olive:#A3B212;
  --olive-dark:#7C8A0C;
  --olive-soft:#EEF1D4;
  --ink:#242420;
  --white:#FFFFFF;
  --cream:#FFFDF7;
  --line:#E7E4DA;
  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:28px;
  --shadow-sm: 0 2px 10px rgba(36,36,32,.06);
  --shadow-md: 0 12px 32px rgba(36,36,32,.10);
  --shadow-lg: 0 24px 60px rgba(36,36,32,.16);
  --maxw: 1220px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:700;line-height:1.18;margin:0 0 .5em;color:var(--ink);}
h1{font-size:clamp(2.1rem,4.4vw,3.4rem);font-weight:800;}
h2{font-size:clamp(1.6rem,3vw,2.35rem);}
h3{font-size:1.3rem;}
p{margin:0 0 1em;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
section{padding:88px 0;}
section.tight{padding:56px 0;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--olive-dark);background:var(--olive-soft);padding:7px 16px;border-radius:99px;margin-bottom:18px;
}
.lead{font-size:1.15rem;color:var(--grey-dark);max-width:680px;}
.section-head{max-width:760px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-head);font-weight:600;font-size:.95rem;
  padding:14px 28px;border-radius:99px;border:2px solid transparent;cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--olive);color:var(--white);box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--olive-dark);box-shadow:var(--shadow-md);}
.btn-yellow{background:var(--yellow);color:var(--ink);box-shadow:var(--shadow-sm);}
.btn-yellow:hover{background:var(--yellow-deep);box-shadow:var(--shadow-md);}
.btn-outline{background:transparent;border-color:var(--white);color:var(--white);}
.btn-outline:hover{background:var(--white);color:var(--ink);}
.btn-outline-dark{background:transparent;border-color:var(--grey);color:var(--ink);}
.btn-outline-dark:hover{background:var(--ink);border-color:var(--ink);color:var(--white);}
.btn-sm{padding:9px 18px;font-size:.85rem;}
.btn svg{width:18px;height:18px;flex:none;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:1000;background:rgba(255,253,247,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 24px;max-width:var(--maxw);margin:0 auto;}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{height:34px;width:auto;}
.main-nav{display:flex;align-items:center;gap:2px;}
.main-nav a{
  font-family:var(--font-head);font-weight:600;font-size:.92rem;color:var(--grey-dark);
  padding:10px 15px;border-radius:99px;transition:background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active{background:var(--olive-soft);color:var(--olive-dark);}
.header-actions{display:flex;align-items:center;gap:10px;}
.lang-switch{
  display:flex;align-items:center;background:var(--grey-light);border-radius:99px;padding:3px;font-family:var(--font-head);font-weight:700;font-size:.78rem;
}
.lang-switch button{
  border:none;background:transparent;padding:7px 13px;border-radius:99px;cursor:pointer;color:var(--grey);font-family:inherit;font-weight:inherit;font-size:inherit;
}
.lang-switch button.active{background:var(--ink);color:var(--white);}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;}
.nav-toggle span{display:block;width:24px;height:2.5px;background:var(--ink);margin:5px 0;border-radius:2px;}

/* ---------- Hero ---------- */
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--yellow-soft) 0%,var(--yellow) 48%,var(--yellow-deep) 100%);
  color:var(--ink);padding:96px 0 70px;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 85% 15%, rgba(163,178,18,.28), transparent 45%),
             radial-gradient(circle at 10% 90%, rgba(255,255,255,.35), transparent 40%);
  pointer-events:none;
}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;position:relative;}
.hero h1{color:var(--ink);}
.hero .lead{color:var(--grey-dark);}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:var(--ink);color:var(--white);
  font-family:var(--font-head);font-weight:700;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;
  padding:8px 16px;border-radius:99px;margin-bottom:20px;
}
.hero-cta{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap;}
.hero-stats{display:flex;gap:34px;margin-top:44px;flex-wrap:wrap;}
.hero-stats div strong{display:block;font-family:var(--font-head);font-size:1.9rem;font-weight:800;color:var(--olive-dark);}
.hero-stats div span{font-size:.82rem;opacity:.85;color:var(--grey-dark);}
.hero-visual{position:relative;height:420px;}
.hero-visual img{position:absolute;filter:drop-shadow(0 24px 34px rgba(0,0,0,.28));}
.hero-visual .bag1{width:190px;left:8%;top:2%;transform:rotate(-9deg);}
.hero-visual .bag2{width:210px;left:38%;top:22%;transform:rotate(4deg);z-index:2;}
.hero-visual .bag3{width:170px;right:2%;top:0;transform:rotate(11deg);}
.hero-badge{
  position:absolute;bottom:6%;left:6%;background:var(--white);color:var(--ink);border-radius:var(--radius-md);
  padding:16px 20px;box-shadow:var(--shadow-lg);display:flex;gap:12px;align-items:center;max-width:230px;z-index:3;
}
.hero-badge svg{width:34px;height:34px;flex:none;color:var(--olive);}
.hero-badge strong{display:block;font-family:var(--font-head);font-size:.92rem;}
.hero-badge span{font-size:.78rem;color:var(--grey);}

/* ---------- Marquee strip ---------- */
.strip{background:var(--ink);color:var(--white);padding:14px 0;overflow:hidden;}
.strip-track{display:flex;gap:56px;white-space:nowrap;animation:scroll-strip 28s linear infinite;font-family:var(--font-head);font-weight:600;letter-spacing:.06em;font-size:.85rem;text-transform:uppercase;opacity:.9;}
@keyframes scroll-strip{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ---------- Cards / grids ---------- */
.grid{display:grid;gap:26px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.value-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:30px 26px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.value-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.value-card .icon-badge{margin-bottom:16px;}
.value-card h3{font-size:1.08rem;margin-bottom:8px;}
.value-card p{color:var(--grey-dark);font-size:.94rem;margin:0;}

.icon-badge{
  width:56px;height:56px;border-radius:16px;display:flex;align-items:center;justify-content:center;
  background:var(--olive-soft);color:var(--olive-dark);
}
.icon-badge svg{width:30px;height:30px;}
.icon-badge.yellow{background:var(--yellow-soft);color:var(--yellow-deep);}
.icon-badge.grey{background:var(--grey-light);color:var(--grey-dark);}

/* ---------- Product cards (home + catalog) ---------- */
.product-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.product-card .thumb{
  background:linear-gradient(160deg,var(--grey-light),#fff);display:flex;align-items:center;justify-content:center;
  padding:22px 0 6px;position:relative;
}
.product-card .thumb img{height:200px;width:auto;}
.product-card .thumb .tag{position:absolute;top:14px;left:14px;background:var(--ink);color:#fff;font-family:var(--font-head);font-size:.68rem;font-weight:700;letter-spacing:.06em;padding:5px 11px;border-radius:99px;text-transform:uppercase;}
.product-card .body{padding:22px 24px 26px;flex:1;display:flex;flex-direction:column;}
.product-card .body h3{margin-bottom:4px;}
.product-card .body .cat{font-size:.8rem;font-weight:700;color:var(--olive-dark);text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;}
.product-card .body p{color:var(--grey-dark);font-size:.92rem;flex:1;}
.product-card .body .more{margin-top:14px;font-family:var(--font-head);font-weight:700;font-size:.88rem;color:var(--ink);display:inline-flex;align-items:center;gap:6px;}
.product-card .body .more svg{width:16px;height:16px;transition:transform .15s;}
.product-card:hover .more svg{transform:translateX(4px);}

/* ---------- Product detail sections ---------- */
.product-nav{
  position:sticky;top:73px;z-index:90;background:var(--white);border-bottom:1px solid var(--line);
  overflow-x:auto;
}
.product-nav .container{display:flex;gap:6px;padding:12px 24px;}
.product-nav a{
  font-family:var(--font-head);font-weight:600;font-size:.82rem;white-space:nowrap;padding:8px 14px;border-radius:99px;color:var(--grey-dark);border:1px solid var(--line);
}
.product-nav a:hover, .product-nav a.active{background:var(--ink);color:var(--white);border-color:var(--ink);}

.product-detail{border-bottom:1px solid var(--line);padding:80px 0;scroll-margin-top:150px;}
.product-detail:nth-child(even){background:var(--white);}
.pd-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:56px;align-items:start;}
.pd-gallery{display:flex;gap:18px;position:sticky;top:150px;}
.pd-gallery .pack{
  flex:1;background:var(--grey-light);border-radius:var(--radius-md);padding:18px;text-align:center;
}
.pd-gallery .pack img{margin:0 auto 12px;height:260px;width:auto;}
.pd-gallery .pack .size{font-family:var(--font-head);font-weight:800;font-size:1rem;}
.pd-gallery .pack .size-note{font-size:.78rem;color:var(--grey);}
.pd-tag{display:inline-block;font-family:var(--font-head);font-weight:700;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:#fff;padding:6px 14px;border-radius:99px;margin-bottom:14px;}
.pd-title{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;}
.pd-title h2{margin-bottom:0;}
.pd-title .subtitle{font-size:1.02rem;color:var(--grey-dark);font-weight:600;}
.pd-tagline{font-family:var(--font-head);font-style:italic;font-weight:600;font-size:1.1rem;margin:10px 0 22px;}
.pd-benefits{display:grid;grid-template-columns:1fr 1fr;gap:12px 22px;margin:26px 0;}
.pd-benefits li{display:flex;gap:10px;font-size:.94rem;color:var(--grey-dark);}
.pd-benefits li svg{width:20px;height:20px;flex:none;margin-top:2px;}
.pd-block{margin-top:34px;}
.pd-block h4{font-family:var(--font-head);font-weight:700;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--grey);margin-bottom:14px;}
table.spec-table{width:100%;border-collapse:collapse;font-size:.92rem;}
table.spec-table td{padding:10px 4px;border-bottom:1px solid var(--line);}
table.spec-table td:first-child{color:var(--grey-dark);}
table.spec-table td:last-child{text-align:right;font-weight:700;font-family:var(--font-head);}
.app-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.app-card{background:var(--grey-light);border-radius:var(--radius-sm);padding:16px 18px;}
.app-card strong{display:block;font-family:var(--font-head);font-size:.82rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:6px;color:var(--olive-dark);}
.app-card p{margin:0;font-size:.92rem;color:var(--grey-dark);}
.crops-line{font-size:.94rem;color:var(--grey-dark);background:var(--olive-soft);border-radius:var(--radius-sm);padding:14px 18px;margin-top:10px;}

/* ---------- Timeline / process ---------- */
.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step;}
.timeline .step{position:relative;padding-top:52px;}
.timeline .step::before{
  counter-increment:step;content:counter(step);
  width:42px;height:42px;border-radius:50%;background:var(--olive);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:800;
  position:absolute;top:0;left:0;
}

/* ---------- Global presence ---------- */
.presence-band{background:var(--ink);color:#fff;}
.presence-band .section-head h2, .presence-band .section-head .lead{color:#fff;}
.presence-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:10px;}
.presence-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:var(--radius-md);padding:26px;}
.presence-card .dot{width:10px;height:10px;border-radius:50%;background:var(--yellow);display:inline-block;margin-right:8px;}
.presence-card h3{color:#fff;font-size:1.1rem;margin-bottom:8px;}
.presence-card p{color:rgba(255,255,255,.72);font-size:.9rem;margin:0;}

/* ---------- Testimonials ---------- */
.testi-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:28px;}
.testi-card p{font-style:italic;color:var(--grey-dark);}
.testi-who{display:flex;align-items:center;gap:12px;margin-top:16px;}
.testi-avatar{width:44px;height:44px;border-radius:50%;background:var(--olive);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:800;}
.testi-who strong{display:block;font-size:.92rem;}
.testi-who span{font-size:.8rem;color:var(--grey);}

/* ---------- Blog ---------- */
.blog-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:36px;}
.blog-filters button{
  font-family:var(--font-head);font-weight:600;font-size:.82rem;padding:8px 16px;border-radius:99px;border:1px solid var(--line);
  background:#fff;cursor:pointer;color:var(--grey-dark);
}
.blog-filters button.active, .blog-filters button:hover{background:var(--ink);color:#fff;border-color:var(--ink);}
.blog-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;display:flex;flex-direction:column;transition:transform .2s, box-shadow .2s;}
.blog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.blog-cover{height:150px;display:flex;align-items:center;justify-content:center;position:relative;}
.blog-cover svg{width:60px;height:60px;}
.blog-card .body{padding:20px 22px 24px;}
.blog-meta{font-size:.76rem;color:var(--grey);font-weight:600;text-transform:uppercase;letter-spacing:.04em;margin-bottom:8px;}
.blog-card h3{font-size:1.05rem;margin-bottom:8px;}
.blog-card p{font-size:.88rem;color:var(--grey-dark);}
.blog-card .readmore{font-family:var(--font-head);font-weight:700;font-size:.84rem;color:var(--olive-dark);margin-top:8px;display:inline-block;}

.article-hero{padding:60px 0 20px;}
.article-body{max-width:760px;margin:0 auto;padding:20px 24px 70px;}
.article-body h2{margin-top:1.6em;}
.article-body p{color:var(--grey-dark);font-size:1.04rem;}
.article-meta{display:flex;gap:16px;flex-wrap:wrap;color:var(--grey);font-size:.86rem;margin:14px 0 28px;font-weight:600;}
.article-tag{display:inline-block;background:var(--olive-soft);color:var(--olive-dark);font-family:var(--font-head);font-weight:700;font-size:.76rem;letter-spacing:.06em;text-transform:uppercase;padding:6px 14px;border-radius:99px;}
.article-cta{background:var(--grey-light);border-radius:var(--radius-md);padding:28px;margin-top:40px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;}
.related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:16px;}

/* ---------- Email platform mockup ---------- */
.mail-app{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);overflow:hidden;
  display:grid;grid-template-columns:220px 260px 1fr;min-height:560px;
}
.mail-side{background:var(--grey-light);padding:22px 16px;border-right:1px solid var(--line);}
.mail-side .compose{width:100%;background:var(--olive);color:#fff;border:none;padding:12px;border-radius:99px;font-family:var(--font-head);font-weight:700;cursor:pointer;margin-bottom:20px;}
.mail-side a{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:8px;font-size:.88rem;font-weight:600;color:var(--grey-dark);}
.mail-side a.active, .mail-side a:hover{background:#fff;color:var(--ink);}
.mail-side .count{margin-left:auto;background:var(--yellow);border-radius:99px;font-size:.7rem;padding:1px 7px;color:var(--ink);font-weight:800;}
.mail-side .users-list{margin-top:18px;border-top:1px solid var(--line);padding-top:16px;}
.mail-side .users-list h5{font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:var(--grey);margin:0 0 10px;}
.mail-side .user-chip{display:flex;align-items:center;gap:8px;font-size:.78rem;padding:6px 4px;color:var(--grey-dark);}
.mail-side .user-chip .dot{width:7px;height:7px;border-radius:50%;background:var(--olive);}
.mail-list{border-right:1px solid var(--line);overflow-y:auto;}
.mail-list .m-item{padding:16px 18px;border-bottom:1px solid var(--line);cursor:pointer;}
.mail-list .m-item:hover, .mail-list .m-item.active{background:var(--olive-soft);}
.mail-list .m-item .from{font-weight:700;font-size:.88rem;display:flex;justify-content:space-between;}
.mail-list .m-item .from time{font-weight:500;color:var(--grey);font-size:.74rem;}
.mail-list .m-item .subj{font-size:.86rem;margin:3px 0 2px;font-weight:600;}
.mail-list .m-item .snippet{font-size:.8rem;color:var(--grey);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.mail-reading{padding:26px 30px;}
.mail-reading h3{margin-bottom:6px;}
.mail-reading .meta{font-size:.84rem;color:var(--grey);margin-bottom:20px;}
.mail-reading .content p{color:var(--grey-dark);}

/* ---------- Forms ---------- */
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);padding:34px;box-shadow:var(--shadow-sm);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
.form-field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.form-field label{font-family:var(--font-head);font-weight:600;font-size:.85rem;}
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid var(--line);border-radius:10px;padding:12px 14px;font-family:var(--font-body);font-size:.94rem;background:var(--cream);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{outline:2px solid var(--olive);border-color:var(--olive);}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink);color:rgba(255,255,255,.75);padding:70px 0 26px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;}
.footer-grid h5{color:#fff;font-family:var(--font-head);font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;margin-bottom:16px;}
.footer-grid a{display:block;padding:5px 0;font-size:.9rem;color:rgba(255,255,255,.72);}
.footer-grid a:hover{color:var(--yellow);}
.footer-brand img{height:34px;margin-bottom:14px;filter:brightness(0) invert(1);}
.footer-brand p{font-size:.88rem;max-width:280px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:50px;padding-top:22px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.8rem;}
.social-row{display:flex;gap:10px;margin-top:14px;}
.social-row a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;}
.social-row a:hover{background:var(--olive);}
.social-row svg{width:17px;height:17px;}

/* ---------- Utility ---------- */
.text-center{text-align:center;}
.mt-0{margin-top:0;}
.badge-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;}
.pill{background:var(--white);border:1px solid var(--line);border-radius:99px;padding:8px 15px;font-size:.8rem;font-weight:600;display:inline-flex;align-items:center;gap:7px;}
.divider{height:1px;background:var(--line);margin:60px 0;}
.bg-olive-soft{background:var(--olive-soft);}
.bg-grey-light{background:var(--grey-light);}
.cta-band{background:linear-gradient(120deg,var(--yellow) 0%, var(--yellow-deep) 100%);border-radius:var(--radius-lg);padding:56px;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap;}
.cta-band h2{margin-bottom:6px;}

/* ---------- Language visibility ---------- */
.lang-es .lang-en-only{display:none !important;}
.lang-en .lang-es-only{display:none !important;}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:300px;margin-top:20px;}
  .pd-grid{grid-template-columns:1fr;}
  .pd-gallery{position:relative;top:0;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .presence-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .mail-app{grid-template-columns:1fr;min-height:auto;}
  .mail-side, .mail-list{border-right:none;border-bottom:1px solid var(--line);}
}
@media (max-width: 720px){
  .main-nav{display:none;}
  .nav-toggle{display:block;}
  .grid-2, .grid-3, .grid-4{grid-template-columns:1fr;}
  .pd-benefits{grid-template-columns:1fr;}
  .app-grid{grid-template-columns:1fr;}
  section{padding:56px 0;}
  .cta-band{padding:34px;flex-direction:column;text-align:center;}
  .timeline{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .related-grid{grid-template-columns:1fr;}
}

/* ---------- Scroll motion (Apple-style reveals) ---------- */
.reveal{opacity:0;transform:translateY(48px);transition:opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);will-change:opacity,transform;}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.reveal-zoom{opacity:0;transform:scale(.92);transition:opacity 1s cubic-bezier(.16,.8,.24,1), transform 1.1s cubic-bezier(.16,.8,.24,1);}
.reveal-zoom.is-visible{opacity:1;transform:scale(1);}
.reveal-fade{opacity:0;transition:opacity 1.1s ease;}
.reveal-fade.is-visible{opacity:1;}
.reveal-left{opacity:0;transform:translateX(-56px);transition:opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);}
.reveal-left.is-visible{opacity:1;transform:translateX(0);}
.reveal-right{opacity:0;transform:translateX(56px);transition:opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);}
.reveal-right.is-visible{opacity:1;transform:translateX(0);}
.stagger .reveal:nth-child(1),.stagger .reveal-zoom:nth-child(1){transition-delay:0s;}
.stagger .reveal:nth-child(2),.stagger .reveal-zoom:nth-child(2){transition-delay:.09s;}
.stagger .reveal:nth-child(3),.stagger .reveal-zoom:nth-child(3){transition-delay:.18s;}
.stagger .reveal:nth-child(4),.stagger .reveal-zoom:nth-child(4){transition-delay:.27s;}
.stagger .reveal:nth-child(5),.stagger .reveal-zoom:nth-child(5){transition-delay:.36s;}
.stagger .reveal:nth-child(6),.stagger .reveal-zoom:nth-child(6){transition-delay:.45s;}

.site-header{transition:padding .35s ease, box-shadow .35s ease, background .35s ease;}
.site-header.is-scrolled .header-inner{padding-top:8px;padding-bottom:8px;}
.site-header.is-scrolled{box-shadow:0 6px 24px rgba(36,36,32,.08);}
.site-header.is-scrolled .brand img{height:28px;}
.brand img{transition:height .35s ease;}

[data-parallax]{will-change:transform;}

.counter{font-variant-numeric:tabular-nums;}

@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-zoom,.reveal-fade,.reveal-left,.reveal-right{opacity:1 !important;transform:none !important;transition:none !important;}
  html{scroll-behavior:auto;}
}

/* ---------- Full-bleed photo "chapters" (Apple-style storytelling) ---------- */
.chapter{
  position:relative;min-height:100vh;display:flex;align-items:flex-end;overflow:hidden;
  background-color:var(--olive-dark);background-size:cover;background-position:center;
  padding:100px 0 90px;color:#fff;
}
.chapter.short{min-height:72vh;}
.chapter::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,20,16,.05) 0%, rgba(20,20,16,.35) 55%, rgba(16,16,12,.86) 100%);
  pointer-events:none;
}
.chapter::before{
  content:"";position:absolute;inset:0;background:linear-gradient(135deg, rgba(163,178,18,.22), rgba(104,104,104,.1));
  mix-blend-mode:multiply;pointer-events:none;z-index:1;
}
.chapter-content{position:relative;z-index:2;max-width:640px;}
.chapter-eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.16);backdrop-filter:blur(6px);
  font-family:var(--font-head);font-weight:700;font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;
  padding:8px 16px;border-radius:99px;margin-bottom:20px;
}
.chapter h2{color:#fff;font-size:clamp(2rem,4.6vw,3.6rem);margin-bottom:.4em;}
.chapter p{color:rgba(255,255,255,.9);font-size:1.12rem;max-width:560px;}
.chapter-num{
  position:absolute;top:40px;right:40px;z-index:2;font-family:var(--font-head);font-weight:800;
  font-size:.8rem;letter-spacing:.1em;color:rgba(255,255,255,.75);
}
.chapter-anchor-top{display:flex;align-items:flex-start;padding-top:130px;}

.opener{
  min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  position:relative;overflow:hidden;background:linear-gradient(160deg,var(--yellow-soft),var(--yellow) 55%,var(--yellow-deep));
  padding:40px 24px;
}
.opener-eyebrow{
  font-family:var(--font-head);font-weight:700;font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;color:var(--olive-dark);
  background:rgba(36,36,32,.08);padding:8px 18px;border-radius:99px;margin-bottom:26px;
}
.opener h1{
  font-size:clamp(2.6rem,7vw,5.2rem);max-width:1000px;line-height:1.06;letter-spacing:-.01em;
}
.opener .lead{font-size:1.2rem;max-width:620px;margin:20px auto 0;color:var(--grey-dark);}
.opener-scroll{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;
  font-family:var(--font-head);font-weight:700;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--grey-dark);
  animation:bob 2.2s ease-in-out infinite;
}
@keyframes bob{0%,100%{transform:translate(-50%,0);}50%{transform:translate(-50%,8px);}}
.opener-scroll .line{width:1.5px;height:34px;background:var(--grey-dark);opacity:.5;}

/* ---------- Scroll story (sticky visual + swapping text) ---------- */
.story-section{position:relative;background:var(--ink);}
.story-grid{display:grid;grid-template-columns:1fr 1fr;}
.story-visual-col{position:sticky;top:0;height:100vh;overflow:hidden;}
.story-visual-col .story-bg{
  position:absolute;inset:0;background-size:cover;background-position:center;background-color:var(--grey-dark);
  opacity:0;transition:opacity .7s ease;
}
.story-visual-col .story-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.35),rgba(0,0,0,.05));}
.story-visual-col .story-bg.is-active{opacity:1;}
.story-steps-col{display:flex;flex-direction:column;}
.story-step{
  min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:60px 64px;
  opacity:.3;transition:opacity .5s ease;color:#fff;
}
.story-step.is-active{opacity:1;}
.story-step .num{font-family:var(--font-head);font-weight:800;color:var(--yellow);font-size:.85rem;letter-spacing:.14em;margin-bottom:14px;}
.story-step h3{color:#fff;font-size:clamp(1.5rem,2.6vw,2.1rem);}
.story-step p{color:rgba(255,255,255,.78);font-size:1.03rem;max-width:440px;}
@media (max-width: 860px){
  .story-grid{grid-template-columns:1fr;}
  .story-visual-col{position:relative;height:46vh;}
  .story-step{min-height:auto;padding:50px 26px;opacity:1;}
}

/* ---------- Product showcase strip (logo cards) ---------- */
.plogo-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:34px 22px;text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;text-decoration:none;display:block;
}
.plogo-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);border-color:transparent;}
.plogo-card .mark{
  width:64px;height:64px;margin:0 auto 18px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:var(--grey-light);
}
.plogo-card .mark img{width:30px;height:auto;}
.plogo-card .pname{font-family:var(--font-head);font-weight:800;font-size:1.15rem;color:var(--ink);}
.plogo-card .pcat{font-size:.8rem;color:var(--grey);margin-top:4px;}
.plogo-card .pline{width:26px;height:3px;border-radius:99px;margin:14px auto 0;}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav{
  position:fixed;inset:0 0 0 auto;width:82%;max-width:320px;background:#fff;z-index:1100;
  transform:translateX(100%);transition:transform .25s ease;padding:26px;box-shadow:var(--shadow-lg);
  display:flex;flex-direction:column;gap:4px;
}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav a{padding:14px 6px;font-family:var(--font-head);font-weight:600;border-bottom:1px solid var(--line);}
.mobile-nav-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:1090;opacity:0;pointer-events:none;transition:opacity .25s;}
.mobile-nav-backdrop.open{opacity:1;pointer-events:auto;}
.mobile-nav .close-x{align-self:flex-end;background:none;border:none;font-size:1.6rem;cursor:pointer;margin-bottom:10px;}
