
:root{
  --navy:#072845;
  --navy2:#113b60;
  --ice:#edf7fc;
  --text:#13283b;
  --muted:#607385;
  --line:#d7e4ec;
  --white:#fff;
  --shadow:0 12px 30px rgba(12,43,68,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--text);background:#fff;line-height:1.5}
a{color:inherit}
.site-header{
  width:min(1280px,calc(100% - 56px));
  height:112px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
}
.logo-link{display:block;width:430px;height:96px}
.logo-link img{width:100%;height:100%;display:block;object-fit:contain;object-position:left center}
.main-nav{display:flex;align-items:center;gap:34px}
.main-nav a{text-decoration:none;font-weight:700;font-size:.98rem}
.nav-cta,.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
  border-radius:9px;
}
.nav-cta{background:var(--navy);color:#fff;padding:14px 20px}
.menu-toggle{display:none;border:0;background:none;font-size:1.9rem;color:var(--navy)}

.hero{
  position:relative;
  min-height:470px;
  background:url('snowrent-hero-final.jpg') center center/cover no-repeat;
  overflow:hidden;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,31,55,.82) 0%,rgba(5,31,55,.56) 42%,rgba(5,31,55,.05) 74%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(1280px,calc(100% - 56px));
  margin:0 auto;
  padding:88px 0 74px;
  color:#fff;
}
.hero h1{
  font-size:clamp(3.8rem,6.2vw,6.5rem);
  line-height:.93;
  margin:0 0 18px;
  max-width:780px;
}
.hero p{
  font-size:1.25rem;
  max-width:610px;
  margin:0 0 28px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{padding:14px 19px}
.btn-dark{background:var(--navy);color:#fff}
.btn-light{background:#fff;color:var(--navy)}

.product-grid{
  width:min(1280px,calc(100% - 56px));
  margin:30px auto 34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.product-card{
  min-height:240px;
  background:linear-gradient(135deg,#f4f9fc,#eaf5fb);
  border-radius:16px;
  padding:28px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:22px;
}
.product-copy h2{font-size:1.6rem;margin:7px 0 9px}
.product-copy p{margin:0 0 18px;color:var(--muted)}
.tiny-icon{
  width:34px;height:34px;
  display:grid;place-items:center;
}
.tiny-icon svg,
.benefit-svg svg{
  width:100%;height:100%;
  fill:none;
  stroke:var(--navy);
  stroke-width:3.3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.product-image-wrap{
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-image-wrap img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:185px;
  object-fit:contain;
  border-radius:12px;
}
.roofbox-wrap{flex-direction:column;gap:8px}
.roofbox-wrap img{max-height:120px;max-width:330px}
.roofbox-wrap strong{text-align:center;font-size:.92rem;color:var(--navy)}

.benefits{
  width:min(1280px,calc(100% - 56px));
  margin:0 auto 30px;
  padding:22px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.benefits>div{
  display:flex;
  align-items:center;
  gap:15px;
  padding:0 38px;
  border-right:1px solid var(--line);
}
.benefits>div:last-child{border-right:0}
.benefit-svg{width:42px;height:42px;flex:0 0 42px}
.benefits p{margin:0}
.benefits strong{display:block;font-size:1.02rem}
.benefits span{display:block;color:var(--muted);font-size:.92rem;margin-top:2px}

footer{
  width:min(1280px,calc(100% - 56px));
  margin:0 auto;
  padding:26px 0 32px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:.9rem;
}
footer p{margin:0}
footer a{text-decoration:none;font-weight:700}

@media(max-width:900px){
  .site-header{width:calc(100% - 24px);height:94px}
  .logo-link{width:285px;height:78px}
  .menu-toggle{display:block}
  .main-nav{
    display:none;
    position:absolute;
    top:94px;
    left:12px;
    right:12px;
    z-index:40;
    background:#fff;
    box-shadow:var(--shadow);
    border-radius:14px;
    padding:18px;
    flex-direction:column;
    align-items:stretch;
  }
  .main-nav.open{display:flex}
  .hero{min-height:470px;background-position:60% center}
  .hero-content{width:calc(100% - 28px);padding:72px 0}
  .hero h1{font-size:3.7rem}
  .product-grid{grid-template-columns:1fr;width:calc(100% - 24px)}
  .benefits{grid-template-columns:1fr;width:calc(100% - 24px)}
  .benefits>div{border-right:0;border-bottom:1px solid var(--line);padding:16px 6px}
  .benefits>div:last-child{border-bottom:0}
}
@media(max-width:560px){
  .logo-link{width:255px;height:74px}
  .hero{min-height:500px;background-position:62% center}
  .hero h1{font-size:3rem}
  .hero p{font-size:1.08rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .product-card{grid-template-columns:1fr}
  .product-image-wrap{min-height:145px}
  footer{width:calc(100% - 24px);flex-direction:column}
}
