:root{
  --primary:#2c2c2c;
  --secondary:#6b7280;
  --accent:#404040;
  --bg:#FFFFFF;
  --section:#f4f4f5;
  --text:#333333;
  --muted:#5b6770;
  --card:#ffffff;
  --border:rgba(0,0,0,.10);
  --shadow:0 18px 45px rgba(0,0,0,.08);
  --shadowSoft:0 10px 25px rgba(0,0,0,.06);
  --radius:18px;
  --radiusSm:14px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}

.container{max-width:var(--container);margin:0 auto;padding:0 18px}
.section{padding:64px 0}
.section--light{background:var(--section)}
.section--tight{padding:44px 0}

.eyebrow{
  display:inline-flex;gap:10px;align-items:center;
  padding:6px 12px;border-radius:999px;
  background:rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.24);
  color:var(--primary);
  font-weight:700;
  letter-spacing:.2px;
  font-size:13px;
}
.eyebrow .dot{width:9px;height:9px;border-radius:50%;background:var(--accent)}

.h1{
  font-size:46px;line-height:1.08;margin:14px 0 12px;
  letter-spacing:-.7px;
}
.h2{font-size:34px;line-height:1.15;margin:0 0 12px;letter-spacing:-.4px}
.h3{font-size:22px;line-height:1.2;margin:0 0 8px}
.lead{font-size:18px;color:var(--muted);margin:0 0 18px}
.muted{color:var(--muted)}

.grid{display:grid;gap:18px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadowSoft);
  padding:18px;
}
.card--flat{box-shadow:none}

.badgeRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.badge{
  display:flex;gap:10px;align-items:center;
  padding:10px 12px;border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight:700;
  font-size:13px;
  backdrop-filter: blur(10px);
}
.badge .icon{
  width:22px;height:22px;border-radius:7px;
  display:grid;place-items:center;
  background:rgba(0,0,0,.16);
  border:1px solid rgba(0,0,0,.26);
  color:#fff;
}

.btnRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;border:1px solid transparent;
  font-weight:800;letter-spacing:.2px;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.btn--primary:hover{box-shadow:0 14px 30px rgba(0,0,0,.16)}
.btn--secondary{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.btn--ghost{
  background:#fff;
  border-color:var(--border);
  color:var(--primary);
}
.btn--ghost:hover{box-shadow:var(--shadowSoft)}
.btn--link{
  background:transparent;border-color:transparent;
  color:var(--primary);padding:0;border-radius:0;
}
.btn--sm{padding:10px 12px;border-radius:12px;font-weight:800}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:950;
  color:var(--primary);
  letter-spacing:.2px;
}
.brandMark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  color:#fff;
}
.navLinks{
  display:flex;gap:16px;align-items:center;
}
.navLinks a{
  font-weight:800;
  color:rgba(51,51,51,.86);
  padding:10px 10px;border-radius:12px;
}
.navLinks a:hover{background:rgba(0,0,0,.10);color:var(--primary)}
.navLinks a[aria-current="page"]{
  background:rgba(0,0,0,.15);
  color:var(--primary);
  font-weight:900;
}
.navCtas{display:flex;gap:10px;align-items:center}
.nav > .mobileToggle{margin-left:auto}

.mobileToggle{
  display:none;
  width:42px;
  height:42px;
  padding:0;
  align-items:center;
  justify-content:center;
}
.mobileToggleIcon{
  position:relative;
  width:18px;
  height:14px;
  display:inline-flex;
  flex-direction:column;
  justify-content:space-between;
}
.mobileToggleIcon span{
  display:block;
  width:100%;
  height:2px;
  border-radius:999px;
  background:var(--primary);
  transition:transform .22s ease, opacity .2s ease;
}
.mobileToggle.is-open .mobileToggleIcon span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.mobileToggle.is-open .mobileToggleIcon span:nth-child(2){
  opacity:0;
}
.mobileToggle.is-open .mobileToggleIcon span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(1200px 520px at 15% 18%, rgba(0,0,0,.18), transparent 60%),
    radial-gradient(1100px 560px at 78% 22%, rgba(0,0,0,.12), transparent 62%),
    linear-gradient(180deg, #ffffff, #f5f5f5);
  color:var(--text);
}
.heroInner{padding:74px 0}
.heroGrid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:stretch}
.hero .eyebrow{background:rgba(0,0,0,.14);border-color:rgba(0,0,0,.26)}
.hero .lead{color:rgba(51,51,51,.72)}
.hero .btn--secondary{background:#fff;border:1px solid var(--border);color:var(--primary)}
.hero .btn--secondary:hover{box-shadow:var(--shadowSoft)}
.hero .badgeRow{margin-top:14px}
.hero .badge{background:#fff;border-color:var(--border);color:rgba(51,51,51,.86);backdrop-filter:none}
.hero .badge .icon{color:var(--primary);background:rgba(0,0,0,.14);border-color:rgba(0,0,0,.22)}
.heroCard{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius);
  padding:18px;
  backdrop-filter: blur(12px);
  box-shadow:0 20px 55px rgba(0,0,0,.15);
}
.heroVisual{
  position:relative;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background:
    radial-gradient(140px 120px at 30% 40%, rgba(0,0,0,.20), transparent 60%),
    radial-gradient(170px 160px at 68% 58%, rgba(0,0,0,.16), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  overflow:hidden;
  min-height:360px;
}
.heroVisual--sober{
  min-height:360px;
}
.heroVisual::before{
  content:"";
  position:absolute;inset:-40px;
  background:
    radial-gradient(closest-side, rgba(0,0,0,.08), transparent 65%) 15% 20%/380px 380px no-repeat,
    radial-gradient(closest-side, rgba(0,0,0,.10), transparent 66%) 85% 35%/420px 420px no-repeat,
    radial-gradient(closest-side, rgba(0,0,0,.08), transparent 62%) 55% 85%/520px 520px no-repeat;
  transform:rotate(-6deg);
}

.heroShowcase{
  position:absolute;
  inset:18px;
  border-radius:calc(var(--radius) - 6px);
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.78);
  box-shadow:0 22px 55px rgba(0,0,0,.14);
  overflow:hidden;
  display:grid;
  grid-template-rows:auto 1fr auto;
}
.heroShowcaseTop{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:14px 14px 0;
}
.heroShowcaseTitle{
  font-weight:950;letter-spacing:-.2px;color:var(--primary);
  font-size:14px;
}
.heroShowcaseNav{display:flex;gap:8px;align-items:center}
.iconBtn{
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
  font-weight:950;color:var(--primary);
}
.iconBtn:hover{box-shadow:var(--shadowSoft)}
.heroShowcaseMedia{
  display:grid;place-items:center;
  padding:8px 14px 0;
}
.heroProductImg{
  width:min(340px, 100%);
  height:auto;
  filter: drop-shadow(0 26px 30px rgba(0,0,0,.18));
}
.heroShowcaseBottom{
  padding:10px 14px 14px;
  display:flex;flex-direction:column;gap:8px;
}
.heroProductName{
  font-weight:950;
  letter-spacing:-.3px;
  font-size:22px;
  line-height:1.15;
}
.heroProductMeta{
  color:rgba(51,51,51,.72);
  font-size:13px;
}
.heroShowcaseCtas{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
.heroShowcaseCtas .btn{padding:10px 12px;border-radius:12px}
.heroVisualContent{
  position:relative;
  height:100%;
  display:flex;flex-direction:column;justify-content:space-between;
  padding:18px;
}
.heroMiniStats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.miniStat{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:12px;
}
.miniStat .k{font-weight:950;font-size:20px;letter-spacing:-.4px}
.miniStat .v{font-size:13px;color:rgba(255,255,255,.82);margin-top:2px}

.form{
  display:grid;gap:10px;
}
.field{
  display:grid;gap:6px;
}
.label{font-weight:850;font-size:13px;color:rgba(255,255,255,.92)}
.input, .select, .textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.10);
  padding:12px 12px;
  color:#fff;
  outline:none;
}
.input::placeholder,.textarea::placeholder{color:rgba(255,255,255,.70)}
.textarea{min-height:90px;resize:vertical}
.formNote{font-size:12px;color:rgba(255,255,255,.80)}
.formMsg{font-size:13px;font-weight:800;margin-top:8px}
.formMsg--ok{color:#525252}
.formMsg--err{color:#ffd0d0}

.pillGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:20px}
.pill{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadowSoft);
}
.pillIcon{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(0,0,0,.14);
  border:1px solid rgba(0,0,0,.22);
  color:var(--primary);
  margin-bottom:12px;
}
.pill p{margin:0;color:var(--muted)}

.productsGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.productCard{
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadowSoft);
  overflow:hidden;
  display:flex;flex-direction:column;
}
.productImg{
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(0,0,0,.10), rgba(0,0,0,.14)),
    radial-gradient(180px 120px at 35% 45%, rgba(0,0,0,.18), transparent 60%),
    #fff;
  border-bottom:1px solid rgba(0,0,0,.10);
  display:grid;place-items:center;
  color:rgba(0,0,0,.80);
  font-weight:950;
  letter-spacing:.2px;
}
.productBody{padding:16px;display:grid;gap:10px}
.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  font-size:12px;font-weight:850;
  padding:6px 10px;border-radius:999px;
  background:rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.20);
  color:var(--primary);
}
.chip--green{background:rgba(0,0,0,.12);border-color:rgba(0,0,0,.22)}
.productTitle{font-weight:950;font-size:18px;letter-spacing:-.2px}
.productDesc{margin:0;color:var(--muted);font-size:14px}
.productMeta{display:flex;gap:10px;flex-wrap:wrap;color:rgba(51,51,51,.78);font-size:13px}
.productActions{display:flex;gap:10px;flex-wrap:wrap}

.testimonialSection{background:#fff}
.quote{
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
  padding:20px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, #ffffff, #fafafa);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.quote p{
  margin:0;
  color:#525252;
  line-height:1.65;
  font-size:16px;
}
.quote .who{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:6px;
  border-top:1px dashed rgba(0,0,0,.14);
}
.who .name{
  font-weight:900;
  color:#2d2d2d;
}
.stars{
  display:flex;
  gap:2px;
  color:#6b7280;
  font-size:15px;
}
.testimonialSlider{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
}
.testimonialViewport{
  overflow:hidden;
  width:100%;
  padding:4px 2px;
}
.testimonialTrack{
  display:flex;
  transition:transform .35s ease;
  will-change:transform;
}
.testimonialSlide{
  flex:0 0 calc(100% / 3);
  min-width:0;
  padding:8px;
}
.testimonialArrow{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--primary);
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}
.testimonialArrow:hover{
  background:rgba(0,0,0,.12);
  transform:translateY(-1px);
}

.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;gap:10px;
}
.list li{
  display:flex;gap:10px;align-items:flex-start;
  color:var(--muted);
}
.check{
  width:22px;height:22px;border-radius:8px;
  display:grid;place-items:center;
  background:rgba(0,0,0,.14);
  border:1px solid rgba(0,0,0,.22);
  color:#404040;
  flex:0 0 auto;
  margin-top:1px;
}

.footer{
  background:linear-gradient(180deg, rgba(0,0,0,.07), rgba(0,0,0,.02));
  border-top:1px solid rgba(0,0,0,.10);
}
.footerGrid{display:grid;grid-template-columns:1.1fr .9fr .9fr;gap:18px}
.finePrint{color:rgba(51,51,51,.65);font-size:13px;margin-top:12px}
.footer a{color:rgba(51,51,51,.78);font-weight:750}
.footer a:hover{color:var(--primary)}
.footer,
.footer .muted,
.footer .finePrint,
.footer span,
.footer p,
.footer div{
  font-weight:700;
}
.footer .muted{
  color:#33414b;
  font-weight:800;
}

.whatsappFloat{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#454545;
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 12px 24px rgba(0,0,0,.22);
  z-index:120;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.whatsappFloat:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(0,0,0,.26);
  filter:brightness(1.03);
}
.whatsappFloat svg{
  width:30px;
  height:30px;
  fill:currentColor;
}

.scrollTopBtn{
  position:fixed;
  right:20px;
  bottom:90px;
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(102,205,230,.60);
  background:linear-gradient(160deg,#ffffff 0%,#e6f6fc 100%);
  color:#0b7ea8;
  display:grid;
  place-items:center;
  box-shadow:0 12px 24px rgba(11,126,168,.20);
  z-index:119;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.scrollTopBtn.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.scrollTopBtn:hover{
  background:linear-gradient(160deg,#f1fbff 0%,#cfedf7 100%);
  box-shadow:0 16px 28px rgba(11,126,168,.30);
  filter:brightness(1.02);
}
.scrollTopBtn:focus-visible{
  outline:2px solid #0b7ea8;
  outline-offset:3px;
}
.scrollTopBtn svg{
  width:26px;
  height:26px;
}
@media (max-width:640px){
  .scrollTopBtn{
    right:16px;
    bottom:82px;
    width:48px;
    height:48px;
  }
  .scrollTopBtn svg{width:22px;height:22px}
}

.pageHero{
  background:
    linear-gradient(115deg, rgba(0,0,0,.96), rgba(0,0,0,.64)),
    radial-gradient(1200px 600px at 15% 15%, rgba(0,0,0,.18), transparent 55%),
    #2c2c2c;
  color:#fff;
  padding:46px 0;
}
.crumbs{display:flex;gap:10px;flex-wrap:wrap;align-items:center;color:rgba(255,255,255,.84);font-weight:750;font-size:13px}
.crumbs a{color:rgba(255,255,255,.88)}
.crumbs .sep{opacity:.7}

.kpiRow{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:16px}
.kpi{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px;
}
.kpi .k{font-weight:950;font-size:18px}
.kpi .v{color:rgba(255,255,255,.82);font-size:13px;margin-top:2px}

.toolbar{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:space-between;
  margin-top:14px;
}
.filters{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.filters .select{
  background:#fff;color:var(--text);
  border:1px solid var(--border);
}
.filters .select option{color:var(--text)}

.specGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.spec{
  padding:12px;border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
}
.spec .k{font-weight:950}
.spec .v{color:var(--muted);margin-top:2px}

.contactCards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.contactCard .h3{margin-bottom:6px}
.contactCard p{margin:0;color:var(--muted)}

.inlineForm{
  display:grid;gap:10px;
}
.inlineForm .label{color:var(--text)}
.inlineForm .input,.inlineForm .select,.inlineForm .textarea{
  background:#fff;color:var(--text);
  border:1px solid var(--border);
}
.inlineForm .input::placeholder,.inlineForm .textarea::placeholder{color:rgba(51,51,51,.55)}
.inlineForm .formNote{color:rgba(51,51,51,.68)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .heroVisual{min-height:320px}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .productsGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .pillGrid{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .contactCards{grid-template-columns:1fr}
  .kpiRow{grid-template-columns:1fr}
  .specGrid{grid-template-columns:1fr}
  .h1{font-size:38px}
  .testimonialSlide{flex-basis:50%}
}

@media (max-width: 860px){
  .navLinks{display:none}
  .mobileToggle{display:inline-flex}
  .navCtas .btn--ghost{display:none}
  .nav{gap:10px}
  .productsGrid{grid-template-columns:1fr}
}

@media (min-width: 861px){
  .mobileMenu,
  .mobileMenuBackdrop{
    display:none;
  }
}

.mobileMenu{
  position:fixed;
  top:0;
  right:0;
  width:min(82vw, 300px);
  height:100vh;
  background:#fff;
  border-left:1px solid rgba(0,0,0,.10);
  box-shadow:-16px 0 36px rgba(0,0,0,.14);
  padding:92px 14px 18px;
  display:flex;
  flex-direction:column;
  gap:4px;
  transform:translateX(106%);
  transition:transform .24s ease;
  z-index:95;
}
.mobileMenu.open{transform:translateX(0)}
.mobileMenuClose{
  position:absolute;
  top:14px;
  right:12px;
  width:34px;
  height:34px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  color:var(--primary);
  border-radius:10px;
  font-size:24px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.mobileMenu a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  font-weight:900;
  color:rgba(51,51,51,.90);
}
.mobileMenuBackdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:90;
}
.mobileMenuBackdrop.open{
  opacity:1;
  pointer-events:auto;
}
.mobileMenu a:hover{background:rgba(0,0,0,.10);color:var(--primary)}
.mobileMenu a[aria-current="page"]{
  background:rgba(0,0,0,.15);
  color:var(--primary);
  font-weight:950;
}

/* Corporate hero and categories layout */
body{padding-top:78px}

.header--corporate{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
  box-shadow:none;
}

.nav--corporate{padding:14px 0}
.header--corporate .brand{
  color:#1f1f1f;
  font-weight:900;
  letter-spacing:.5px;
}
.brandLogo{
  height:56px;
  width:auto;
  display:block;
  object-fit:contain;
}
.footerBrandLogo{
  height:64px;
}
.header--corporate .brandMark{
  width:42px;
  height:30px;
  border-radius:4px;
  background:#404040;
  box-shadow:none;
}
.header--corporate .navLinks{
  gap:14px;
}
.header--corporate .navLinks a{
  font-weight:700;
  color:rgba(31,31,31,.8);
  background:transparent;
}
.header--corporate .navLinks a:hover{
  background:transparent;
  color:#111;
}
.header--corporate .navLinks a[aria-current="page"]{
  background:transparent;
  color:#111;
  font-weight:850;
}
.navIcons{display:flex;align-items:center;gap:10px}
.navIconBtn{
  width:38px;
  height:38px;
  border:none;
  border-radius:12px;
  background:#f1f1f1;
  color:#333;
  cursor:pointer;
  box-shadow:0 5px 12px rgba(0,0,0,.10);
}

.hero--corporate{
  background:
    linear-gradient(rgba(255,255,255,.62), rgba(255,255,255,.62)),
    /* url("../img/hero bg.png"), */
    #f7f7f7;
  background-size:auto, cover, auto;
  background-position:center, center, center;
  background-repeat:no-repeat, no-repeat, no-repeat;
}

.heroInner--corporate{padding:0}
.heroGrid--corporate{
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:54px;
}
.heroContent{display:flex;flex-direction:column;justify-content:center}
.heroTitle{
  font-size:clamp(44px, 7.2vw, 72px);
  font-weight:800;
  letter-spacing:-.8px;
  margin:0 0 22px;
  color:#1f1f1f;
  line-height:1.05;
  transition:opacity .22s ease, transform .22s ease;
}
.heroTitle.is-changing{opacity:.2;transform:translateY(6px)}
.heroBtnRow{margin-top:0}
.btn--dark,
.btn--mid{
  border-radius:8px;
  padding:12px 28px;
  min-width:136px;
  font-size:18px;
  color:#fff;
  box-shadow:none;
}
.btn--dark{background:#595959}
.btn--mid{background:#707070}
.btn--dark:hover,.btn--mid:hover{filter:brightness(1.05)}

.heroProductVisual{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}
.heroPotImg{
  display:block;
  width:100%;
  height:clamp(220px, 42vw, 460px);
  object-fit:cover;
  border-radius:0;
  box-shadow:none;
  transform:none;
  transition:opacity .22s ease, transform .22s ease;
}
.heroPotImg.is-changing{opacity:.2;transform:translateY(6px)}

.categoriesSection{
  background:#f6f6f6;
  padding:72px 0;
}
.categoriesTitle{
  text-align:center;
  margin:0 0 34px;
  color:#222;
}
.categoriesGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.categoriesGrid--five{
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:1140px;
  margin:0 auto;
}
.categoryCard{
  background:#fff;
  border-radius:18px;
  padding:22px 18px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  text-align:center;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.categoryCard:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 34px rgba(0,0,0,.13);
}
.categoryCard img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  object-position:center;
  background:#fff;
  border-radius:14px;
  margin:0 auto 16px;
}
.categoriesGrid--five .categoryCard:nth-child(4){grid-column:1 / span 1}
.categoriesGrid--five .categoryCard:nth-child(5){grid-column:2 / span 1}
.categoryCard h3{
  margin:0;
  font-size:20px;
  line-height:1.35;
  font-weight:800;
  text-transform:none;
  min-height:2.7em;
  display:grid;
  align-items:center;
  color:#222;
}

/* Product detail v2 */
.productPageMain{
  padding-top:12px;
  padding-bottom:24px;
  min-height:calc(100vh - 88px);
}
.productTopBar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:8px 14px;
  margin-bottom:10px;
}
.productCrumbs{
  color:rgba(51,51,51,.72);
  margin-bottom:0;
  flex:1 1 auto;
  min-width:0;
  line-height:1.4;
}
.productCrumbs a{color:var(--primary)}
.productCrumbs .sep{color:rgba(51,51,51,.45)}
.productSearchWrap{
  margin:0;
  position:relative;
  z-index:20;
  flex:0 0 auto;
}
.productSearchRow{
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 10px;
}
.productSearchLabel{
  font-weight:700;
  font-size:13px;
  color:rgba(51,51,51,.72);
  white-space:nowrap;
}
.productSearchField{
  width:min(100%,280px);
  flex:0 0 auto;
}
.productSearchInput{
  width:100%;
  padding:8px 12px;
  font-size:14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:rgba(31,31,31,.92);
  -webkit-text-fill-color:rgba(31,31,31,.92);
}
.productSearchInput::placeholder{
  color:rgba(51,51,51,.55);
}
.productSearchInput:focus{
  border-color:rgba(37,99,235,.4);
  outline:none;
  box-shadow:0 0 0 2px rgba(37,99,235,.1);
}
.productSearchPanel{
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  left:auto;
  width:min(100vw - 24px, 320px);
  margin-top:0;
  padding:6px 0;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  z-index:50;
  overflow:hidden;
}
.productSearchMeta{
  padding:6px 12px 4px;
  font-size:11px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.productSearchList{
  display:flex;
  flex-direction:column;
  max-height:min(280px,42vh);
  overflow-y:auto;
  overflow-x:hidden;
}
.productSearchItem{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  padding:8px 12px;
  border:0;
  border-bottom:1px solid rgba(0,0,0,.05);
  background:#fff;
  text-align:left;
  cursor:pointer;
  transition:background .15s ease;
}
.productSearchItem:last-child{border-bottom:0}
.productSearchItem:hover{background:rgba(37,99,235,.06)}
.productSearchItem.is-active{
  background:rgba(37,99,235,.1);
}
.productSearchItemThumb{
  width:40px;
  height:40px;
  flex:0 0 40px;
  object-fit:contain;
  border-radius:6px;
  border:1px solid rgba(0,0,0,.06);
  background:#fafbfc;
}
.productSearchItemText{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  flex:1;
}
.productSearchItemName{
  font-size:13px;
  font-weight:750;
  line-height:1.3;
  color:rgba(31,31,31,.92);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.productSearchItemMeta{
  font-size:11px;
  color:rgba(51,51,51,.58);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.productTopViewport{
  min-height:min(88vh, 900px);
  display:flex;
  align-items:stretch;
  padding:12px 14px;
}
.productTopViewport[hidden]{display:none!important}
.card.productTopViewport{padding:14px 16px}
.is-browseMode .relatedSection{margin-top:8px}
.productTopGrid{
  width:100%;
  display:grid;
  grid-template-columns:.58fr 1.42fr;
  gap:14px;
  align-items:stretch;
  opacity:1;
  transition:opacity .24s ease, transform .24s ease;
}
.productTopGrid.is-switching{
  opacity:.55;
  transform:translateY(4px);
}
.galleryCol{
  display:grid;
  grid-template-rows:auto auto;
  gap:8px;
  min-height:0;
  align-content:start;
  align-items:start;
}
.galleryMain{
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  display:grid;
  place-items:center;
  min-height:280px;
  max-height:min(52vh, 460px);
  overflow:hidden;
  width:100%;
  align-self:start;
}
.galleryMain.galleryStage{
  display:block;
  position:relative;
  padding:0;
}
.galleryStage{
  position:relative;
  width:100%;
  min-height:280px;
  height:auto;
}
.galleryStage .galleryNav{transform:translateY(-50%)}
.galleryStage .galleryNav:hover{transform:translateY(-50%) scale(1.04)}
.galleryNav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:rgba(255,255,255,.92);
  color:var(--primary);
  font-size:26px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
  transition:background .18s ease, transform .18s ease;
}
.galleryNav:hover{
  background:#fff;
  transform:translateY(-50%) scale(1.04);
}
.galleryNav:focus-visible{
  outline:2px solid rgba(0,0,0,.85);
  outline-offset:2px;
}
.galleryNav--prev{left:10px}
.galleryNav--next{right:10px}
.galleryMain img{
  width:100%;
  height:100%;
  max-height:min(52vh, 460px);
  object-fit:contain;
  display:block;
  margin:0 auto;
  --img-zoom:1;
  --img-pan-x:0px;
  --img-pan-y:0px;
  transform:translate(var(--img-pan-x), var(--img-pan-y)) scale(var(--img-zoom));
  transform-origin:center center;
  transition:opacity .24s ease, transform .24s ease;
  will-change:transform;
  cursor:default;
  touch-action:pan-y;
}
.galleryMain img.imageChanging{
  opacity:.42;
  transform:translate(var(--img-pan-x), var(--img-pan-y)) scale(calc(var(--img-zoom) * .985));
}
.galleryStage.is-zoomed img{
  cursor:move;
  touch-action:none;
  transition:opacity .24s ease;
}
.galleryStage.is-panning img{cursor:grabbing}
.galleryStage.is-panning img{transition:none}
.galleryZoomControls{
  position:absolute;
  top:12px;
  right:12px;
  z-index:4;
  display:flex;
  gap:8px;
}
.galleryZoomBtn{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.16);
  background:rgba(255,255,255,.92);
  color:#1f5367;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.galleryZoomBtn:hover{background:#fff}
.galleryThumbs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(120px,100%),1fr));
  gap:6px;
  width:100%;
  align-self:start;
}
/* Product detail: 3 thumbs → one row; fewer → no empty columns. */
.galleryCol .galleryThumbs{
  grid-template-columns:repeat(auto-fit,minmax(min(140px,100%),1fr));
}
.galleryCol .galleryThumbs:has(.thumbBtn:nth-child(3):last-child){
  grid-template-columns:repeat(3,minmax(0,1fr));
}
/* One thumb: same cell width as each thumb when three are shown (no full-width stretch). */
.galleryCol .galleryThumbs:has(.thumbBtn:only-child){
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.galleryCol .galleryThumbs .thumbBtn{
  min-width:0;
}
.thumbBtn{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:10px;
  padding:4px;
  cursor:pointer;
  transition:border-color .18s ease, transform .18s ease;
}
.thumbBtn img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
}
.thumbLabel{
  display:block;
  margin-top:2px;
  font-size:13px;
  font-weight:800;
  color:rgba(31,31,31,.72);
  text-align:center;
}
.thumbBtn.is-active{
  border-color:rgba(0,0,0,.34);
  transform:translateY(-2px);
}
.detailsCol{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:8px;
  min-height:0;
  align-self:stretch;
}
.detailsCol .h2{
  font-size:clamp(26px,3.6vw,34px);
  line-height:1.15;
  margin:0;
}
.productSpecsPanel{
  padding:2px 0 6px;
  width:100%;
}
.productInfoSplit{
  display:grid;
  grid-template-columns:max-content minmax(0, 1fr);
  gap:12px 36px;
  align-items:start;
  width:100%;
}
.techInfoCol,
.featureInfoCol{
  border:none;
  border-radius:0;
  background:transparent;
  padding:0;
  min-width:0;
}
.techInfoCol{
  max-width:min(340px, 38vw);
  padding-right:16px;
  box-sizing:border-box;
}
.featureInfoCol{
  padding-left:8px;
  box-sizing:border-box;
}
.infoTitle{
  font-weight:900;
  margin-bottom:6px;
  font-size:16px;
}
.productLead{margin:0;color:rgba(51,51,51,.74);font-size:17px;line-height:1.45}
.featureInfoCol .techDescList{
  grid-template-columns:1fr;
  gap:4px;
  width:100%;
}
.featureInfoCol .techDescItem{
  padding:4px 0;
  gap:10px;
}
.featureInfoCol .techDescItem .k{
  flex:0 0 auto;
  min-width:min(12.5rem, 46%);
  max-width:none;
  font-size:14px;
  font-weight:850;
  line-height:1.4;
}
.featureInfoCol .techDescItem .v{
  font-size:16px;
  line-height:1.4;
  text-align:left;
  flex:1;
  min-width:0;
}
.techInfoCol .techDescList{gap:5px;width:100%}
.techInfoCol .techDescItem{padding:4px 0;max-width:100%}
.techInfoCol .techDescItem .k{
  font-size:15px;
  min-width:4.5rem;
  flex:0 0 auto;
}
.techInfoCol .techDescItem .v{flex:0 1 auto}
.techInfoCol .techDescItem .v{font-size:16px}
.specGrid--compact .spec{padding:10px}
.techDescList{
  display:grid;
  grid-template-columns:1fr;
  gap:6px 18px;
}
.techDescItem{
  display:flex;
  align-items:baseline;
  gap:8px;
  padding:2px 0;
}
.techDescItem .k{
  font-weight:900;
  color:var(--text);
  min-width:110px;
}
.techDescItem .v{
  color:var(--text);
  font-weight:800;
}
.productActionRow{
  margin-top:4px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.detailsCol .productActionRow{
  justify-content:flex-end;
  gap:12px 18px;
  width:100%;
}
.productActionRow--featureCol{
  margin-top:18px;
  width:100%;
  max-width:100%;
  justify-content:flex-start;
}
.qtyWrap{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
}
.qtyInput{
  width:78px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:10px 8px;
}
.relatedSection{padding-top:18px}
.productPageMain .relatedSection{padding-top:14px}
.relatedHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.relatedGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(min(240px,100%),1fr));
  gap:12px;
  justify-content:start;
}
.relatedCard{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadowSoft);
  padding:8px;
  text-align:left;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
}
.relatedCard:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 32px rgba(0,0,0,.11);
}
.relatedCard.is-active{
  border-color:rgba(0,0,0,.30);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
.relatedCard img{
  width:100%;
  aspect-ratio:4/3;
  border-radius:10px;
  object-fit:contain;
  background:#fff;
}
.relatedName{
  margin-top:8px;
  font-weight:850;
  font-size:14px;
  line-height:1.3;
}
.relatedBrand{
  margin-top:5px;
  color:rgba(51,51,51,.66);
  font-size:12px;
  font-weight:700;
}
.relatedGrid--brands{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.relatedGrid--models{
  grid-template-columns:repeat(auto-fill,minmax(min(220px,100%),1fr));
}
.relatedCard--brand{
  text-align:center;
}
.relatedCard--brand img{
  background:#fff;
  padding:12px;
}
.relatedCard--brand .relatedName{
  font-size:16px;
  letter-spacing:.2px;
}
.relatedCard--brand .relatedBrand--badge{
  display:inline-flex;
  margin-top:8px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  color:rgba(31,31,31,.78);
}
.relatedHeader .relatedMetaText{margin-left:4px}
.relatedBackBtn{
  border:0;
  background:transparent;
  color:var(--primary);
  font-weight:850;
  font-size:13px;
  cursor:pointer;
  padding:0;
  margin-right:10px;
}
.relatedBackBtn:hover{text-decoration:underline}
.relatedEmpty{
  grid-column:1 / -1;
  padding:18px 12px;
  text-align:center;
}
.relatedBrand--badge{
  display:inline-flex;
  margin-top:8px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.16);
  background:rgba(0,0,0,.06);
  color:var(--primary);
  font-weight:800;
}

/* About: leadership + mission/vision */
.aboutCore{background:#f6f6f6}
.aboutSectionTitle{
  font-size:22px;
  font-weight:950;
  letter-spacing:-.2px;
  margin:0 0 14px;
  color:#1f1f1f;
}

.leadershipCard{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:22px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}
.leaderMedia{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  min-height:280px;
}
.leaderImg{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.leaderFallback{
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  font-weight:950;
  letter-spacing:2px;
  font-size:46px;
  color:#1f1f1f;
}
.leaderMedia--fallback .leaderImg{display:none}
.leaderMedia--fallback .leaderFallback{display:grid}

.leaderBody{padding:6px 6px 6px 2px}
.leaderName{margin:6px 0 4px}
.leaderRole{
  color:#1f1f1f;
  font-weight:900;
  margin-bottom:12px;
}
.leaderText{margin:0;max-width:70ch;line-height:1.75}

.directionSection{
  margin-top:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.70));
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:26px 18px;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  text-align:center;
}
.directionKicker{
  font-weight:900;
  letter-spacing:2.4px;
  color:#0b7ea8;
  font-size:12px;
}
.directionTitle{
  margin:10px 0 8px;
  font-size:36px;
  letter-spacing:-.5px;
  color:#1f1f1f;
}
.directionLead{
  margin:0 auto 18px;
  color:rgba(51,51,51,.70);
  max-width:70ch;
  line-height:1.75;
}
.directionGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:14px;
}
.directionCard{
  text-align:left;
  background:rgba(255,255,255,.85);
  border-radius:20px;
  padding:18px 18px 16px;
  border:2px solid rgba(102,205,230,.60);
  box-shadow:0 14px 30px rgba(11,126,168,.10);
}
.directionIcon{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(102,205,230,.16);
  border:1px solid rgba(102,205,230,.40);
  margin:0 auto 10px;
}
.directionCardTitle{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.3px;
  color:#1f1f1f;
  text-align:center;
}
.directionCardText{
  margin:0;
  color:rgba(51,51,51,.72);
  line-height:1.75;
}

@media (max-width: 980px){
  .leadershipCard{grid-template-columns:1fr}
  .leaderMedia{min-height:240px}
  .directionTitle{font-size:30px}
}
@media (max-width: 640px){
  .directionGrid{grid-template-columns:1fr}
  .directionSection{padding:22px 14px}
}

/* Products listing (ecommerce style) */
.productsHeroBanner{
  position:relative;
  width:100%;
  padding:54px 0;
  background:
    radial-gradient(900px 420px at 18% 40%, rgba(0,0,0,.22), transparent 62%),
    radial-gradient(800px 380px at 80% 55%, rgba(0,0,0,.20), transparent 60%),
    linear-gradient(180deg, #ffffff, #f5f5f5);
  overflow:hidden;
}
.productsHeroBanner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(255,255,255,.88), rgba(240,240,240,.72));
  pointer-events:none;
}
.productsHeroOverlay{display:none}
.productsHeroInner{position:relative;z-index:1;display:flex;justify-content:center;align-items:center}
.productsHeroTitle{
  margin:0;
  font-size:44px;
  font-weight:950;
  letter-spacing:-.6px;
  color:#1f1f1f;
}

.productsListing{background:#f6f6f6}
.productsLayout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:22px;
  align-items:start;
}
.filterCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
  overflow:hidden;
}
.filterCardTitle{
  padding:16px 16px 12px;
  font-weight:950;
  letter-spacing:-.2px;
  font-size:18px;
  color:#1f1f1f;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.filterList{
  max-height:520px;
  overflow:auto;
}
.filterItem{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border:0;
  background:#fff;
  cursor:pointer;
  border-bottom:1px solid rgba(0,0,0,.06);
  text-align:left;
}
.filterItem:last-child{border-bottom:0}
.filterLabel{font-weight:850;color:rgba(31,31,31,.88)}
.filterCount{
  min-width:34px;
  text-align:center;
  font-weight:900;
  font-size:12px;
  color:rgba(0,0,0,.88);
  background:rgba(0,0,0,.14);
  border:1px solid rgba(0,0,0,.24);
  padding:6px 10px;
  border-radius:999px;
}
.filterItem:hover{background:rgba(0,0,0,.08)}
.filterItem.is-active{
  background:rgba(0,0,0,.06);
}
.filterItem.is-active .filterCount{
  background:rgba(0,0,0,.10);
  border-color:rgba(0,0,0,.18);
}

.productsToolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}
.resultsText{font-weight:850;color:rgba(31,31,31,.78)}
.toolbarControls{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.showControl{display:inline-flex;align-items:center;gap:10px;font-weight:850;color:rgba(31,31,31,.70)}
.showSelect{min-width:86px}
.viewBtn{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  cursor:pointer;
  font-weight:950;
  color:rgba(31,31,31,.80);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.viewBtn.is-active{
  border-color:rgba(0,0,0,.22);
  background:rgba(0,0,0,.06);
  color:var(--primary);
}
.filterToggleBtn{
  display:none;
  height:40px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}

.productsGrid--listing{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,minmax(320px,1fr));
  gap:22px;
}
.productsGrid--listing.is-list{
  grid-template-columns:1fr;
}
.plCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.plCard:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}
.productsGrid--listing.is-list .plCard{
  flex-direction:row;
  align-items:stretch;
}
.plMedia{
  position:relative;
  background:#fff;
  padding:16px 16px 8px;
  display:grid;
  place-items:center;
  min-height:260px;
}
.productsGrid--listing.is-list .plMedia{
  width:260px;
  flex:0 0 auto;
}
.plImg{
  width:100%;
  max-width:360px;
  max-height:240px;
  aspect-ratio: 4/3;
  object-fit:contain;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.16));
}
.plHover{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .18s ease, transform .18s ease;
}
.plCard:hover .plHover{opacity:1;transform:translateY(0)}
.plIconBtn{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:rgba(31,31,31,.80);
  box-shadow:0 12px 26px rgba(0,0,0,.10);
}
.plIconBtn:hover{transform:translateY(-1px)}

.plBody{
  padding:14px 14px 16px;
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
}
.plName{
  font-weight:950;
  letter-spacing:-.2px;
  color:#1f1f1f;
  line-height:1.25;
  text-align:center;
}
.plName--static{cursor:default}
.plCard--listingOnly .plMedia{cursor:default}
.plCard--listingOnly .plImg{pointer-events:none}
.categoryCard--browse:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(0,0,0,.11);
}
.plPrice{
  display:none;
  font-weight:950;
  color:var(--primary);
}
.detailsCol .plPrice{font-size:20px}
.plActions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.plCartBtn{white-space:nowrap}

.loadMoreRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}

/* Mobile filter drawer */
.filterDrawer{display:none}
.filterDrawer.open{display:block}
.filterDrawerBackdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.38);
  z-index:90;
}
.filterDrawerPanel{
  position:fixed;
  top:0;left:0;
  width:min(360px, 92vw);
  height:100vh;
  background:#fff;
  z-index:91;
  box-shadow:0 26px 65px rgba(0,0,0,.20);
  display:flex;
  flex-direction:column;
}
.filterDrawerTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.filterDrawerPanel .filterList{max-height:none;overflow:auto}

@media (max-width: 1080px){
  .productsGrid--listing{grid-template-columns:repeat(2,minmax(280px,1fr))}
}
@media (max-width: 980px){
  .productsLayout{grid-template-columns:1fr}
  .filterSidebar{display:none}
  .filterToggleBtn{display:inline-flex}
}
@media (max-width: 640px){
  .productsHeroTitle{font-size:36px}
  .productsGrid--listing{grid-template-columns:1fr}
  .plMedia{min-height:220px}
  .plImg{max-height:200px}
  .productsToolbar{align-items:flex-start}
  .resultsText{font-size:14px}
  .productsGrid--listing.is-list .plCard{flex-direction:column}
  .productsGrid--listing.is-list .plMedia{width:auto}
  .productsGrid--listing .plBody{
    text-align:center;
    justify-items:center;
  }
  .productsGrid--listing .plActions{
    justify-content:center;
    width:100%;
  }
}

@media (max-width: 1080px){
  .navLinks{gap:8px}
  .navLinks a{padding:9px 7px;font-size:14px}
  .heroGrid--corporate{gap:24px}
  .categoriesGrid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width: 980px){
  .heroInner--corporate{padding:0}
  .heroGrid--corporate{grid-template-columns:1fr}
  .heroContent{align-items:flex-start}
  .heroProductVisual{margin-top:0}
  .categoriesGrid{grid-template-columns:1fr}
  .categoriesGrid--five{grid-template-columns:1fr}
  .categoriesGrid--five .categoryCard:nth-child(4),
  .categoriesGrid--five .categoryCard:nth-child(5){grid-column:auto}
  #homeCategoryGrid .categoryCard{grid-column:auto !important}
  .productTopViewport{min-height:auto}
  .productTopGrid{grid-template-columns:1fr}
  .galleryMain{max-height:none;min-height:260px}
  .productTopViewport{min-height:auto}
  .productInfoSplit{grid-template-columns:1fr;gap:10px}
  .techInfoCol{max-width:none;padding-right:0}
  .featureInfoCol{margin-top:4px;padding-top:10px;padding-left:0}
  .featureInfoCol .techDescItem .k{min-width:10rem}
  .relatedGrid{grid-template-columns:repeat(auto-fill,minmax(min(200px,100%),1fr))}
  .relatedGrid--brands{grid-template-columns:repeat(2,minmax(0,1fr))}
  .techDescList{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .relatedGrid--brands{grid-template-columns:1fr}
}

@media (max-width: 860px){
  .navIcons{display:none}
}

@media (max-width: 640px){
  body{padding-top:72px}
  .heroContent{align-items:center}
  .heroTitle{font-size:42px}
  .heroTitle{text-align:center}
  .heroPotImg{
    width:100%;
    height:220px;
  }
  .btn--dark,.btn--mid{
    width:auto;
    min-width:170px;
    justify-content:center;
    font-size:16px;
    padding:10px 18px;
  }
  .heroBtnRow{
    width:auto;
    justify-content:center;
  }
  .categoriesGrid{grid-template-columns:1fr}
  .categoriesGrid--five{grid-template-columns:1fr}
  .categoriesSection{padding:56px 0}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .relatedGrid{grid-template-columns:1fr}
  .testimonialSlider{gap:8px}
  .testimonialArrow{
    width:34px;
    height:34px;
    font-size:22px;
  }
  .testimonialSlide{flex-basis:100%}
}

/* Testimonials page — image grid only */
.testimonialPage{padding-top:48px;padding-bottom:72px}

.testimonialGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:stretch;
}

.testimonialSlot{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#f7f7f7;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  padding:8px;
}
.testimonialSlot--empty{
  border-style:dashed;
  border-color:rgba(0,0,0,.18);
  background:rgba(0,0,0,.03);
  box-shadow:none;
}
.testimonialSlot--empty img{display:none!important}

.testimonialSlot img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

@media (max-width:768px){
  .testimonialGrid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .testimonialSlot{
    border-radius:20px;
    aspect-ratio:4/3;
  }
}

/* -------------------------------------------- */
/* Premium water-inspired theme (May 2026) */
/* -------------------------------------------- */
:root{
  --primary:#2d7fa4;
  --secondary:#66cde6;
  --accent:#8adcf0;
  --bg:#ffffff;
  --section:#f2fbff;
  --text:#22343d;
  --muted:#5a717b;
  --card:#ffffff;
  --border:rgba(102,205,230,.34);
  --shadow:0 16px 38px rgba(46,135,169,.12);
  --shadowSoft:0 8px 22px rgba(46,135,169,.10);
}

body{
  font-family:"Roboto",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 100% -2%, rgba(138,220,240,.20), transparent 58%),
    radial-gradient(800px 500px at -5% 15%, rgba(102,205,230,.17), transparent 60%),
    #fff;
}
.h1,.h2,.h3,.productsHeroTitle,.pageBannerTitle,.navLinks a,.btn,.pageBannerCrumb{
  font-family:"Google Sans","Product Sans","Roboto","Segoe UI",Arial,sans-serif;
}

.header--corporate{
  background:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(102,205,230,.32);
  backdrop-filter:blur(14px);
}
.header--corporate .navLinks a{
  color:#355562;
  border-radius:999px;
  transition:all .24s ease;
}
.header--corporate .navLinks a:hover,
.header--corporate .navLinks a[aria-current="page"]{
  background:rgba(138,220,240,.25);
  color:#1f4f63;
}
.btn--primary{
  background:#e5e7eb;
  color:#2f3b43;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.btn--primary:hover{
  transform:translateY(-1px);
  background:#dfe3e8;
}
.btn--ghost{
  border-color:rgba(102,205,230,.44);
  color:#2e6a82;
}

/* Full-width water banners */
.pageBanner,
.productsHeroBanner{
  position:relative;
  overflow:hidden;
  min-height:220px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(240,251,255,.62)),
    radial-gradient(900px 340px at 20% 20%, rgba(138,220,240,.16), transparent 60%),
    radial-gradient(900px 340px at 80% 75%, rgba(102,205,230,.14), transparent 62%),
    url("https://images.unsplash.com/photo-1564415051543-cb73a7468103?auto=format&fit=crop&w=1800&q=80");
  background-size:auto, auto, auto, cover;
  background-repeat:no-repeat;
  background-position:center center;
  border-bottom:1px solid rgba(102,205,230,.28);
}

.productsHeroBanner--about{
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(240,251,255,.62)),
    radial-gradient(900px 340px at 20% 20%, rgba(138,220,240,.16), transparent 60%),
    radial-gradient(900px 340px at 80% 75%, rgba(102,205,230,.14), transparent 62%),
    url("../img/banner images/about us banner.jpg");
  background-position:center center;
}
.productsHeroBanner--contact{
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(240,251,255,.62)),
    radial-gradient(900px 340px at 20% 20%, rgba(138,220,240,.16), transparent 60%),
    radial-gradient(900px 340px at 80% 75%, rgba(102,205,230,.14), transparent 62%),
    url("../img/banner images/contact banner.jpg");
  background-position:center center;
}
.productsHeroBanner--products{
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(240,251,255,.62)),
    radial-gradient(900px 340px at 20% 20%, rgba(138,220,240,.16), transparent 60%),
    radial-gradient(900px 340px at 80% 75%, rgba(102,205,230,.14), transparent 62%),
    url("../img/banner images/products banner.png");
  background-position:center center;
}
.productsHeroBanner--testimonial{
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(240,251,255,.62)),
    radial-gradient(900px 340px at 20% 20%, rgba(138,220,240,.16), transparent 60%),
    radial-gradient(900px 340px at 80% 75%, rgba(102,205,230,.14), transparent 62%),
    url("../img/banner images/testimonial banner.jpg");
  background-position:center center;
}
.productsHeroBanner::after,
.pageBanner::after{
  content:none;
}
.productsHeroInner,
.pageBannerInner{
  position:relative;
  z-index:1;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:12px;
  text-align:center;
}
.productsHeroTitle,
.pageBannerTitle{
  margin:0;
  color:#1f5367;
  letter-spacing:-.4px;
  font-weight:800;
  font-size:clamp(32px,5vw,52px);
}
.pageBannerSub{
  margin:0;
  max-width:760px;
  color:#476875;
  font-size:17px;
}
.pageBannerCrumb{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(102,205,230,.45);
  background:rgba(255,255,255,.62);
  color:#2d6176;
  font-size:13px;
  font-weight:700;
}

@media (max-width:768px){
  .pageBanner,
  .productsHeroBanner{
    min-height:170px;
  }
  .productsHeroInner,
  .pageBannerInner{
    min-height:170px;
    padding:14px 0;
  }
}

/* Premium home hero */
.hero--premium{
  --hero-blue:#0b7ea8;
  --hero-blue-deep:#065a78;
  --hero-blue-light:#8adcf0;
  --hero-blue-soft:#a9d4e8;
  --hero-ease:cubic-bezier(0.22,1,0.36,1);
  position:relative;
  overflow:hidden;
  margin-top:-78px;
  padding:calc(78px + 22px) 0 0;
  background:transparent;
  color:#12313d;
}
.heroPremium__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:var(--hero-blue-soft);
}
.heroPremium__glowOrb{
  position:absolute;
  border-radius:50%;
  filter:blur(48px);
  opacity:.55;
  z-index:0;
  pointer-events:none;
  animation:heroOrbPulse 8s var(--hero-ease) infinite alternate;
}
.heroPremium__glowOrb--1{
  width:min(420px, 52vw);
  height:min(420px, 52vw);
  top:8%;
  right:6%;
  background:rgba(102,205,230,.42);
}
.heroPremium__glowOrb--2{
  width:min(360px, 44vw);
  height:min(360px, 44vw);
  bottom:18%;
  left:-4%;
  background:rgba(138,220,240,.36);
  animation-delay:-3s;
}
@keyframes heroOrbPulse{
  from{transform:translate3d(0,0,0) scale(1)}
  to{transform:translate3d(0,-14px,0) scale(1.06)}
}
.heroPremium__particles,
.heroPremium__droplets{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}
.heroPremium__particle{
  position:absolute;
  width:calc(4px + (var(--i) % 5) * 1px);
  height:calc(4px + (var(--i) % 5) * 1px);
  border-radius:50%;
  left:calc((var(--i) * 17 + 11) % 100 * 1%);
  top:calc((var(--i) * 23 + 7) % 100 * 1%);
  background:radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(138,220,240,.85) 55%, transparent 100%);
  box-shadow:0 0 14px rgba(102,205,230,.55);
  opacity:0;
  animation:heroParticleFloat calc(6s + (var(--i) % 6) * 0.7s) var(--hero-ease) infinite;
  animation-delay:calc(var(--i) * 0.35s);
}
.hero--premium.is-loaded .heroPremium__particle{opacity:.75}
@keyframes heroParticleFloat{
  0%,100%{transform:translate3d(0,0,0);opacity:.35}
  50%{transform:translate3d(0,-22px,0);opacity:.9}
}
.heroPremium__droplet{
  position:absolute;
  width:calc(8px + (var(--i) % 4) * 4px);
  height:calc(8px + (var(--i) % 4) * 4px);
  border-radius:50%;
  left:calc((var(--i) * 29 + 5) % 100 * 1%);
  bottom:-12%;
  background:radial-gradient(circle at 30% 28%, rgba(255,255,255,.9), rgba(102,205,230,.35) 52%, rgba(11,126,168,.12) 100%);
  border:1px solid rgba(255,255,255,.55);
  opacity:0;
  animation:heroDropletRise calc(9s + (var(--i) % 5) * 1.1s) linear infinite;
  animation-delay:calc(var(--i) * 0.55s);
}
.hero--premium.is-loaded .heroPremium__droplet{opacity:.7}
@keyframes heroDropletRise{
  0%{transform:translate3d(0,0,0) scale(.8);opacity:0}
  12%{opacity:.75}
  100%{transform:translate3d(calc((var(--i) % 3 - 1) * 28px), -115vh, 0) scale(1.05);opacity:0}
}
.heroPremium__inner{
  position:relative;
  z-index:2;
  padding-bottom:68px;
}
.heroPremium__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:clamp(20px,3vw,40px);
  align-items:center;
}
.heroPremium__content{
  max-width:640px;
}
.heroPremium__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(102,205,230,.55);
  background:rgba(255,255,255,.72);
  color:#1f5f74;
  font-size:13px;
  font-weight:800;
  letter-spacing:.2px;
  backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(46,135,169,.10);
}
.heroPremium__eyebrowDot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:linear-gradient(135deg,#66cde6,#0b7ea8);
  box-shadow:0 0 12px rgba(11,126,168,.45);
}
.heroPremium__title{
  margin:14px 0 10px;
  font-family:"Sora","Plus Jakarta Sans","Google Sans","Roboto",system-ui,sans-serif;
  font-size:clamp(32px,4.6vw,52px);
  line-height:1.08;
  letter-spacing:-1.1px;
  font-weight:700;
  color:#0f3f52;
}
.heroPremium__subtitle{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.58;
  font-weight:700;
  color:#2a6176;
}
.heroPremium__desc{
  margin:0;
  max-width:560px;
  font-size:16px;
  line-height:1.58;
  font-weight:700;
  color:#2a6176;
}
.heroPremium__cta{margin-top:20px}
.heroPremium__btn{
  padding:13px 21px;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
  transition:transform .2s var(--hero-ease), box-shadow .2s var(--hero-ease), background .2s ease;
}
.heroPremium__btn--primary{
  background:linear-gradient(135deg,#0b7ea8 0%,#066f94 100%);
  color:#fff;
  border:1px solid rgba(6,90,120,.25);
  box-shadow:0 14px 32px rgba(11,126,168,.28);
}
.heroPremium__btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(11,126,168,.34);
}
.heroPremium__btn--outline{
  background:rgba(255,255,255,.78);
  color:#0f5f78;
  border:1px solid rgba(102,205,230,.65);
  backdrop-filter:blur(8px);
}
.heroPremium__btn--outline:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(102,205,230,.22);
}
.heroPremium__visual{
  position:relative;
  min-height:340px;
  display:grid;
  place-items:center;
}
.heroPremium__visualRing{display:none}
@keyframes heroRingSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
.heroPremium__visualGlow{display:none}
.heroPremium__product{
  position:relative;
  z-index:2;
  width:min(100%,420px);
  max-height:min(400px,48vh);
  object-fit:contain;
  filter:drop-shadow(0 20px 36px rgba(11,126,168,.20));
}
.heroPremium__floatCard{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(14px);
  box-shadow:0 14px 34px rgba(46,135,169,.14);
  white-space:nowrap;
}
.heroPremium__floatCard--tl{top:8%;left:0}
.heroPremium__floatCard--tr{top:14%;right:0}
.heroPremium__floatCard--bl{bottom:18%;left:2%}
.heroPremium__floatCard--br{bottom:10%;right:0}
.heroPremium__floatIcon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-size:17px;
  background:rgba(138,220,240,.28);
  border:1px solid rgba(102,205,230,.45);
}
.heroPremium__floatText{
  font-size:13px;
  font-weight:800;
  color:#1f5367;
  letter-spacing:.1px;
}
.heroPremium__trustRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
  padding-top:4px;
}
.heroPremium__trustRow span{
  padding:7px 13px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.15px;
  color:#2a6176;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(138,220,240,.5);
  backdrop-filter:blur(8px);
}
.heroPremium__wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  z-index:3;
  height:88px;
  pointer-events:none;
}
.heroPremium__waveSvg{
  position:absolute;
  left:0;
  bottom:0;
  width:200%;
  height:100%;
}
.heroPremium__waveSvg--back{
  fill:rgba(138,220,240,.22);
  animation:heroWaveDrift 14s linear infinite;
}
.heroPremium__waveSvg--front{
  fill:var(--hero-blue-soft);
  animation:heroWaveDrift 10s linear infinite reverse;
  opacity:.98;
}
@keyframes heroWaveDrift{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
.hero--premium [data-anim]{
  opacity:0;
  transform:translate3d(-24px,28px,0);
  transition:
    opacity .85s var(--hero-ease),
    transform .85s var(--hero-ease);
  transition-delay:var(--d,0ms);
}
.hero--premium.is-loaded [data-anim]{
  opacity:1;
  transform:translate3d(0,0,0);
}
.hero--premium.is-loaded .heroPremium__visual[data-anim]{
  transform:translate3d(0,0,0);
}
@media (max-width:980px){
  .hero--premium{
    padding-top:calc(78px + 18px);
  }
  .heroPremium__grid{grid-template-columns:1fr}
  .heroPremium__content{max-width:none;text-align:center}
  .heroPremium__desc{margin:0 auto}
  .heroPremium__cta{justify-content:center}
  .heroPremium__visual{
    min-height:320px;
    margin-top:6px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    place-items:stretch;
  }
  .heroPremium__visualRing,
  .heroPremium__visualGlow{display:none}
  .heroPremium__product{
    grid-column:1/-1;
    justify-self:center;
  }
  .heroPremium__floatCard{
    position:relative;
    top:auto!important;
    right:auto!important;
    bottom:auto!important;
    left:auto!important;
    white-space:normal;
    width:auto;
  }
  .heroPremium__trustRow{justify-content:center}
}
@media (max-width:640px){
  .heroPremium__title{font-size:34px}
  .heroPremium__btn{
    width:auto;
    padding:10px 16px;
    font-size:13.5px;
    border-radius:12px;
    justify-content:center;
  }
  .heroPremium__cta{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }
  .heroPremium__visual{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .heroPremium__floatCard{width:100%}
  .heroPremium__wave{height:72px}
}
@media (prefers-reduced-motion:reduce){
  .hero--premium *,
  .hero--premium *::before,
  .hero--premium *::after{
    animation:none!important;
    transition-duration:.01ms!important;
  }
  .hero--premium [data-anim]{
    opacity:1;
    transform:none;
  }
}

/* Home page premium blocks */
.introGrid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:22px;
  align-items:stretch;
}
.glassCard{
  background:rgba(255,255,255,.62);
  border:1px solid rgba(138,220,240,.55);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.sectionTitleCenter{text-align:center;margin-bottom:20px}
.featureCard,.quoteCard,.ctaCard{
  border-radius:20px;
  border:1px solid rgba(138,220,240,.45);
  box-shadow:var(--shadowSoft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.featureCard{
  text-align:center;
}
.featureCard .h3{
  text-align:center;
}
.featureCard:hover,.quoteCard:hover{transform:translateY(-4px)}
.featureIcon{
  width:52px;
  height:52px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:26px;
  background:rgba(138,220,240,.25);
  border:1px solid rgba(102,205,230,.45);
  margin:0 auto 12px;
}
.quoteCard p{margin:0 0 10px;color:#3f5e69}
.homeTestimonialCard{
  padding:14px;
  display:grid;
  gap:10px;
}
.homeTestimonialImg{
  width:100%;
  aspect-ratio:16/10;
  object-fit:contain;
  background:#fff;
  border-radius:14px;
}
.homeTestimonialName{
  font-size:14px;
  color:#2d4f5d;
  text-align:left;
}
.ctaCard{
  text-align:center;
  background:
    linear-gradient(160deg, rgba(255,255,255,.86), rgba(242,251,255,.92)),
    radial-gradient(600px 220px at 20% 30%, rgba(138,220,240,.30), transparent 65%);
  padding:28px;
}

.ctaSection--premium{padding-top:60px;padding-bottom:60px}
.ctaCard--premium{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  text-align:center;
  padding:56px 36px;
  border-radius:24px;
  border:1px solid rgba(102,205,230,.50);
  background:
    radial-gradient(620px 260px at 18% 22%, rgba(102,205,230,.28), transparent 60%),
    radial-gradient(520px 240px at 82% 78%, rgba(11,126,168,.18), transparent 58%),
    linear-gradient(160deg,#ffffff 0%,#f1fbff 60%,#e6f6fc 100%);
  box-shadow:0 22px 50px -28px rgba(11,126,168,.40),0 4px 14px -6px rgba(11,126,168,.10);
  transition:transform .25s ease, box-shadow .25s ease;
}
.ctaCard--premium:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 56px -28px rgba(11,126,168,.50),0 6px 18px -6px rgba(11,126,168,.16);
}
.ctaCard__orb{
  position:absolute;
  border-radius:999px;
  filter:blur(60px);
  pointer-events:none;
  z-index:-1;
}
.ctaCard__orb--1{
  width:340px;height:340px;
  top:-150px;left:-130px;
  background:radial-gradient(circle,rgba(102,205,230,.55),transparent 70%);
  animation:ctaOrbFloat1 10s ease-in-out infinite;
}
.ctaCard__orb--2{
  width:300px;height:300px;
  bottom:-150px;right:-130px;
  background:radial-gradient(circle,rgba(11,126,168,.42),transparent 70%);
  animation:ctaOrbFloat2 13s ease-in-out infinite;
}
@keyframes ctaOrbFloat1{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(22px,16px,0)}
}
@keyframes ctaOrbFloat2{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(-20px,-14px,0)}
}
.ctaCard__shine{
  position:absolute;
  top:-30%;left:-20%;
  width:140%;height:60%;
  background:linear-gradient(115deg,transparent 38%,rgba(255,255,255,.55) 50%,transparent 62%);
  transform:rotate(-8deg);
  opacity:.55;
  pointer-events:none;
  z-index:-1;
}
.ctaCard__icon{
  width:68px;height:68px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(140deg,#66cde6 0%,#0b7ea8 100%);
  box-shadow:0 14px 28px -10px rgba(11,126,168,.55),inset 0 0 0 4px rgba(255,255,255,.30);
}
.ctaCard__icon svg{width:30px;height:30px}
.ctaCard__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(102,205,230,.55);
  color:#0b7ea8;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  backdrop-filter:blur(4px);
}
.ctaCard__eyebrowDot{
  width:8px;height:8px;
  border-radius:50%;
  background:linear-gradient(160deg,#66cde6,#0b7ea8);
  box-shadow:0 0 10px rgba(102,205,230,.85);
}
.ctaCard__title{
  margin:0 auto 12px;
  max-width:760px;
  color:#0f3f52;
}
.ctaCard__subtitle{
  margin:0 auto 26px;
  max-width:640px;
  color:#2a6176;
  font-weight:500;
}
.ctaCard__btnRow{
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.ctaCard__btn{
  padding:13px 24px;
  font-weight:700;
}
@media (max-width:600px){
  .ctaCard--premium{padding:40px 22px}
  .ctaCard__icon{width:58px;height:58px}
  .ctaCard__icon svg{width:26px;height:26px}
  .ctaCard__title{font-size:1.45rem;line-height:1.3}
  .ctaCard__subtitle{font-size:15px}
}

.productsListing,.categoriesSection,.aboutCore,.testimonialPage{background:var(--section)}
.card,.plCard,.filterCard,.contactCard,.leadershipCard,.directionSection{
  border-color:rgba(138,220,240,.46)!important;
  box-shadow:var(--shadowSoft)!important;
}
.plCard:hover{box-shadow:0 16px 30px rgba(74,170,201,.15)!important}

.footer{
  background:#a9d4e8;
  border-top:1px solid rgba(138,220,240,.40);
}
.whatsappFloat{
  background:linear-gradient(160deg, #25d366, #1ebe5d);
  color:#ffffff;
}

@media (max-width:980px){
  .introGrid{grid-template-columns:1fr}
}

