:root{
  --primary:#0A3D62;
  --secondary:#3EC1D3;
  --accent:#2ECC71;
  --bg:#FFFFFF;
  --section:#F4F9FB;
  --text:#333333;
  --muted:#5b6770;
  --card:#ffffff;
  --border:rgba(10,61,98,.12);
  --shadow:0 18px 45px rgba(10,61,98,.10);
  --shadowSoft:0 10px 25px rgba(10,61,98,.10);
  --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(62,193,211,.12);
  border:1px solid rgba(62,193,211,.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(46,204,113,.16);
  border:1px solid rgba(46,204,113,.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:#07351f;
  box-shadow:0 14px 30px rgba(46,204,113,.22);
}
.btn--primary:hover{box-shadow:0 18px 38px rgba(46,204,113,.28)}
.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(10,61,98,.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(10,61,98,.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(62,193,211,.10);color:var(--primary)}
.navLinks a[aria-current="page"]{
  background:rgba(62,193,211,.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(62,193,211,.18), transparent 60%),
    radial-gradient(1100px 560px at 78% 22%, rgba(46,204,113,.12), transparent 62%),
    linear-gradient(180deg, #ffffff, #f6fbfd);
  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(62,193,211,.14);border-color:rgba(62,193,211,.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(62,193,211,.14);border-color:rgba(62,193,211,.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(10,61,98,.12);
  background:
    radial-gradient(140px 120px at 30% 40%, rgba(62,193,211,.20), transparent 60%),
    radial-gradient(170px 160px at 68% 58%, rgba(46,204,113,.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(10,61,98,.08), transparent 65%) 15% 20%/380px 380px no-repeat,
    radial-gradient(closest-side, rgba(62,193,211,.10), transparent 66%) 85% 35%/420px 420px no-repeat,
    radial-gradient(closest-side, rgba(46,204,113,.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(10,61,98,.10);
  background:rgba(255,255,255,.78);
  box-shadow:0 22px 55px rgba(10,61,98,.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(10,61,98,.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(10,61,98,.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:#c7ffe0}
.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(62,193,211,.14);
  border:1px solid rgba(62,193,211,.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(10,61,98,.10), rgba(62,193,211,.14)),
    radial-gradient(180px 120px at 35% 45%, rgba(46,204,113,.18), transparent 60%),
    #fff;
  border-bottom:1px solid rgba(10,61,98,.10);
  display:grid;place-items:center;
  color:rgba(10,61,98,.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(62,193,211,.12);
  border:1px solid rgba(62,193,211,.20);
  color:var(--primary);
}
.chip--green{background:rgba(46,204,113,.12);border-color:rgba(46,204,113,.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(10,61,98,.08);
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:0 10px 24px rgba(10,61,98,.08);
}
.quote p{
  margin:0;
  color:#4c5c68;
  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(10,61,98,.14);
}
.who .name{
  font-weight:900;
  color:#1b2b45;
}
.stars{
  display:flex;
  gap:2px;
  color:#ffbf47;
  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(10,61,98,.10);
}
.testimonialArrow:hover{
  background:rgba(62,193,211,.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(46,204,113,.14);
  border:1px solid rgba(46,204,113,.22);
  color:#0c6b3b;
  flex:0 0 auto;
  margin-top:1px;
}

.footer{
  background:linear-gradient(180deg, rgba(10,61,98,.07), rgba(10,61,98,.02));
  border-top:1px solid rgba(10,61,98,.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)}

.whatsappFloat{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#25D366;
  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;
}

.pageHero{
  background:
    linear-gradient(115deg, rgba(10,61,98,.96), rgba(62,193,211,.64)),
    radial-gradient(1200px 600px at 15% 15%, rgba(46,204,113,.18), transparent 55%),
    #0A3D62;
  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(10,61,98,.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(10,61,98,.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(62,193,211,.10);color:var(--primary)}
.mobileMenu a[aria-current="page"]{
  background:rgba(62,193,211,.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:24px;
  width:auto;
  display:block;
  object-fit:contain;
}
.footerBrandLogo{
  height:30px;
}
.header--corporate .brandMark{
  width:42px;
  height:30px;
  border-radius:4px;
  background:#1e2f8c;
  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:56px 0 64px}
.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:#141b2d;
  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;
}
.heroPotImg{
  width:min(360px, 100%);
  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:980px;
  margin:0 auto;
}
.categoryCard{
  background:#fff;
  border-radius:16px;
  padding:16px 14px 16px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  text-align:center;
  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:16/10;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  margin:0 auto 12px;
}
.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:17px;
  line-height:1.35;
  color:#222;
}

/* Product detail v2 */
.productPageMain{padding-top:26px}
.productCrumbs{
  color:rgba(51,51,51,.72);
  margin-bottom:12px;
}
.productCrumbs a{color:var(--primary)}
.productCrumbs .sep{color:rgba(51,51,51,.45)}
.productTopViewport{
  min-height:calc(100vh - 130px);
  display:flex;
  align-items:center;
  padding:16px;
}
.productTopGrid{
  width:100%;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:18px;
  opacity:1;
  transition:opacity .24s ease, transform .24s ease;
}
.productTopGrid.is-switching{
  opacity:.55;
  transform:translateY(4px);
}
.galleryCol{display:grid;grid-template-rows:1fr auto;gap:6px;min-height:0}
.galleryMain{
  border-radius:16px;
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(10,61,98,.06), rgba(62,193,211,.09));
  display:grid;
  place-items:center;
  min-height:280px;
  max-height:44vh;
  overflow:hidden;
}
.galleryMain.galleryStage{
  display:block;
  position:relative;
  padding:0;
}
.galleryStage{
  position:relative;
  width:100%;
  min-height:280px;
}
.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(10,61,98,.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(10,61,98,.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(62,193,211,.85);
  outline-offset:2px;
}
.galleryNav--prev{left:10px}
.galleryNav--next{right:10px}
.galleryMain img{
  width:100%;
  height:100%;
  max-height:44vh;
  object-fit:contain;
  display:block;
  margin:0 auto;
  transition:opacity .24s ease, transform .24s ease;
}
.galleryMain img.imageChanging{
  opacity:.42;
  transform:scale(.985);
}
.galleryThumbs{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.thumbBtn{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:12px;
  padding:6px;
  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;
}
.thumbBtn.is-active{
  border-color:rgba(10,61,98,.34);
  transform:translateY(-2px);
}
.detailsCol{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:10px;
  min-height:0;
}
.productLead{margin:0;color:rgba(51,51,51,.74)}
.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:rgba(51,51,51,.78);
}
.productActionRow{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.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}
.relatedHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.relatedGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.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(10,61,98,.30);
  box-shadow:0 14px 28px rgba(10,61,98,.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;
}
.relatedBrand--badge{
  display:inline-flex;
  margin-top:8px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(10,61,98,.16);
  background:rgba(10,61,98,.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:rgba(51,51,51,.70);
  font-weight:850;
  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:rgba(122,96,38,.85);
  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(191,160,76,.55);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.directionIcon{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(191,160,76,.14);
  border:1px solid rgba(191,160,76,.30);
  margin-bottom:10px;
}
.directionCardTitle{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.3px;
  color:#1f1f1f;
}
.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(62,193,211,.22), transparent 62%),
    radial-gradient(800px 380px at 80% 55%, rgba(10,61,98,.20), transparent 60%),
    linear-gradient(180deg, #ffffff, #f6fbfd);
  overflow:hidden;
}
.productsHeroBanner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.62)),
    url("https://images.unsplash.com/photo-1528825871115-3581a5387919?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  opacity:.22;
  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(10,61,98,.88);
  background:rgba(62,193,211,.14);
  border:1px solid rgba(62,193,211,.24);
  padding:6px 10px;
  border-radius:999px;
}
.filterItem:hover{background:rgba(62,193,211,.08)}
.filterItem.is-active{
  background:rgba(10,61,98,.06);
}
.filterItem.is-active .filterCount{
  background:rgba(10,61,98,.10);
  border-color:rgba(10,61,98,.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(10,61,98,.22);
  background:rgba(10,61,98,.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(3,minmax(0,1fr));
  gap:18px;
}
.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:18px;
  display:grid;
  place-items:center;
}
.productsGrid--listing.is-list .plMedia{
  width:260px;
  flex:0 0 auto;
}
.plImg{
  width:100%;
  max-width:230px;
  aspect-ratio: 4/3;
  object-fit:contain;
  filter: drop-shadow(0 22px 26px rgba(10,61,98,.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;
}
.plName{
  font-weight:950;
  letter-spacing:-.2px;
  color:#1f1f1f;
  line-height:1.25;
}
.plPrice{
  font-weight:950;
  color:var(--primary);
}
.plActions{display:flex;gap:10px;flex-wrap:wrap}
.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(0,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}
  .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:34px 0 40px}
  .heroGrid--corporate{grid-template-columns:1fr}
  .heroContent{align-items:flex-start}
  .heroProductVisual{margin-top:14px}
  .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:280px}
  .relatedGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .techDescList{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:min(280px, 90vw)}
  .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}
  .relatedGrid{grid-template-columns:1fr}
  .testimonialSlider{gap:8px}
  .testimonialArrow{
    width:34px;
    height:34px;
    font-size:22px;
  }
  .testimonialSlide{flex-basis:100%}
}

