:root{
  --blue:#0086CE;
  --blue-deep:#045C8F;
  --blue-pale:#E6F3FA;
  --navy:#1C4362;
  --navy-2:#255073;
  --green:#7C9C57;
  --green-light:#B7D18C;
  --green-pale:#EEF3E6;
  --ink:#221E1F;
  --slate:#5C5A5B;
  --slate-light:#8B8889;
  --line:#E5E5E5;
  --paper:#FFFFFF;
  --paper-2:#F6F8F9;

  --font-head:'Sora', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;

  --wrap:1240px;
  --radius:10px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:120px;}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font-body); line-height:1.6; -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
button{font:inherit; cursor:pointer; background:none; border:none;}
h1,h2,h3,h4{margin:0; font-family:var(--font-head); font-weight:700; color:var(--navy);}
p{margin:0;}
input,textarea{font:inherit;}

:focus-visible{outline:3px solid var(--blue); outline-offset:2px;}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:300;
  background:var(--blue); color:#fff; font-weight:600;
  padding:12px 18px; border-radius:0 0 6px 0;
}
.skip-link:focus{left:0; top:0;}

.wrap{max-width:var(--wrap); margin:0 auto; padding:0 24px;}
button.btn.btn--primary.quote-form__submit {
  background: #0086ce !important;
}
.eyebrow{
  font-family:var(--font-mono); font-size:0.72rem; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--blue-deep); font-weight:600;
  display:flex; align-items:center; gap:8px;
}
.eyebrow::before{content:""; width:16px; height:2px; background:var(--green); display:block;}

.icon{width:1em; height:1em; stroke:currentColor; fill:none; stroke-width:1.7; vertical-align:-0.15em;}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:0.92rem;
  padding:13px 22px; border-radius:7px; border:1.5px solid transparent;
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary{background:var(--blue); color:#fff; box-shadow:0 6px 16px rgba(0,134,206,0.28);border: 1px solid #ffffff4d !important;}
.btn--primary:hover{background:var(--blue-deep); transform:translateY(-2px); box-shadow:0 10px 22px rgba(0,134,206,0.32);}
.btn--outline{border-color:var(--line); color:var(--navy); background:#fff;}
.btn--outline:hover{border-color:var(--blue); color:var(--blue-deep); transform:translateY(-2px);}
.btn--outline-dark{border-color:rgba(255,255,255,0.28); color:#fff;}
.btn--outline-dark:hover{border-color:var(--green-light); color:var(--green-light); transform:translateY(-2px);}
.btn--sm{padding:8px 5px; font-size:0.82rem; border-radius:6px;text-transform: uppercase;}

/* ============ UTILITY BAR ============ */
.utility-bar{background:var(--navy); color:#CBD8E1; font-size:0.8rem;}
.utility-bar__row{
  display:flex; justify-content:space-between; align-items:center;
  padding:9px 0; gap:16px; flex-wrap:wrap;
}
.utility-bar__phones{display:flex; gap:20px; flex-wrap:wrap;}
.utility-bar__phones a:hover{color:var(--green-light);}
.utility-bar__right{display:flex; align-items:center; gap:18px;}
.utility-bar__right a:hover{color:var(--green-light);}
.utility-bar__social{display:flex; gap:12px; align-items:center;}
.utility-bar__social a{opacity:0.85;}
.utility-bar__social a:hover{opacity:1; color:var(--green-light);}

/* ============ HEADER / NAV ============ */
.site-header{position:fixed; width:100%; top:0; z-index:200; background:#1c4362; box-shadow:0 4px 12px rgba(0,0,0,0.2); transition: background-color 0.3s, box-shadow 0.3s, color 0.3s; overflow:visible;}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:5px; overflow:visible;}
.nav__brand img{height:45px; width:auto;}

.nav__links{display:flex; align-items:center; gap:2px;}
.nav__link{
  display:flex; align-items:center; gap:5px;
  color:#fff; font-size:0.92rem; font-weight:600;
  padding:12px 14px; border-radius:6px; 
}
.nav__link:hover{color:#fff; background:rgba(255,255,255,0.15);}

.nav__item{position:relative;}
.nav__panel{
  position:absolute; top:calc(100% + 8px); left:50%; transform:translate(-50%,-6px);
  width:560px; background:#fff; border:1px solid var(--line); border-radius:12px;
  box-shadow:0 20px 44px rgba(11,46,69,0.16); padding:22px;
  opacity:0; visibility:hidden; transition:opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel{
  opacity:1; visibility:visible; transform:translate(-50%,0);
}
.nav__panel-grid{display:grid; grid-template-columns:1fr 1fr; gap:2px 18px;}
.nav__panel-link{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 10px; border-radius:6px; font-size:0.88rem; font-weight:500; color:var(--ink);
}
.nav__panel-link:hover{background:var(--green-pale); color:var(--blue-deep);}
.nav__panel-link small{font-family:var(--font-mono); color:var(--slate-light); font-weight:500;}
.nav__panel-foot{
  margin-top:14px; padding-top:14px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.nav__panel-foot a{font-size:0.86rem; font-weight:600; color:var(--blue-deep);}
.nav__panel-foot span{font-size:0.82rem; color:var(--slate);}

.nav__resources-panel{width:260px; padding:10px;}
.nav__resources-panel a{
  display:flex; align-items:center; gap:10px; padding:11px 12px; border-radius:6px;
  font-size:0.88rem; font-weight:500; color:var(--ink);
}
.nav__resources-panel a:hover{background:var(--blue-pale); color:var(--blue-deep);}

/* Search — always-visible bar like catalog screenshot */
.nav__search {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
}
.nav__search-toggle,
.nav__search-glyph,
.nav__search-overlay,
.nav__search-close {
  display: none !important;
}
.nav__search-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 280px;
  max-width: min(280px, 42vw);
  height: 40px;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  flex-shrink: 0;
  box-sizing: border-box;
}
.nav__search-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: none;
  padding: 0 14px;
  font-size: 0.92rem;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #221E1F;
}
.nav__search-input::placeholder {
  color: #8B8889;
}
.nav__search-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0086CE !important;
  color: #fff !important;
  border: none !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none !important;
}
.nav__search-btn:hover { background: #1C4362 !important; color: #fff !important; }
.nav__search-btn .icon {
  width: 18px !important;
  height: 18px !important;
  stroke: #fff !important;
  fill: none !important;
  stroke-width: 2 !important;
  display: block !important;
  flex-shrink: 0;
}
.nav__search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 280px;
  margin: 0;
  background: #fff;
  border-radius: 4px;
  overflow: auto;
  max-height: min(60vh, 400px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 270;
}
.nav__search-suggest[hidden] { display: none !important; }
.nav__search-suggest a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #EEF1F3;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__search-suggest a:last-child { border-bottom: none; }
.nav__search-suggest a:hover { background: #F5F8FA; color: var(--blue); }
.nav__search-suggest img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__search-suggest__empty {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #8B8889;
}
.nav__search-suggest a.nav__search-suggest__all {
  color: var(--blue);
  font-weight: 600;
  justify-content: center;
}
.nav__search-suggest__label {
  padding: 10px 14px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8B8889;
  background: #F6F8F9;
  border-bottom: 1px solid #EEF1F3;
}
.nav__search-suggest a span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav__search-suggest a small { font-size: 0.75rem; font-weight: 500; color: #8B8889; }
.nav__search-suggest__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #F1F5F9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%238B8889' stroke-width='2'%3E%3Cpath d='M4 7h16M4 12h16M4 17h10'/%3E%3C/svg%3E") center no-repeat;
}

/* Category Drawer */
.category-drawer {
  position: fixed !important;
  top: 0; left: 0;
  width: 100% !important; height: 100vh !important;
  z-index: 1000 !important;
  pointer-events: none;
  padding: 0 !important; background: transparent !important;
  box-shadow: none !important; border: none !important; border-radius: 0 !important;
  visibility: hidden;
}
.category-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.category-drawer__backdrop {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-drawer.is-open .category-drawer__backdrop {
  opacity: 1;
}
.category-drawer__panel {
  position: absolute;
  top: 0; left: 0; width: 320px; height: 100%;
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.category-drawer.is-open .category-drawer__panel {
  transform: translateX(0);
}
.category-dropdown__header {
  background: var(--blue); color: var(--paper); padding: 18px 20px; font-size: 1.15rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.category-dropdown__close { color: var(--paper); opacity: 0.9; border: none; background: transparent; cursor: pointer; }
.category-dropdown__close:hover { opacity: 1; }
.category-dropdown__list {
  display: flex; flex-direction: column; padding: 10px 0; overflow-y: auto; flex: 1;
}
.category-dropdown__item {
  padding: 14px 20px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 500; font-size: 0.95rem;
  display: flex; justify-content: space-between; align-items: center; text-decoration: none;
}
.category-dropdown__item:last-child { border-bottom: none; }
.category-dropdown__item:hover, .category-dropdown__item.active { color: var(--blue); background: var(--paper-2); }
.category-dropdown__item .chevron { width: 16px; height: 16px; color: var(--slate); }

/* --- Transparent Header (homepage video hero, top of page) --- */
.site-header--transparent {
  background: transparent;
  box-shadow: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.site-header--transparent .nav__link, .site-header--transparent .nav__toggle, .site-header--transparent .nav__search-toggle {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3);
}
/* --- Scrolled / Sticky Header — white background, dark text --- */
.site-header--scrolled {
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
.site-header--scrolled .nav__link {
  color: #0086ce !important;
}
.site-header--scrolled .nav__link:hover {
  color: var(--blue-deep) !important;
  background: var(--blue-pale) !important;
}
.site-header--scrolled .nav__search-toggle {
  color: var(--navy) !important;
  border-color: var(--line) !important;
}
.site-header--scrolled .nav__toggle {
  color: var(--navy) !important;
  border-color: var(--line) !important;
}
.site-header--scrolled .logo-light {
  filter: none !important;
}
.site-header--scrolled .nav__menu li a {
  color: #0086ce !important;
}
.site-header--scrolled .nav__search-inner {
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.site-header--scrolled .nav__search-input {
  border: none;
}

/* Logo always white (inverted) — reverts on scroll */
.logo-light {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  overflow: visible;
}
.nav__left {
  display: flex;
  justify-content: flex-start;
}
/* Fix panel alignment for left nav */
.nav__left .nav__panel {
  left: 0;
  transform: translate(0, -6px);
}
.nav__left .nav__item:hover .nav__panel,
.nav__left .nav__item:focus-within .nav__panel {
  transform: translate(0, 0);
}
.nav__brand--center {
  display: flex;
  justify-content: center;
}
.nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
/* Inner pages: same header gaps as home, keep 1240px width */
body.gedgpro-inner-header header.site-header .wrap.nav,
body.gedgpro-home-header-active:not(.home):not(.front-page) header.site-header .wrap.nav {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
  box-sizing: border-box;
}
body.gedgpro-inner-header header.site-header .nav__left,
body.gedgpro-home-header-active:not(.home):not(.front-page) header.site-header .nav__left {
  justify-content: flex-start;
}
body.gedgpro-inner-header header.site-header .nav__right,
body.gedgpro-home-header-active:not(.home):not(.front-page) header.site-header .nav__right {
  justify-content: flex-end;
  gap: 20px;
}
body.gedgpro-inner-header header.site-header .nav__menu,
body.gedgpro-home-header-active:not(.home):not(.front-page) header.site-header .nav__menu {
  gap: 25px;
}
.nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.2s ease;
}
.nav__icon-btn .icon {
  font-size: 1.25rem;
  stroke-width: 1.5;
}
.nav__icon-btn:hover {
  color: var(--blue);
}

.nav__toggle{
  display:none; width:42px; height:42px; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.3); border-radius:8px; color:#fff;
  background:transparent; padding:0;
}
.nav__toggle-glyph{
  display:block;
  width:20px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}
.nav__toggle-glyph--close{
  display:none;
  width:18px;
  height:18px;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-glyph--open,
.nav__toggle.is-open .nav__toggle-glyph--open{
  display:none;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-glyph--close,
.nav__toggle.is-open .nav__toggle-glyph--close{
  display:block;
}
.nav__links-close{
  display:none;
}

@media (max-width:1020px){
  .nav__links{
    position:fixed; top:0; right:0; left:auto; bottom:auto; width:min(320px,72vw); height:auto; max-height:100vh;
    background:#fff; flex-direction:column; align-items:stretch; overflow-y:auto;
    padding:60px 20px 90px; gap:0; transform:translateX(100%); transition:transform .25s ease;
    box-shadow:-14px 0 34px rgba(11,46,69,0.14);
  }
  .nav__links.is-open{transform:translateX(0);}
  .nav__item{width:100%;}
  .nav__menu{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    flex-wrap:nowrap !important;
    width:100%;
    gap:0 !important;
  }
  .nav__menu li{
    display:block !important;
    width:100%;
  }
  .nav__link{justify-content:space-between; padding:10px 8px; border-bottom:1px solid var(--line); border-radius:0;}
  .nav__menu li a{
    display:flex !important;
    width:100%;
    padding:10px 8px;
    border-bottom:1px solid var(--line);
    border-radius:0;
  }
  .nav__panel{
    position:static; width:auto; opacity:1; visibility:visible; transform:none; box-shadow:none;
    border:none; padding:6px 0 6px 10px; display:none;
  }
  .nav__item.is-open .nav__panel{display:block;}
  .nav__links .nav__link,
  .nav__links .nav__menu li a,
  .site-header--transparent .nav__links .nav__link,
  .site-header--transparent .nav__links .nav__menu li a,
  .site-header--scrolled .nav__links .nav__link,
  .site-header--scrolled .nav__links .nav__menu li a{
    color:var(--navy) !important;
  }
  .nav__links .nav__link:hover,
  .nav__links .nav__menu li a:hover{
    color:var(--blue-deep) !important;
    background:var(--blue-pale);
  }
  .nav__links .nav__link .icon{stroke:currentColor;}
  /* Shop categories accordion inside hamburger — do not use desktop overlay */
  .nav__panel.category-drawer{
    display:none;
    position:static !important;
    width:auto !important;
    height:auto !important;
    max-width:none !important;
    padding:0 !important;
    opacity:1;
    visibility:visible !important;
    pointer-events:auto;
    z-index:auto !important;
    overflow:visible;
    transform:none !important;
  }
  .nav__item.is-open .nav__panel.category-drawer,
  .nav__panel.category-drawer.is-open{
    display:block !important;
  }
  .category-drawer__backdrop{display:none !important;}
  .category-drawer__panel{
    position:static !important;
    width:100% !important;
    height:auto !important;
    transform:none !important;
    background:transparent;
  }
  .category-dropdown__header{display:none;}
  .category-dropdown__item{padding:12px 12px 12px 22px; font-size:0.9rem;}
  .nav__panel-grid{grid-template-columns:1fr;}
  .nav__resources-panel{width:auto; padding:6px 0 6px 10px;}
  .nav__toggle{display:flex;}
  .nav__search{display:flex !important; align-items:center;padding: 0px 20px;
    margin-top: -1px;}
  .nav__search-inner{width: min(220px, 50vw); max-width: min(220px, 50vw);}
  body.nav-menu-open .nav__search,
  body.nav-menu-open .nav__search-inner,
  body.nav-menu-open #navSearch{display:none !important;}
  .nav__right .btn{display:none;}
  .nav__toggle{width:34px; height:34px;}
  .nav__links-close{
    display:flex;
    position:absolute;
    top:10px;
    right:10px;
    width:32px;
    height:32px;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    color:var(--navy);
    cursor:pointer;
    z-index:2;
    padding:0;
  }
  .nav__links-close:hover{
    background:var(--blue-pale);
    color:var(--blue-deep);
  }
}

/* ============ HERO / SLIDER ============ */
.hero{background:var(--paper-2); position:relative; padding:36px 0 44px;}

.slider{position:relative;}
.slider__viewport{
  overflow:hidden; border-radius:18px; border:1px solid var(--line);
  box-shadow:0 30px 60px rgba(11,46,69,0.1);
}
.slider__track{display:flex; transition:transform .6s cubic-bezier(.65,0,.35,1);}
.slider__track.no-anim{transition:none;}

.slide{
  min-width:100%; position:relative; overflow:hidden;
  padding:56px 56px; display:flex; align-items:center;
}
.slide[aria-hidden="true"]{pointer-events:none;}
.slide--1{background:linear-gradient(135deg,#EAF4FB 0%,#F7F9FA 65%);}
.slide--2{background:linear-gradient(135deg,#EEF3E6 0%,#F7F9FA 65%);}
.slide--3{background:linear-gradient(135deg,#E6F3FA 0%,#EEF3E6 100%);}
.slide--4{background:linear-gradient(135deg,#F7F9FA 0%,#E6F3FA 100%);}

.slide__decor{
  position:absolute; top:-60px; right:-50px; width:360px; height:360px;
  color:var(--navy); opacity:0.06; pointer-events:none; stroke-width:1;
}

.slide__grid{
  position:relative; z-index:1; width:100%;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:52px; align-items:start;
}

.hero__tagline{
  margin-top:18px; padding-left:16px; border-left:3px solid var(--green);
  font-family:var(--font-head); font-style:normal; font-weight:600; font-size:1.05rem; color:var(--navy);
}
.hero__title{
  margin-top:16px; font-size:clamp(2rem,3.6vw,2.85rem); line-height:1.12; letter-spacing:-0.01em;
}
.hero__title span{color:var(--blue);}
.hero__lede{margin-top:18px; max-width:56ch; color:var(--slate); font-size:1.03rem;}
.hero__actions{margin-top:28px; display:flex; gap:14px; flex-wrap:wrap;}

.trust-strip{
  margin-top:26px; display:flex; gap:10px; flex-wrap:wrap; padding:0 4px;
}
.trust-strip__item{
  display:flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line);
  padding:10px 14px; border-radius:8px; font-size:0.82rem; font-weight:600; color:var(--navy);
}
.trust-strip__item .icon{color:var(--blue); font-size:1.05rem;}

.hero__card{
  background:#fff; border-radius:14px; border:1px solid var(--line);
  box-shadow:0 20px 40px rgba(11,46,69,0.1); overflow:hidden;
}
.hero__card-top{height:6px; background:linear-gradient(90deg, var(--blue), var(--green-light));}
.hero__card-body{padding:26px 24px;}
.hero__card-body h3{font-size:1.14rem;}
.hero__checklist{margin-top:16px; display:flex; flex-direction:column; gap:13px;}
.hero__checklist li{display:flex; align-items:flex-start; gap:10px; font-size:0.9rem; color:var(--ink);}
.hero__checklist .icon{
  color:var(--green); flex-shrink:0; margin-top:2px; background:var(--green-pale);
  border-radius:50%; padding:4px; width:1.4em; height:1.4em; stroke-width:2.2;
}
.hero__card-stats{
  margin-top:20px; padding-top:18px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between;
}
.hero__card-stats div{text-align:center;}
.hero__card-stats b{display:block; font-family:var(--font-head); font-size:1.5rem; color:var(--navy);}
.hero__card-stats span{font-size:0.7rem; color:var(--slate); text-transform:uppercase; letter-spacing:0.04em;}

.hero__mini-grid{margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:8px;}
.hero__mini-grid a{
  display:flex; justify-content:space-between; align-items:center; gap:6px;
  padding:9px 11px; border-radius:7px; background:var(--paper-2); font-size:0.78rem; font-weight:600; color:var(--navy);
}
.hero__mini-grid a:hover{background:var(--blue-pale); color:var(--blue-deep);}
.hero__mini-grid a small{font-family:var(--font-mono); font-weight:500; color:var(--slate-light);}

/* --- controls --- */
.slider__arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--navy); box-shadow:0 10px 22px rgba(11,46,69,0.14); z-index:2;
}
.slider__arrow:hover{border-color:var(--blue); color:var(--blue-deep);}
.slider__arrow--prev{left:-4px;}
.slider__arrow--next{right:-4px;}

.slider__nav{display:flex; align-items:center; justify-content:center; gap:16px; margin-top:20px;}
.slider__dots{display:flex; gap:8px;}
.slider__dot{width:9px; height:9px; border-radius:50%; background:var(--line); border:none; padding:0;}
.slider__dot.is-active{background:var(--blue); width:24px; border-radius:5px; transition:width .2s ease, background .2s ease;}
.slider__playpause{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--line); display:flex;
  align-items:center; justify-content:center; color:var(--navy);
}
.slider__playpause:hover{border-color:var(--blue); color:var(--blue-deep);}

.slider__progress{max-width:220px; margin:12px auto 0; height:3px; background:var(--line); border-radius:3px; overflow:hidden;}
.slider__progress-bar{height:100%; width:0%; background:var(--blue);}

@media (max-width:920px){
  .slide__grid{grid-template-columns:1fr;}
  .slide{padding:44px 40px;}
}
@media (max-width:640px){
  .slide{padding:36px 22px;}
  .slide__decor{display:none;}
  .slider__arrow{width:36px; height:36px;}
  .slider__arrow--prev{left:6px;}
  .slider__arrow--next{right:6px;}
}

/* ============ SECTION SHELL ============ */
.section{padding:48px 0;}
.section--tight{padding:60px 0;}
.section--green{background:var(--green-pale);}
.section--navy{background:var(--navy); color:#EAF0F4;}
.section--navy h2, .section--navy h3{color:#fff;}
.section-head{display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:42px; flex-wrap:wrap;}
.section-title{font-size:clamp(1.7rem,3vw,2.3rem); margin-top:10px;}
.section-note{max-width:40ch; font-size:0.95rem; color:var(--slate);}
.section--navy .section-note{color:#AFC2D0;}

/* ============ MISSION ============ */
.mission__body{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
.mission__text p{margin-bottom:16px; font-size:1.02rem; color:var(--ink); max-width:58ch;}
.mission__text p:last-child{margin-bottom:0;}

.stat-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.stat-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px;}
.lines__footnote{
  margin-top:26px; font-size:0.92rem; color:var(--slate); display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.lines__footnote a{color:var(--blue-deep); font-weight:600;}
.lines__footnote a:hover{text-decoration:underline;}

/* ============ WHY ============ */
.benefits{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.benefit{background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.14); border-radius:12px; padding:26px 22px;}
.benefit__icon{
  width:48px; height:48px; border-radius:10px; background:rgba(183,209,140,0.16); color:var(--green-light);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:18px;
}
.benefit__title{font-size:1.02rem; margin-bottom:8px;}
.benefit__copy{font-size:0.88rem; color:#B9CAD6;}

@media (max-width:980px){ .benefits{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .benefits{grid-template-columns:1fr;} }

/* ============ DOWNLOADS ============ */
.docs{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.doc{
  display:flex; flex-direction:column; gap:16px; border:1px solid var(--line); padding:26px;
  border-radius:12px; background:#fff; transition:border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.doc:hover{border-color:var(--blue); transform:translateY(-3px); box-shadow:0 16px 30px rgba(11,46,69,0.1);}
.doc__top{display:flex; justify-content:space-between; align-items:flex-start;}
.doc__icon{
  width:64px; height:64px; border-radius:10px; background:var(--green-pale); color:var(--green);
  display:flex; align-items:center; justify-content:center; font-size:2rem;
}
.doc__ext{font-family:var(--font-mono); font-size:0.66rem; color:var(--slate); border:1px solid var(--line); padding:4px 8px; border-radius:20px;}
.doc__title{font-family:var(--font-head); font-weight:700; font-size:1.12rem; color:var(--navy);}
.doc__desc{font-size:0.88rem; color:var(--slate);}
.doc__cta{margin-top:auto; display:flex; align-items:center; gap:7px; font-size:0.86rem; font-weight:600; color:var(--blue-deep);}

@media (max-width:880px){ .docs{grid-template-columns:1fr;} }

/* ============ CONTACT ============ */
.contact__grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; align-items:start;}
.contact__label{font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--slate); font-weight:600; margin-bottom:6px;}
.contact__block{margin-bottom:26px; padding-bottom:26px; border-bottom:1px solid var(--line);}
.contact__block:last-child{border-bottom:none; margin-bottom:0; padding-bottom:0;}
.contact__value{font-size:1.06rem; font-weight:600; color:var(--navy);}
.contact__value a:hover{color:var(--blue-deep);}
.contact__actions{display:flex; gap:12px; margin-top:20px; flex-wrap:wrap;}

.quote-card{background:#fff; border:1px solid var(--line); border-radius:14px; padding:30px; box-shadow:0 20px 40px rgba(11,46,69,0.08);}
.quote-card h3{font-size:1.2rem;}
.quote-card p{color:var(--slate); font-size:0.9rem; margin-top:6px;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:22px;}
.form-field{display:flex; flex-direction:column; gap:6px;}
.form-field.full{grid-column:1 / -1;}
.form-field label{font-size:0.78rem; font-weight:600; color:var(--navy);}
.form-field input, .form-field textarea{
  border:1px solid var(--line); border-radius:8px; padding:11px 12px; font-size:0.92rem; color:var(--ink);
  background:var(--paper-2); resize:vertical;
}
.form-field input:focus, .form-field textarea:focus{border-color:var(--blue); background:#fff;}
.quote-form__submit{margin-top:18px; width:100%; justify-content:center;}
.quote-success{
  display:none; text-align:center; padding:30px 10px;
}
.quote-success .icon{
  width:52px; height:52px; color:var(--green); background:var(--green-pale); border-radius:50%; padding:12px; stroke-width:2;
}
.quote-success h3{margin-top:14px;}
.quote-success p{margin-top:8px;}

@media (max-width:900px){
  .contact__grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
}

/* ============ FOOTER ============ */
.site-footer{background:var(--navy); color:#CBD8E1; padding:62px 0 26px;}
.footer__grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.14);}
.footer__brand img{height:36px; filter:brightness(0) invert(1); opacity:0.95;}
.footer__brand p{margin-top:16px; font-size:0.88rem; color:#9FB3C2; max-width:32ch;}
.footer__social{display:flex; gap:10px; margin-top:18px;}
.footer__social a{
  width:36px; height:36px; border:2px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#CBD8E1;
}
.footer__social a:hover{color:var(--green-light); border-color:var(--green-light);}
.footer__heading{font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:#7E96A6; font-weight:700; margin-bottom:16px;}
.footer__links li{margin-bottom:10px;}
.footer__links a{font-size:0.9rem; color:#D6E1E8;}
.footer__links a:hover{color:var(--green-light);}
.footer__bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:22px; font-size:0.78rem; color:#7E96A6;}

@media (max-width:880px){ .footer__grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
  border-radius:50%; padding:4px; width:1.4em; height:1.4em; stroke-width:2.2;
}
.hero__card-stats{
  margin-top:20px; padding-top:18px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between;
}
.hero__card-stats div{text-align:center;}
.hero__card-stats b{display:block; font-family:var(--font-head); font-size:1.5rem; color:var(--navy);}
.hero__card-stats span{font-size:0.7rem; color:var(--slate); text-transform:uppercase; letter-spacing:0.04em;}

.hero__mini-grid{margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:8px;}
.hero__mini-grid a{
  display:flex; justify-content:space-between; align-items:center; gap:6px;
  padding:9px 11px; border-radius:7px; background:var(--paper-2); font-size:0.78rem; font-weight:600; color:var(--navy);
}
.hero__mini-grid a:hover{background:var(--blue-pale); color:var(--blue-deep);}
.hero__mini-grid a small{font-family:var(--font-mono); font-weight:500; color:var(--slate-light);}

/* --- controls --- */
.slider__arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:var(--navy); box-shadow:0 10px 22px rgba(11,46,69,0.14); z-index:2;
}
.slider__arrow:hover{border-color:var(--blue); color:var(--blue-deep);}
.slider__arrow--prev{left:-4px;}
.slider__arrow--next{right:-4px;}

.slider__nav{display:flex; align-items:center; justify-content:center; gap:16px; margin-top:20px;}
.slider__dots{display:flex; gap:8px;}
.slider__dot{width:9px; height:9px; border-radius:50%; background:var(--line); border:none; padding:0;}
.slider__dot.is-active{background:var(--blue); width:24px; border-radius:5px; transition:width .2s ease, background .2s ease;}
.slider__playpause{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--line); display:flex;
  align-items:center; justify-content:center; color:var(--navy);
}
.slider__playpause:hover{border-color:var(--blue); color:var(--blue-deep);}

.slider__progress{max-width:220px; margin:12px auto 0; height:3px; background:var(--line); border-radius:3px; overflow:hidden;}
.slider__progress-bar{height:100%; width:0%; background:var(--blue);}

@media (max-width:920px){
  .slide__grid{grid-template-columns:1fr;}
  .slide{padding:44px 40px;}
}
@media (max-width:640px){
  .slide{padding:36px 22px;}
  .slide__decor{display:none;}
  .slider__arrow{width:36px; height:36px;}
  .slider__arrow--prev{left:6px;}
  .slider__arrow--next{right:6px;}
}

/* ============ SECTION SHELL ============ */
.section{padding:24px 0 !important;;}
.section--tight{padding:60px 0;}
.section--green{background:#ffffff;}
.section--navy{background:var(--navy); color:#EAF0F4;}
.section--navy h2, .section--navy h3{color:#fff;}
.section-head{display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:42px; flex-wrap:wrap;}
.section-title{font-size:clamp(1.7rem,3vw,2.3rem); margin-top:10px;}
.section-note{max-width:40ch; font-size:0.95rem; color:var(--slate);}
.section--navy .section-note{color:#AFC2D0;}

/* ============ MISSION ============ */
.mission__body{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
.mission__text p{margin-bottom:16px; font-size:1.02rem; color:var(--ink); max-width:58ch;}
.mission__text p:last-child{margin-bottom:0;}

.stat-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.stat-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px;}
.stat-card b{display:block; font-family:var(--font-head); font-size:2.1rem; color:var(--blue);}
.stat-card span{display:block; margin-top:6px; font-size:0.82rem; color:var(--slate); font-weight:500;}
.stat-card b{display:block; font-family:var(--font-head); font-size:2.1rem; color:var(--blue);}
.stat-card span{display:block; margin-top:6px; font-size:0.82rem; color:var(--slate); font-weight:500;}

@media (max-width:860px){ .mission__body{grid-template-columns:1fr;} }

/* ============ DEPARTMENT HEAD ============ */
.section-head--dept {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  text-align: left;
  margin-bottom: 50px;
}
.section-head__left { flex: 1; padding-right: 20px; }
.eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--blue-pale);
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.section-head--dept .section-title {
  margin-bottom: 15px;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--navy);
}
.section-head--dept .section-note {
  font-size: 1.05rem;
  color: var(--slate);
}
.btn--cyan {
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn--cyan:hover { background: var(--blue-deep); }
.btn--cyan .icon {
  width: 20px; height: 20px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  padding: 4px;
}

/* ============ DEPARTMENT GRID ============ */
.cat-grid--dept {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card-dept {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3.5;
  display: block;
  text-decoration: none;
  isolation: isolate;
  margin-left: 20px;
}
.cat-card-dept__img {
  position: absolute;
  inset: 0;
}
.cat-card-dept__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card-dept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 67, 98, 0.9) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s;
}
.cat-card-dept__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 67, 98, 0.85); /* var(--navy) */
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.cat-card-dept:hover .cat-card-dept__overlay { opacity: 1; }
.cat-card-dept:hover .cat-card-dept__img img { transform: scale(1.05); }
.cat-card-dept__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  white-space: nowrap;
}
.cat-card-dept:hover .cat-card-dept__bg-text { opacity: 1; }
.cat-card-dept__content {
  position: absolute;
  inset: 30px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.cat-card-dept__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cat-card-dept:hover .cat-card-dept__title {
  transform: translateY(-200px);
}
.cat-card-dept__arrow {
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
.cat-card-dept__arrow svg { width: 24px; height: 24px; }
.cat-card-dept:hover .cat-card-dept__arrow {
  opacity: 1;
  transform: translateY(0);
}
.cat-card-dept:hover::before { opacity: 0; }

@media (max-width:1080px){
  .cat-card-dept:hover .cat-card-dept__title { transform: translateY(-160px); }
  .nav__right {gap: 0px !important;}
}
@media (max-width:900px){
  .section-head--dept {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nav__right {gap: 0px !important;}
  .cat-grid--dept { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:540px){
  .cat-grid--dept { grid-template-columns: 1fr; }
  .nav__right {gap: 0px !important;}
}

/* Our Products: same category sidebar as shop, cards stay on the right */
body:has(.our-products-shop-layout) header.site-header .wrap.nav,
body:has(.our-products-shop-layout) header.site-header .wrap {
  max-width: 1240px;
  width: 100%;
}
.our-products-shop-layout.wrap,
.our-products-shop-layout {
  max-width: 100% !important;
  width: 100%;
  margin: 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  box-sizing: border-box;
}
.our-products-shop-layout .category-drawer__panel {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  height: auto !important;
  top: auto;
  left: auto;
  display: flex;
  flex-direction: column;
}
.our-products-shop-layout__sidebar {
  width: 100%;
  min-width: 0;
}
.our-products-shop-layout__content {
  min-width: 0;
}
.our-products-shop-layout .shop-category-sidebar {
  background: #fff;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: -24px;
}
.our-products-shop-layout__content {padding-right: 20px;}
.our-products-shop-layout.wrap {padding: 0px 0px !important;}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__header {
  background: #0086CE;
  color: #fff;
  padding: 18px 20px;
  font-size: 1.15rem;
  font-weight: 500;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__close {
  display: none;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__list {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  overflow-y: auto;
  max-height: calc(100vh - 220px);
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item {
  padding: 14px 20px;
  border-bottom: 1px solid #E5E5E5;
  color: #221E1F;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item > a {
  flex: 1;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__group:last-child > .category-dropdown__item,
.our-products-shop-layout .shop-category-sidebar .category-dropdown__children .category-dropdown__item:last-child {
  border-bottom: none;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item:hover,
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item.active {
  color: #0086CE;
  background: #F6F8F9;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item .chevron,
.our-products-shop-layout .shop-category-sidebar .category-dropdown__toggle {
  display: none !important;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__group.is-open > .category-dropdown__item .chevron {
  transform: rotate(180deg);
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__children {
  display: none;
  flex-direction: column;
  background: #F6F8F9;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__group.is-open > .category-dropdown__children {
  display: flex;
}
.our-products-shop-layout .shop-category-sidebar .category-dropdown__item--sub {
  padding: 12px 20px 12px 36px;
  font-size: 0.88rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .our-products-shop-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .our-products-shop-layout {
    grid-template-columns: 1fr;
  }
}

.lines__footnote{
  margin-top:26px; font-size:0.92rem; color:var(--slate); display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.lines__footnote a{color:var(--blue-deep); font-weight:600;}
.lines__footnote a:hover{text-decoration:underline;}

/* ============ WHY ============ */
.benefits{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.benefit{background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.14); border-radius:12px; padding:26px 22px;}
.benefit__icon{
  width:48px; height:48px; border-radius:10px; background:rgba(183,209,140,0.16); color:var(--green-light);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:18px;
}
.benefit__title{font-size:1.02rem; margin-bottom:8px;}
.benefit__copy{font-size:0.88rem; color:#B9CAD6;}

@media (max-width:980px){ .benefits{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .benefits{grid-template-columns:1fr;} }

/* ============ DOWNLOADS ============ */
.docs{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.doc{
  position:relative; overflow:hidden; display:flex; flex-direction:column; gap:16px; 
  border:1px solid var(--line); padding:32px 28px; border-radius:16px; background:#fff; 
  transition:all .25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.doc::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.doc:hover{border-color:var(--blue-pale); transform:translateY(-5px); box-shadow:0 22px 40px rgba(28, 67, 98, 0.08);}
.doc:hover::before { transform: scaleX(1); }
.doc__top{display:flex; justify-content:space-between; align-items:flex-start;}
.doc__icon{
  width:64px; height:64px; border-radius:12px; background:var(--blue-pale); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:2rem;
  transition: background .25s ease, color .25s ease;
}
.doc:hover .doc__icon { background: var(--blue); color: #fff; }
.doc__ext{font-family:var(--font-mono); font-size:0.68rem; font-weight:600; color:var(--slate); background:var(--paper-2); padding:6px 12px; border-radius:20px; text-transform:uppercase; border:none;}
.doc__title{font-family:var(--font-head); font-weight:700; font-size:1.25rem; color:var(--navy); margin-bottom:6px;}
.doc__desc{font-size:0.92rem; color:var(--slate); line-height: 1.5;}
.doc__cta{
  margin-top:auto; display:flex; align-items:center; gap:8px; font-size:0.92rem; 
  font-weight:600; color:var(--blue-deep); padding-top:16px; border-top:1px solid var(--line);
  transition: color .2s ease;
}
.doc:hover .doc__cta { color: var(--blue); }

@media (max-width:880px){ .docs{grid-template-columns:1fr;} }

/* ============ CONTACT ============ */
.contact__grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; align-items:start;}
.contact__label{font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--slate); font-weight:600; margin-bottom:6px;}
.contact__block{margin-bottom:26px; padding-bottom:26px; border-bottom:1px solid var(--line);}
.contact__block:last-child{border-bottom:none; margin-bottom:0; padding-bottom:0;}
.contact__value{font-size:1.06rem; font-weight:600; color:#1c4362 !important;}
.contact__value a:hover{color:#045c8f !important;}
.contact__actions{display:flex; gap:12px; margin-top:20px; flex-wrap:wrap;}

.quote-card{background:#fff; border:1px solid var(--line); border-radius:14px; padding:30px; box-shadow:0 20px 40px rgba(11,46,69,0.08);}
.quote-card h3{font-size:1.2rem;}
.quote-card p{color:var(--slate); font-size:0.9rem; margin-top:6px;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:22px;}
.form-field{display:flex; flex-direction:column; gap:6px;}
.form-field.full{grid-column:1 / -1;}
.form-field label{font-size:0.78rem; font-weight:600; color:var(--navy);}
.form-field input, .form-field textarea{
  border:1px solid var(--line); border-radius:8px; padding:11px 12px; font-size:0.92rem; color:var(--ink);
  background:var(--paper-2); resize:vertical;
}
.form-field input:focus, .form-field textarea:focus{border-color:var(--blue); background:#fff;}
.quote-form__submit{margin-top:18px; width:100%; justify-content:center;}
.quote-success{
  display:none; text-align:center; padding:30px 10px;
}
.quote-success .icon{
  width:52px; height:52px; color:var(--green); background:var(--green-pale); border-radius:50%; padding:12px; stroke-width:2;
}
.quote-success h3{margin-top:14px;}
.quote-success p{margin-top:8px;}

@media (max-width:900px){
  .contact__grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
}

/* ============ FOOTER ============ */
.site-footer{background:var(--navy); color:#CBD8E1; padding:62px 0 26px;}
.footer__grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.14);}
.footer__brand img{height:36px; filter:brightness(0) invert(1); opacity:0.95;}
.footer__brand p{margin-top:16px; font-size:0.88rem; color:#9FB3C2; max-width:32ch;}
.footer__social{display:flex; gap:10px; margin-top:18px;}
.footer__social a{
  width:36px; height:36px; border:2px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#CBD8E1;
}
.footer__social a:hover{color:var(--green-light); border-color:var(--green-light);}
.footer__heading{font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:#7E96A6; font-weight:700; margin-bottom:16px;}
.footer__links li{margin-bottom:10px;}
.footer__links a{font-size:0.9rem; color:#D6E1E8;}
.footer__links a:hover{color:var(--green-light);}
.footer__bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:22px; font-size:0.78rem; color:#7E96A6;}

@media (max-width:880px){ .footer__grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
@media (max-width:520px){ .footer__grid{grid-template-columns:1fr;} }

@media (max-width:640px){
  .section{padding:56px 0;}
  .quote-card{padding:22px;}
}

/* --- New Dark Banner Styles --- */
.dark-banner {
background: #0f151b !important;
background-image: radial-gradient(circle at 70% 30%, #1a2a3a 0%, #0f151b 60%) !important;
}
.slide__grid--banner {
display: flex !important;
align-items: center;
justify-content: space-between;
}
.banner__content {
flex: 1;
padding-right: 40px;
}
.banner__subtitle {
color: var(--blue);
font-family: var(--font-body);
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.05em;
display: block;
margin-bottom: 12px;
}
.banner__title {
color: #ffffff !important;
font-family: var(--font-head);
font-size: clamp(2.5rem, 4vw, 3.5rem);
line-height: 1.2;
margin-bottom: 30px;
}
.btn--yellow {
background-color: #ffb703 !important;
color: #0f151b !important;
font-weight: 700;
border-radius: 4px;
text-transform: uppercase;
padding: 14px 28px;
letter-spacing: 0.05em;
box-shadow: 0 4px 14px rgba(255, 183, 3, 0.3) !important;
}
.btn--yellow:hover {
background-color: #fb8500 !important;
color: #ffffff !important;
}
.banner__visual {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.banner__img {
max-width: 100%;
height: auto;
filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
@media (max-width: 920px) {
.slide__grid--banner {
  flex-direction: column;
  text-align: center;
}
.banner__content {
  padding-right: 0;
  margin-bottom: 40px;
}
}

/* Full Width Hero Modifiers */
.hero--full-width .wrap {
max-width: 100% !important;
padding: 0 !important;
}
.hero--full-width .slider__viewport {
border-radius: 0 !important;
border: none !important;
}
.hero--full-width {
padding: 0 !important;
}
.hero--full-width .slide {
padding: 0 !important;
}

/* Background Image Banner */
.bg-image-banner {
background-size: cover;
background-position: center right;
background-repeat: no-repeat;
width: 100%;
min-height: 500px;
}
.bg-image-banner .banner__content {
padding-left: 5vw;
max-width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
}
.dark-banner {
background: none !important;
}

/* Overlays for full-width banner */
.hero--full-width .slider__arrow--prev { left: 20px; }
.hero--full-width .slider__arrow--next { right: 20px; }
.hero--full-width .slider__nav {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
margin-top: 0;
z-index: 10;
}
.hero--full-width .slider__dot {
background: rgba(255,255,255,0.5);
}
.hero--full-width .slider__dot.is-active {
background: #fff;
}
.hero--full-width .slider__playpause {
color: #fff;
border-color: rgba(255,255,255,0.3);
}
.hero--full-width .slider__playpause svg {
fill: #fff;
}

/* ============ VIDEO HERO ============ */
.video-hero {
position: relative;
width: 100%;
min-height: 100vh; /* Full screen height */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 140px 24px 60px;
overflow: hidden;
background-color: var(--navy);
}
.video-hero__bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.video-hero__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(11, 46, 69, 0.5); /* uniform semi-transparent dark overlay for centered text */
z-index: 1;
}
.video-hero__wrap {
position: relative;
z-index: 2;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.video-hero__content {
max-width: 800px;
}
.video-hero__subtitle {
color: var(--green-light);
font-family: var(--font-body);
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.05em;
display: block;
margin-bottom: 12px;
}
.video-hero__title {
color: #ffffff;
font-family: var(--font-head);
font-size: clamp(2.4rem, 3vw, 4.2rem);
line-height: 1.15;
margin-bottom: 32px;
text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.video-hero__actions {
display: flex;
justify-content: center;
gap: 16px;
}
.video-hero__dots {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 2;
}
.video-hero__dots .dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.4);
cursor: pointer;
transition: all .2s ease;
}
.video-hero__dots .dot.is-active, .video-hero__dots .dot:hover {
background: #ffffff;
transform: scale(1.2);
}

@keyframes video-hero-pan {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% + 100vw)); }
}

@media (max-width: 1020px) {
  .video-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .video-hero__bg {
    width: auto;
    height: 100%;
    max-width: none;
    min-height: 100%;
    left: 0;
    object-fit: cover;
    object-position: left center;
    animation: video-hero-pan 18s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-hero__bg {
    animation: none;
    width: 100%;
    object-position: 50% 50%;
    transform: none;
  }
}

/* ============ LATEST PRODUCTS (CAROUSEL) ============ */
.product-section-head {
text-align: left;
margin-bottom: 30px;
border-bottom: 1px solid var(--line);
}
.product-section-title {
display: inline-block;
font-size: 1.8rem;
font-weight: 700;
color: var(--ink);
padding-bottom: 10px;
margin: 0;
position: relative;
}
.product-section-title::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 2px;
background: var(--blue);
}

.product-carousel-wrapper {
position: relative;
display: flex;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.product-carousel-wrapper::before,
.product-carousel-wrapper::after {
content: '';
position: absolute;
top: 0; bottom: 0;
width: 2px;
background: #fff;
z-index: 5;
}
.product-carousel-wrapper::before { left: -1px; }
.product-carousel-wrapper::after { right: -1px; }

.product-carousel {
display: flex;
flex: 1;
overflow-x: auto;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
-ms-overflow-style: none;
scrollbar-width: none;
background: #fff;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-card {
flex: 0 0 20%;
min-width: 220px;
border-right: 1px solid var(--line);
position: relative;
display: flex;
flex-direction: column;
padding: 24px;
background: #fff;
scroll-snap-align: start;
}
.product-card__badge {
position: absolute;
top: 20px;
left: 20px;
background: #00a884;
color: #fff;
font-size: 0.75rem;
font-weight: bold;
padding: 4px 8px;
border-radius: 4px;
z-index: 2;
}
.product-card__image-wrap {
position: relative;
width: 100%;
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.product-card__image-wrap img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.product-card__countdown {
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 4px;
background: #fff;
padding: 4px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
border-radius: 4px;
z-index: 3;
}
.countdown-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #fdf5f5;
color: #e53e3e;
padding: 4px 6px;
border-radius: 4px;
min-width: 36px;
}
.countdown-item strong {
font-size: 0.85rem;
line-height: 1;
}
.countdown-item span {
font-size: 0.5rem;
text-transform: uppercase;
margin-top: 2px;
}
.product-card__actions {
position: absolute;
top: 0;
right: -10px;
display: flex;
flex-direction: column;
gap: 8px;
opacity: 0;
transform: translateX(10px);
transition: all 0.2s ease;
}
.product-card:hover .product-card__actions {
opacity: 1;
transform: translateX(0);
}
.action-btn {
width: 36px;
height: 36px;
border-radius: 50%;
background: #fff;
border: 1px solid var(--line);
display: flex;
align-items: center;
justify-content: center;
color: var(--slate);
transition: all 0.2s ease;
cursor: pointer;
}
.action-btn:hover {
color: var(--navy);
border-color: var(--navy);
}
.action-btn .icon {
width: 16px;
height: 16px;
}
.product-card__info {
flex: 1;
display: flex;
flex-direction: column;
text-align: left;
}
.product-card__title {
font-size: 0.95rem;
font-weight: 500;
color: var(--ink);
line-height: 1.4;
margin-bottom: 8px;
}
.product-card__rating {
color: #fbbf24;
font-size: 0.85rem;
margin-bottom: 8px;
}
.product-card__rating .star:not(.active) {
color: #e2e8f0;
}
.product-card__price {
margin-bottom: 16px;
font-weight: 700;
color: #111;
font-size: 1rem;
}
.product-card__price .old-price {
color: var(--slate);
text-decoration: line-through;
font-size: 0.85rem;
margin-right: 6px;
}
.product-card__price .new-price {
color: #00a884;
}
.product-card__read-btn {
display: block;
width: 100%;
text-align: center;
background: var(--blue);
color: #fff;
font-weight: 600;
font-size: 0.8rem;
text-transform: uppercase;
padding: 10px 16px;
border: none;
border-radius: 4px;
transition: background 0.2s ease;
cursor: pointer;
margin-top: auto;
}
.product-card__read-btn:hover {
background: var(--navy);
}

.product-carousel__btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
padding: 0px 12px;
height: 48px;
background: #ffffff;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #111;
z-index: 10;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
transition: all 0.2s;
cursor: pointer;
}
.product-carousel__btn:hover {
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.product-carousel__btn.prev {
left: -24px; color: #000000;
}
.product-carousel__btn.next {
right: -24px; color: #000000;
}
@media (max-width: 1024px) {
.product-card { flex: 0 0 33.333%; }
}
@media (max-width: 768px) {
.product-card { flex: 0 0 50%; }
}
@media (max-width: 480px) {
.product-card { flex: 0 0 100%; }
}

/* ============ PARALLAX BANNER ============ */
.parallax-banner {
background-image: url('../images/7c1db224-1ee8-4df7-82c8-b44faa2db6a0.png');
background-attachment: fixed;
background-position: center bottom;
background-repeat: no-repeat;
background-size: cover;
padding: 140px 20px;
text-align: center;
color: #fff;
position: relative;
z-index: 1;
}
.parallax-banner::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.4);
z-index: -1;
}
.parallax-banner h2 {
font-size: 1.5rem;
font-weight: 500;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
color: #fff;
}
.parallax-banner h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 25px;
text-transform: uppercase;
color: #fff;
line-height: 1.1;
}
.parallax-banner p {
font-size: 1.25rem;
margin-bottom: 50px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
color: rgba(255, 255, 255, 0.9);
}
.parallax-banner__btns {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.parallax-banner .btn--white {
background: #fff;
color: #111;
padding: 18px 40px;
border-radius: 4px;
font-weight: 700;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
transition: all 0.2s;
text-transform: uppercase;
}
.parallax-banner .btn--white:hover {
background: #f1f1f1;
transform: translateY(-2px);
}
.parallax-banner .btn--white svg { stroke: currentColor; fill: none; }

.parallax-banner .btn--blue {
background: #0086ce;
color: #fff;
padding: 18px 40px;
border-radius: 4px;
font-weight: 700;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
transition: all 0.2s;
text-transform: uppercase;
}
.parallax-banner .btn--blue:hover {
background: #005bb5;
transform: translateY(-2px);
}
.parallax-banner .btn--blue svg { stroke: currentColor; fill: none; }

@media (max-width: 768px) {
.parallax-banner { padding: 100px 20px; }
.parallax-banner h1 { font-size: 2.5rem; }
.parallax-banner p { font-size: 1.1rem; }
div#productsItem {margin-left: -10px !important;}
div#productsItem a {text-decoration: none !important;}
}

/* ============ MISSION ============ */
.section--mission {
background: #fff;
}
.mission__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.mission__title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 30px;
text-transform: uppercase;
color: var(--ink);
letter-spacing: -0.5px;
}
.mission__title .text-blue {
color: var(--blue);
}
.mission__content p {
color: var(--slate);
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 20px;
}
.mission__image img {
width: 100%;
height: auto;
border-radius: 20px;
}
.btn--pill {
border-radius: 50px;
padding: 14px 32px;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.85rem;
font-weight: 600;
border: 1.5px solid var(--ink);
color: var(--ink);
}
.btn--pill:hover {
background: var(--ink);
color: #fff;
}

@media (max-width: 900px) {
.mission__grid { grid-template-columns: 1fr; gap: 40px; }
.mission__title { font-size: 2rem; }
div#productsItem {margin-left: -10px !important;}
div#productsItem a {text-decoration: none !important;}
}

/* ============ WOO PAGE HERO — full-width breakout ============ */
.gedgpro-page-hero {
background: #1c4362;
text-align: center;
padding: 100px 0px 24px 40px;
/* break out of any parent max-width wrapper */
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
box-sizing: border-box;
}
.gedgpro-page-hero__title {
color: #fff;
font-family: var(--font-head, sans-serif);
font-size: 32px;
font-weight: 700;
margin: 0 0 1px;
text-transform: capitalize !important;
}
.gedgpro-page-hero__subtitle {
color: rgba(255,255,255,0.8);
font-size: 1.00rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

/* Contact CF7: first + last name same row; other fields full width like message */
.quote-card .wpcf7-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px;
  position:relative;
}
.quote-card .wpcf7-form > fieldset.hidden-fields-container{
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
  margin:0;
  padding:0;
  border:0;
}
.quote-card .wpcf7-form .form-field.full,
.quote-card .wpcf7-form .wpcf7-response-output{
  grid-column:1 / -1;
}
.quote-card .wpcf7-form .form-field p{margin:0;}
.quote-card .wpcf7-form .form-field .wpcf7-form-control-wrap,
.quote-card .wpcf7-form .form-field input,
.quote-card .wpcf7-form .form-field textarea{
  width:100%;
  box-sizing:border-box;
}
@media (max-width:900px){
  .quote-card .wpcf7-form{grid-template-columns:1fr;}
}


