/* =========================================================
   CORDYVAA® — Real Lifecare Merchants Pvt. Ltd.
   Stylesheet
   ========================================================= */

:root{
  --green-dark:#0c3a2c;
  --green-darker:#082821;
  --green:#155c44;
  --green-soft:#e7f0ea;
  --gold:#c9a24b;
  --gold-light:#e4c583;
  --cream:#faf6ee;
  --cream-2:#f3ece0;
  --text:#1f2b25;
  --text-light:#5c6b62;
  --white:#ffffff;
  --border:#e3ddce;
  --shadow: 0 10px 30px -12px rgba(12,58,44,0.18);
  --radius: 14px;
  --maxw: 1180px;
  font-size: 16px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins', 'Inter', sans-serif;
  color:var(--green-darker);
  line-height:1.2;
  margin:0 0 .6em;
}
p{ margin:0 0 1em; color:var(--text-light); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  background:rgba(201,162,75,0.12);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
.section{ padding:88px 0; }
.section-tight{ padding:60px 0; }
.section-alt{ background:var(--white); }
.section-dark{ background:linear-gradient(160deg,var(--green-darker),var(--green-dark)); color:#dfe9e3; }
.section-dark h2, .section-dark h3, .section-dark h4{ color:var(--white); }
.section-dark p{ color:#c6d6cd; }
.section-head{ max-width:720px; margin:0 auto 52px; text-align:center; }
.section-head p{ font-size:1.05rem; }
.section-head.left{ margin:0 0 44px; text-align:left; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--green-darker);
  box-shadow:0 10px 24px -8px rgba(201,162,75,0.55);
}
.btn-gold:hover{ box-shadow:0 14px 28px -8px rgba(201,162,75,0.7); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,0.5);
  color:inherit;
}
.btn-outline:hover{ background:rgba(255,255,255,0.12); }
.btn-outline-dark{
  background:transparent;
  border-color:var(--green);
  color:var(--green-dark);
}
.btn-outline-dark:hover{ background:var(--green-soft); }
.btn-block{ width:100%; justify-content:center; }

/* ===================== HEADER ===================== */
header.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
/* Background lives on a pseudo-element (not the header itself) so that
   header never gains a backdrop-filter/transform/filter — any of those
   would make it the containing block for its position:fixed descendants
   (the mobile nav drawer), collapsing it to the header's own height
   instead of the viewport. */
header.site-header::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(8,40,33,0.96);
  backdrop-filter:blur(6px);
}
.nav-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
}
.logo .mark{
  width:42px; height:42px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold) 60%, #9a7a2e 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 3px rgba(201,162,75,0.18);
  flex-shrink:0;
}
.logo .mark svg{ width:22px; height:22px; }
.logo .word{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:1.28rem;
  letter-spacing:.02em;
}
.logo .word sup{ font-size:.55em; }
.logo .tagline{
  display:block;
  font-size:.62rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-light);
  font-weight:600;
  margin-top:1px;
}
nav.main-nav ul{
  display:flex;
  gap:6px;
  align-items:center;
}
nav.main-nav a{
  color:#e7efe9;
  font-weight:500;
  font-size:.94rem;
  padding:10px 16px;
  border-radius:999px;
  transition:background .15s ease, color .15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active{
  background:rgba(255,255,255,0.1);
  color:var(--gold-light);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta .btn{ padding:11px 20px; font-size:.88rem; }
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width:40px; height:40px;
  align-items:center;
  justify-content:center;
  color:var(--white);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  display:block;
  width:22px; height:2px;
  background:currentColor;
  position:relative;
  transition:.2s;
}
.menu-toggle span::before, .menu-toggle span::after{
  content:''; position:absolute; left:0;
}
.menu-toggle span::before{ top:-7px; }
.menu-toggle span::after{ top:7px; }

/* ===================== HERO ===================== */
.hero{
  position:relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,162,75,0.10), transparent 50%),
    linear-gradient(160deg,var(--green-darker) 0%, var(--green-dark) 55%, var(--green) 100%);
  color:var(--white);
  overflow:hidden;
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.25) 1px, transparent 1px),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.18) 1px, transparent 1px),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size:340px 340px;
  pointer-events:none;
  opacity:.6;
}
.hero-inner{
  position:relative;
  max-width:var(--maxw);
  margin:0 auto;
  padding:130px 24px 110px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:50px;
  align-items:center;
}
.hero h1{
  color:var(--white);
  font-size:clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom:.4em;
}
.hero .lede{
  font-size:1.15rem;
  color:#cfe0d7;
  max-width:560px;
  margin-bottom:2em;
}
.hero .cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:2.5em; }
.hero-stats{
  display:flex; gap:28px; flex-wrap:wrap;
}
.hero-stats div{ min-width:120px; }
.hero-stats strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:1.6rem;
  color:var(--gold-light);
}
.hero-stats span{ font-size:.82rem; color:#b7cabf; letter-spacing:.03em; }

.hero-art{
  position:relative;
  aspect-ratio:1/1;
  border-radius:28px;
  background:linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  padding:30px;
}
.hero-art .ring{
  position:absolute;
  border-radius:50%;
  border:1px dashed rgba(201,162,75,0.4);
}
.hero-art .ring.r1{ inset:14%; }
.hero-art .ring.r2{ inset:30%; border-style:solid; border-color:rgba(201,162,75,0.25); }
.hero-art .core{
  position:relative;
  width:46%;
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle at 32% 28%, var(--gold-light), var(--gold) 55%, #7f631f 100%);
  box-shadow:0 0 60px -10px rgba(201,162,75,0.6);
  display:flex; align-items:center; justify-content:center;
}
.hero-art .core svg{ width:46%; height:46%; color:var(--green-darker); }
.hero-art .chip{
  position:absolute;
  background:rgba(8,40,33,0.85);
  border:1px solid rgba(201,162,75,0.35);
  border-radius:12px;
  padding:9px 13px;
  font-size:.74rem;
  font-weight:600;
  color:var(--gold-light);
  display:flex; align-items:center; gap:7px;
  box-shadow:var(--shadow);
}
.hero-art .chip svg{ width:14px; height:14px; }
.hero-art .chip.c1{ top:8%; left:0%; }
.hero-art .chip.c2{ bottom:14%; right:-4%; }
.hero-art .chip.c3{ bottom:0%; left:8%; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background:linear-gradient(160deg,var(--green-darker),var(--green-dark));
  color:var(--white);
  padding:78px 0 66px;
  text-align:center;
}
.page-hero h1{ color:var(--white); font-size:clamp(1.9rem,3.6vw,2.8rem); }
.page-hero p{ color:#cfe0d7; max-width:640px; margin:0 auto; font-size:1.05rem; }
.breadcrumb{
  font-size:.82rem;
  color:var(--gold-light);
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.breadcrumb a{ color:#cfe0d7; }
.breadcrumb a:hover{ color:var(--gold-light); }

/* ===================== GRIDS / CARDS ===================== */
.grid{ display:grid; gap:28px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:34px 28px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-5px); box-shadow:0 18px 40px -14px rgba(12,58,44,0.25); }
.icon-badge{
  width:56px; height:56px;
  border-radius:14px;
  background:var(--green-soft);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.icon-badge svg{ width:26px; height:26px; color:var(--green); }
.icon-badge.gold{ background:rgba(201,162,75,0.15); }
.icon-badge.gold svg{ color:#a9822f; }
.card h3{ font-size:1.15rem; margin-bottom:.5em; }
.card p{ font-size:.95rem; margin-bottom:0; }

.pillar-card{ text-align:left; }

/* Process steps */
.process-strip{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  background:var(--green-darker);
  border-radius:var(--radius);
  padding:34px 24px;
}
.process-step{
  text-align:center;
  color:#dfe9e3;
  position:relative;
  padding-top:8px;
}
.process-step .num{
  width:42px; height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--green-darker);
  font-weight:700;
  font-family:'Poppins',sans-serif;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px;
}
.process-step h4{ color:var(--white); font-size:.88rem; margin-bottom:.3em; letter-spacing:.02em; }
.process-step p{ color:#a9bdb2; font-size:.8rem; margin:0; }

/* Detailed process cards (products page) */
.process-detail{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.process-detail .card{ position:relative; padding-top:44px; }
.process-detail .tag{
  position:absolute; top:-16px; left:28px;
  background:var(--green-dark);
  color:var(--gold-light);
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:.85rem;
  width:38px; height:38px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
}

/* Products */
.product-card{
  background:var(--white);
  border-radius:var(--radius);
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease;
}
.product-card:hover{ transform:translateY(-5px); }
.product-visual{
  height:190px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.product-visual svg{ width:64px; height:64px; color:var(--white); }
.product-visual.tea{ background:linear-gradient(150deg,#2f6b4f,#0c3a2c); }
.product-visual.coffee{ background:linear-gradient(150deg,#5a3d24,#2c1c10); }
.product-visual.energy{ background:linear-gradient(150deg,#c9a24b,#8a6a26); }
.product-visual.icecream{ background:linear-gradient(150deg,#3d7ab0,#0c3a2c); }
.product-body{ padding:26px 24px 28px; flex:1; display:flex; flex-direction:column; }
.product-body h3{ font-size:1.2rem; }
.product-body .tags{ display:flex; gap:8px; flex-wrap:wrap; margin:14px 0 4px; }
.product-body .tags span{
  font-size:.72rem;
  font-weight:600;
  color:var(--green);
  background:var(--green-soft);
  padding:4px 10px;
  border-radius:999px;
}

/* Values */
.value-row{
  display:flex;
  gap:22px;
  padding:22px 0;
  border-bottom:1px solid var(--border);
  align-items:flex-start;
}
.value-row:last-child{ border-bottom:none; }
.value-row .icon-badge{ margin-bottom:0; flex-shrink:0; }
.value-row h4{ font-size:1.05rem; margin-bottom:.3em; }
.value-row p{ margin:0; font-size:.94rem; }

/* Split section */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.split-media{
  border-radius:var(--radius);
  background:linear-gradient(155deg,var(--green-dark),var(--green-darker));
  aspect-ratio:4/3;
  position:relative;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
}
.split-media svg{ width:34%; color:rgba(201,162,75,0.85); }
.split-media .grid-pattern{
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:34px 34px;
}
.check-list li{
  display:flex; gap:12px; margin-bottom:14px; font-size:.97rem; color:var(--text);
  align-items:flex-start;
}
.check-list svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.section-dark .check-list li{ color:#e7efe9; }

/* Timeline (roadmap) */
.roadmap{
  display:flex;
  justify-content:space-between;
  position:relative;
  margin-top:40px;
}
.roadmap::before{
  content:'';
  position:absolute;
  top:23px; left:5%; right:5%;
  height:2px;
  background:linear-gradient(90deg,var(--gold),rgba(201,162,75,0.25));
}
.roadmap-step{
  text-align:center;
  flex:1;
  position:relative;
}
.roadmap-step .dot{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--green-darker);
  border:3px solid var(--gold);
  color:var(--gold-light);
  font-family:'Poppins',sans-serif;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
  position:relative;
  z-index:1;
}
.roadmap-step h4{ font-size:1rem; margin-bottom:.3em; }
.roadmap-step p{ font-size:.84rem; }

/* Stat strip */
.stat-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}
.stat-strip .stat strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:2rem;
  color:var(--green-dark);
}
.stat-strip .stat span{ font-size:.85rem; color:var(--text-light); }

/* Certification strip */
.cert-strip{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}
.cert-chip{
  display:flex; align-items:center; gap:10px;
  background:var(--white);
  border:1px solid var(--border);
  padding:14px 20px;
  border-radius:999px;
  box-shadow:var(--shadow);
  font-weight:600;
  font-size:.88rem;
}
.cert-chip .icon-badge{
  width:34px; height:34px; border-radius:9px; margin:0;
}
.cert-chip .icon-badge svg{ width:18px; height:18px; }

/* CTA banner */
.cta-banner{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border-radius:24px;
  padding:56px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  color:var(--green-darker);
}
.cta-banner h2{ color:var(--green-darker); margin-bottom:.2em; }
.cta-banner p{ color:#4d3f1c; margin:0; }
.cta-banner .btn-gold{ background:var(--green-darker); color:var(--gold-light); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
}
.contact-info-card{
  background:linear-gradient(160deg,var(--green-darker),var(--green-dark));
  color:var(--white);
  border-radius:var(--radius);
  padding:38px 32px;
}
.contact-info-card h3{ color:var(--white); }
.contact-line{
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom:22px;
}
.contact-line .icon-badge{ background:rgba(201,162,75,0.18); margin-bottom:0; width:44px; height:44px; }
.contact-line .icon-badge svg{ width:20px; height:20px; color:var(--gold-light); }
.contact-line strong{ display:block; color:var(--white); font-size:.95rem; }
.contact-line span{ color:#c6d6cd; font-size:.9rem; }

.form-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-size:.85rem; font-weight:600; margin-bottom:7px; color:var(--text);
}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:10px;
  font-family:inherit;
  font-size:.95rem;
  background:var(--cream);
  color:var(--text);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,162,75,0.18);
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:.8rem; color:var(--text-light); margin-top:14px; text-align:center; }
.map-embed{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  margin-top:28px;
  box-shadow:var(--shadow);
}
.map-embed iframe{ width:100%; height:300px; border:0; display:block; }

/* FAQ */
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  padding:20px 24px;
  font-weight:600;
  list-style:none;
  display:flex; justify-content:space-between; align-items:center;
  font-size:.98rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  font-size:1.4rem;
  color:var(--gold);
  font-weight:400;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item .faq-body{ padding:0 24px 22px; color:var(--text-light); font-size:.94rem; }

/* Footer */
footer.site-footer{
  background:var(--green-darker);
  color:#b7cabf;
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-grid h4{ color:var(--white); font-size:.95rem; margin-bottom:1em; letter-spacing:.03em; }
.footer-grid p{ color:#a9bdb2; font-size:.9rem; }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid a{ color:#a9bdb2; font-size:.9rem; transition:color .15s; }
.footer-grid a:hover{ color:var(--gold-light); }
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo .word{ font-family:'Poppins',sans-serif; font-weight:700; color:var(--white); font-size:1.15rem; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; font-size:.82rem; color:#7e9188; flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color:#a9bdb2; }

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  bottom:26px; right:26px;
  width:58px; height:58px;
  border-radius:50%;
  background:#25d366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -6px rgba(0,0,0,0.35);
  z-index:900;
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; color:#fff; }

/* Reveal animation */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .process-strip{ grid-template-columns:repeat(3,1fr); row-gap:30px; }
  .process-detail{ grid-template-columns:repeat(2,1fr); }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ max-width:420px; margin:0 auto; }
  .split{ grid-template-columns:1fr; }
  .split-media{ order:-1; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px){
  nav.main-nav{
    position:fixed; inset:66px 0 0 0;
    background:var(--green-darker);
    padding:20px 24px;
    transform:translateX(100%);
    transition:transform .25s ease;
    overflow-y:auto;
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; align-items:stretch; gap:2px; }
  nav.main-nav a{ display:block; padding:14px 16px; }
  .nav-cta{ display:none; }
  .menu-toggle{ display:flex; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .process-strip{ grid-template-columns:repeat(2,1fr); }
  .process-detail{ grid-template-columns:1fr; }
  .roadmap{ flex-direction:column; gap:28px; }
  .roadmap::before{ display:none; }
  .form-row{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; text-align:center; }
  .footer-grid{ grid-template-columns:1fr; }
  .section{ padding:60px 0; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); row-gap:24px; }
}
