
:root{
  --hs-yellow:#ffd400;
  --hs-blue:#0b2f5b;
  --hs-navy:#071d36;
  --hs-dark:#111318;
  --hs-light:#f5f7fa;
  --hs-text:#20242a;
  --hs-muted:#68717d;
  --hs-border:#dfe5eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
  color:var(--hs-text);
  line-height:1.5;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,94%);margin:0 auto}

/* TOP BAR */
.hs-topbar{
  background:var(--hs-navy);
  color:#fff;
  font-size:14px;
}
.hs-topbar .container{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.hs-topbar .right{display:flex;gap:18px;flex-wrap:wrap}

/* HEADER */
.hs-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 14px rgba(0,0,0,.08);
}
.hs-header-main{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.hs-logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.hs-logo-mark{
  background:var(--hs-yellow);
  color:#1422a0;
  padding:12px 20px;
  font-weight:900;
  font-size:28px;
  line-height:1;
  transform:skew(-8deg);
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.08);
}
.hs-logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.hs-logo-text strong{font-size:18px;color:#122441}
.hs-logo-text span{font-size:12px;color:var(--hs-muted)}
.hs-nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.hs-nav a{
  font-weight:700;
  color:#243447;
  padding:8px 0;
}
.hs-nav a:hover{color:var(--hs-blue)}
.hs-buy{
  background:var(--hs-yellow);
  color:#111!important;
  padding:13px 18px!important;
  border-radius:8px;
  font-weight:900!important;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

/* HERO */
.hs-hero{
  background:
    linear-gradient(90deg,rgba(4,14,26,.88) 0%,rgba(4,14,26,.68) 44%,rgba(4,14,26,.18) 100%),
    url('../uploads/hero.jpg') center/cover no-repeat;
  min-height:530px;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
}
.hs-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:5px;
  background:var(--hs-yellow);
}
.hs-hero-content{
  position:relative;
  z-index:1;
  max-width:700px;
  padding:70px 0;
}
.hs-kicker{
  color:var(--hs-yellow);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  font-size:14px;
}
.hs-hero h1{
  font-size:clamp(42px,6vw,68px);
  line-height:1.02;
  margin:12px 0 18px;
  max-width:780px;
}
.hs-hero p{
  font-size:20px;
  color:#eef2f6;
  max-width:700px;
  margin:0;
}
.hs-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:8px;
  background:var(--hs-yellow);
  color:#111;
  font-weight:900;
  border:none;
}
.hs-btn-outline{
  border:1px solid rgba(255,255,255,.75);
  color:#fff;
  background:rgba(255,255,255,.06);
}

/* FEATURE STRIP */
.hs-features{
  background:#fff;
  border-bottom:1px solid var(--hs-border);
}
.hs-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.hs-feature{
  padding:24px 22px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  border-right:1px solid var(--hs-border);
}
.hs-feature:last-child{border-right:0}
.hs-feature-icon{
  width:42px;height:42px;border-radius:10px;
  background:#eef3f8;
  color:var(--hs-blue);
  display:grid;place-items:center;
  font-size:22px;
  flex:0 0 42px;
}
.hs-feature strong{display:block;color:#11263f}
.hs-feature small{display:block;color:var(--hs-muted);margin-top:4px}

/* SECTIONS */
.hs-section{padding:72px 0}
.hs-section.alt{background:var(--hs-light)}
.hs-section-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:28px;
}
.hs-section h2{
  margin:5px 0 0;
  font-size:36px;
  color:#14243a;
}
.hs-eyebrow{
  color:#8c7500;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.hs-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.hs-card{
  background:#fff;
  border:1px solid var(--hs-border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(21,37,54,.06);
}
.hs-card-body{padding:22px}
.hs-card h3{margin:0 0 8px;font-size:22px;color:#172943}
.hs-card p{color:var(--hs-muted);margin:0 0 14px}
.hs-link{font-weight:900;color:var(--hs-blue)}
.hs-products-banner{
  margin-top:28px;
  background:
    linear-gradient(90deg,rgba(6,25,47,.93),rgba(6,25,47,.78)),
    url('../uploads/hero.jpg') center/cover;
  color:#fff;
  border-radius:14px;
  padding:26px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.hs-products-banner h3{margin:0 0 5px;font-size:28px}
.hs-products-banner p{margin:0;color:#dfe8f3}

/* ABOUT */
.hs-two{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:30px;
  align-items:start;
}
.hs-about-text{
  font-size:18px;
  line-height:1.75;
  color:#3b4652;
}
.hs-service-box{
  background:var(--hs-navy);
  color:#fff;
  border-radius:14px;
  padding:28px;
}
.hs-service-box h3{font-size:24px;margin-top:0}
.hs-service-box p{color:#d9e1eb}
.hs-service-box hr{border:0;border-top:1px solid rgba(255,255,255,.18);margin:20px 0}

/* BRANDS */
.hs-brands{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.hs-brand{
  background:#fff;
  border:1px solid var(--hs-border);
  border-radius:12px;
  min-height:86px;
  display:grid;
  place-items:center;
  padding:14px;
  font-weight:900;
  color:#384a60;
  text-align:center;
}

/* CONTACT */
.hs-contact-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}
.hs-form{
  background:#fff;
  border:1px solid var(--hs-border);
  border-radius:14px;
  padding:24px;
}
.hs-form input,.hs-form textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid #ccd5df;
  border-radius:8px;
  margin:0 0 12px;
  font:inherit;
}
.hs-form textarea{min-height:140px;resize:vertical}
.hs-location{
  background:#0b223f;
  color:#fff;
  border-radius:14px;
  padding:26px;
}
.hs-location p{color:#e4ebf3}

/* FOOTER */
.hs-footer{
  background:#0b1220;
  color:#c5ced9;
  padding:38px 0 24px;
}
.hs-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:28px;
}
.hs-footer strong{color:#fff}
.hs-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:28px;
  padding-top:18px;
  font-size:13px;
  color:#8f9cab;
}

/* RESPONSIVE */
@media(max-width:980px){
  .hs-nav{display:none}
  .hs-feature-grid{grid-template-columns:repeat(2,1fr)}
  .hs-feature:nth-child(2){border-right:0}
  .hs-card-grid{grid-template-columns:repeat(2,1fr)}
  .hs-brands{grid-template-columns:repeat(3,1fr)}
  .hs-two,.hs-contact-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .hs-topbar .container{display:block;padding:8px 0}
  .hs-topbar .right{margin-top:4px}
  .hs-header-main{min-height:72px}
  .hs-logo-text{display:none}
  .hs-logo-mark{font-size:22px}
  .hs-hero{min-height:470px}
  .hs-hero-content{padding:54px 0}
  .hs-hero h1{font-size:40px}
  .hs-hero p{font-size:18px}
  .hs-feature-grid,.hs-card-grid,.hs-brands,.hs-footer-grid{grid-template-columns:1fr}
  .hs-feature{border-right:0;border-bottom:1px solid var(--hs-border)}
  .hs-products-banner{flex-direction:column;align-items:flex-start}
  .hs-section{padding:52px 0}
  .hs-section h2{font-size:31px}
}
