
:root{
  --navy:#071a46;
  --blue:#0b57d0;
  --blue2:#1967e8;
  --light:#f5f9ff;
  --line:#dbe7f6;
  --text:#10234c;
  --muted:#5b6b87;
  --white:#fff;
  --shadow:0 18px 45px rgba(14,59,127,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

.topbar{
  background:var(--navy);
  color:#fff;
  font-size:12px;
  letter-spacing:.04em;
}
.topbar-inner{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar-right{display:flex;gap:28px;align-items:center}
.topbar a{opacity:.96}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(213,225,242,.85);
}
.nav-wrap{
  min-height:84px;
  display:grid;
  grid-template-columns:280px 1fr auto;
  align-items:center;
  gap:24px;
}
.brand img{
  width:255px;
  height:58px;
  object-fit:contain;
  object-position:left center;
}
.main-nav{
  display:flex;
  justify-content:center;
  gap:30px;
  align-items:center;
}
.main-nav a{
  font-size:14px;
  font-weight:600;
  color:#152449;
  padding:31px 0 28px;
  border-bottom:3px solid transparent;
  transition:.2s ease;
}
.main-nav a:hover,.main-nav a.active{color:var(--blue);border-color:var(--blue)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(11,87,208,.18)}
.btn-primary{background:linear-gradient(135deg,var(--blue),#0753c8);color:#fff}
.btn-outline{border:1px solid #9fc0f6;color:var(--blue);background:#fff}
.btn-large{min-height:56px;padding:0 30px}
.menu-toggle{display:none;background:none;border:0;padding:8px}
.menu-toggle span{display:block;width:25px;height:2px;background:var(--navy);margin:5px 0}

.hero{
  background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);
  padding:26px 0 0;
}
.hero-grid{
  min-height:500px;
  display:grid;
  grid-template-columns:46% 54%;
  align-items:stretch;
  overflow:hidden;
  border-radius:0 0 22px 22px;
}
.hero-copy{
  padding:68px 40px 58px 4px;
  position:relative;
  z-index:2;
}
.eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.15em;
  color:var(--blue);
  margin-bottom:14px;
}
.hero h1,.section h2{
  font-family:Montserrat,Inter,sans-serif;
  letter-spacing:-.03em;
}
.hero h1{
  margin:0;
  font-size:49px;
  line-height:1.04;
  color:var(--navy);
}
.hero h1 span{color:var(--blue)}
.hero-copy p{
  font-size:17px;
  line-height:1.7;
  max-width:600px;
  color:var(--muted);
  margin:22px 0 28px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-visual{
  background:
    linear-gradient(90deg,#f8fbff 0%,rgba(248,251,255,.1) 28%,rgba(255,255,255,0) 60%),
    url("hero-gloves.jpg") center/cover no-repeat;
  min-height:500px;
  border-radius:18px;
  box-shadow:inset 40px 0 55px rgba(248,251,255,.7);
}
.trust-bar{
  transform:translateY(-18px);
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid #e5edf7;
  border-radius:14px;
  padding:21px 25px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:15px;
  padding:0 22px;
  border-right:1px solid #e4ebf5;
}
.trust-item:first-child{padding-left:0}
.trust-item:last-child{border-right:0;padding-right:0}
.trust-item .icon{
  width:44px;height:44px;flex:0 0 44px;
  border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #99bff7;
  color:var(--blue);
  font-weight:800;
  font-size:19px;
}
.trust-item strong{display:block;font-size:13px;color:var(--navy);margin-bottom:5px}
.trust-item small{font-size:12px;color:var(--muted);line-height:1.4}

.section{padding:86px 0}
.section-head{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:end;
  margin-bottom:36px;
}
.section h2{
  margin:0;
  font-size:36px;
  line-height:1.13;
  color:var(--navy);
}
.section-head p,.about-copy p,.contact-card p,.why-grid>div>p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.product-card{
  min-height:260px;
  padding:28px;
  border:1px solid #e0e9f5;
  border-radius:15px;
  background:#fff;
  box-shadow:0 8px 28px rgba(24,67,130,.05);
  transition:.25s ease;
}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:#b8d1f6}
.product-icon{
  width:52px;height:52px;border-radius:13px;
  display:grid;place-items:center;
  background:#edf5ff;color:var(--blue);
  font-size:26px;margin-bottom:22px;
}
.product-card h3{font-size:18px;line-height:1.3;color:var(--navy);margin:0 0 12px}
.product-card p{font-size:14px;line-height:1.65;color:var(--muted);margin:0 0 20px}
.product-card a{font-size:13px;font-weight:800;color:var(--blue)}

.about-section{background:#f7faff}
.about-grid{
  display:grid;
  grid-template-columns:42% 58%;
  gap:58px;
  align-items:center;
}
.about-image{position:relative}
.about-image img{
  width:100%;height:430px;object-fit:cover;border-radius:18px;
  box-shadow:var(--shadow)
}
.image-badge{
  position:absolute;left:24px;bottom:24px;
  background:rgba(7,26,70,.92);color:#fff;
  border-radius:8px;padding:12px 15px;
  font-size:12px;font-weight:700;letter-spacing:.06em
}
.about-copy p{margin-top:16px}
.mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:28px;
}
.mini-grid>div{
  padding:17px 18px;
  background:#fff;border:1px solid #dfe9f6;border-radius:12px;
}
.mini-grid strong{display:block;color:var(--navy);font-size:14px;margin-bottom:6px}
.mini-grid span{color:var(--muted);font-size:12px;line-height:1.5}

.why-section{
  background:linear-gradient(135deg,#071a46,#0b3f97);
  color:#fff;
}
.eyebrow.light{color:#a8caff}
.why-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:start;
}
.why-grid h2{color:#fff;font-size:40px;margin-bottom:20px}
.why-grid>div>p{color:#ccdaf1;font-size:16px}
.why-list{display:grid;gap:14px}
.why-list>div{
  position:relative;
  padding:20px 22px 20px 76px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:13px;background:rgba(255,255,255,.05)
}
.why-list span{
  position:absolute;left:20px;top:20px;
  color:#7fb0ff;font-weight:800;font-size:13px;
  border:1px solid rgba(127,176,255,.45);
  border-radius:50%;width:36px;height:36px;display:grid;place-items:center
}
.why-list strong{display:block;margin-bottom:6px}
.why-list p{margin:0;color:#cbd9ef;font-size:13px;line-height:1.55}

.contact-section{padding:76px 0}
.contact-card{
  display:flex;justify-content:space-between;align-items:center;gap:40px;
  padding:45px 50px;border-radius:18px;
  background:linear-gradient(135deg,#f0f6ff,#fff);
  border:1px solid #dbe8f8;
}
.contact-card h2{font-size:35px;margin-bottom:14px}
.contact-card p{max-width:700px}
.contact-actions{display:flex;flex-direction:column;align-items:center;gap:10px;white-space:nowrap}
.contact-actions span{font-size:12px;color:var(--muted)}

footer{border-top:1px solid #e2e9f3;background:#fff;padding:34px 0 20px}
.footer-grid{
  display:grid;grid-template-columns:290px 1fr auto;
  gap:30px;align-items:center
}
.footer-brand img{width:245px;height:56px;object-fit:contain;object-position:left center}
.footer-grid p{font-size:13px;color:var(--muted)}
.footer-links{display:flex;gap:20px;font-size:13px;font-weight:700;color:var(--navy)}
.copyright{padding-top:22px;margin-top:22px;border-top:1px solid #edf1f6;color:#7a879c;font-size:11px}

@media (max-width: 980px){
  .topbar-right span{display:none}
  .nav-wrap{grid-template-columns:1fr auto auto;min-height:74px}
  .brand img{width:220px;height:50px}
  .menu-toggle{display:block}
  .nav-quote{display:none}
  .main-nav{
    display:none;position:absolute;top:110px;left:20px;right:20px;
    background:#fff;box-shadow:var(--shadow);border:1px solid #e1eaf5;border-radius:12px;
    padding:12px;flex-direction:column;gap:0;align-items:stretch
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:15px;border-bottom:1px solid #edf1f6}
  .hero-grid{grid-template-columns:1fr;min-height:auto}
  .hero-copy{padding:55px 0 30px}
  .hero-visual{min-height:360px}
  .trust-bar{grid-template-columns:1fr 1fr;gap:18px;transform:none;margin-top:22px}
  .trust-item{border-right:0;padding:0}
  .product-grid{grid-template-columns:1fr 1fr}
  .about-grid,.why-grid,.section-head{grid-template-columns:1fr}
  .about-grid{gap:36px}
  .footer-grid{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
}
@media (max-width: 620px){
  .container{width:min(100% - 28px,1180px)}
  .topbar{display:none}
  .site-header{top:0}
  .nav-wrap{min-height:68px}
  .brand img{width:190px;height:45px}
  .main-nav{top:72px}
  .hero{padding-top:0}
  .hero h1{font-size:38px}
  .hero-copy p{font-size:15px}
  .hero-visual{min-height:300px}
  .trust-bar,.product-grid,.mini-grid{grid-template-columns:1fr}
  .trust-bar{padding:20px}
  .trust-item{padding:0}
  .section{padding:64px 0}
  .section h2{font-size:30px}
  .about-image img{height:330px}
  .contact-card{flex-direction:column;align-items:flex-start;padding:32px 26px}
  .contact-actions{align-items:flex-start;white-space:normal;width:100%}
  .contact-actions .btn{width:100%}
}
