*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#071f61;
  background:#fff;
  overflow-x:hidden
}

a{text-decoration:none;color:inherit}

img{max-width:100%;height:auto}

/* Header */

.header{
  min-height:82px;
  padding:8px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 2px 14px #001c5520
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0
}

.brand img{
  width:70px;
  height:64px;
  object-fit:contain;
  flex-shrink:0
}

.brand-name{
  font-size:22px;
  font-weight:900;
  line-height:1.05;
  white-space:nowrap;
  letter-spacing:-.4px;
  color:#071f61
}

.brand-name b{color:#071f61}

.brand-name em{
  color:#ff5a16;
  font-style:normal
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:13px;
  font-weight:700
}

.nav>a{
  padding:12px 0;
  position:relative
}

.nav .active:after,
.nav>a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:3px;
  height:2px;
  background:#ff5a16
}

.quote,
.btn{
  background:#ff5a16!important;
  color:#fff!important;
  border-radius:28px;
  padding:13px 21px!important
}

.quote:after,
.btn:after{display:none!important}

.menu{
  display:none;
  border:0;
  background:none;
  font-size:26px;
  color:#071f61;
  cursor:pointer;
  padding:8px
}

/* Hero */

.hero{
  position:relative;
  overflow:hidden;
  background:#fff;
  width:100%;
  height:calc(100vh - 82px)
}

.slides{
  display:flex;
  height:100%;
  transition:transform .6s ease;
  touch-action:pan-y
}

.slide{
  min-width:100%;
  height:100%;
  display:block
}

.slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:fill;
  object-position:center
}

.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  border-radius:50%;
  width:44px;
  height:44px;
  background:#fff;
  color:#07256d;
  font-size:34px;
  box-shadow:0 4px 15px #001c5530;
  cursor:pointer;
  opacity:.9;
  z-index:2
}

.prev{left:22px}
.next{right:22px}

.dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:9px;
  z-index:3
}

.dot{
  width:10px;
  height:10px;
  border:0;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 6px #0005;
  cursor:pointer;
  padding:0
}

.dot.active{background:#ff5a16}

/* Trust */

.trust-strip{
  width:92%;
  max-width:1250px;
  margin:-1px auto 0;
  padding:18px 25px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 30px #001c5514;
  position:relative;
  z-index:2;
  text-align:center;
  color:#071f61;
  font-size:12px
}

.trust-strip div{
  padding:8px;
  border-right:1px solid #d8deeb
}

.trust-strip div:last-child{border:0}

/* Sections */

.section{
  padding:78px 5%;
  text-align:center
}

.section>h1,
.section>h2{
  font-size:34px;
  margin:0 0 38px
}

.section h1 span,
.section h2 span,
.about span{
  color:#ff5a16
}

/* Products */

.products-heading{
  max-width:1200px;
  margin:0 auto 35px;
  text-align:center
}

.products-heading h1{
  font-size:34px;
  margin:0
}

.products-heading h1 span{color:#ff5a16}

.products-more{
  display:flex;
  justify-content:center;
  margin-top:32px
}

.view-more{
  display:inline-block;
  background:#ff5a16;
  color:#fff;
  border-radius:28px;
  padding:13px 21px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  transition:.25s
}

.view-more:hover{
  transform:translateY(-2px);
  box-shadow:0 7px 18px #ff5a1635
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  width:100%;
  max-width:1200px;
  margin:auto
}

.card{
  border:1px solid #e6eaf2;
  border-radius:16px;
  padding:18px;
  background:#fff;
  box-shadow:0 7px 25px #001c550d;
  transition:.25s
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 35px #001c5520
}

.product-img{
  height:190px;
  display:grid;
  place-items:center;
  background:#f8fbff;
  border-radius:12px;
  overflow:hidden
}

.product-img img{
  width:auto;
  max-width:90%;
  max-height:180px;
  object-fit:contain
}

.card h2{
  font-size:18px;
  margin:20px 0 8px
}

.card p{
  font-size:13px;
  line-height:1.6;
  color:#59677f;
  min-height:62px
}

.card a{
  display:inline-block;
  border:1px solid #123b8b;
  color:#123b8b;
  border-radius:7px;
  padding:9px 15px;
  font-size:12px;
  font-weight:700
}

/* About */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
  text-align:left;
  background:#f5f9ff
}

.about h2{
  font-size:40px;
  margin:5px 0 20px
}

.about p{
  color:#59677f;
  line-height:1.7
}

.checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:24px 0;
  color:#18366e;
  font-size:13px
}

.about img{
  width:100%;
  border-radius:25px;
  border:7px solid #ff5a16;
  box-shadow:0 12px 30px #001c5520
}

.btn{
  display:inline-block;
  font-weight:700;
  font-size:13px
}

/* Reviews */

.reviews{background:#fff}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  width:100%;
  max-width:1050px;
  margin:auto
}

.review-grid blockquote{
  margin:0;
  padding:30px;
  border:1px solid #e6eaf2;
  border-radius:15px;
  box-shadow:0 6px 22px #001c550b;
  color:#ff5a16;
  font-weight:800
}

.review-grid p{
  color:#394967;
  font-weight:400;
  font-size:14px;
  line-height:1.6
}

.review-grid cite{
  color:#071f61;
  font-size:12px;
  font-style:normal
}

/* CTA */

.cta{
  padding:38px 7%;
  background:#06236b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.cta h2{
  margin:0;
  font-size:28px
}

.cta p{
  margin:8px 0 0;
  color:#dbe6ff
}

.light{background:#ff5a16}

/* Footer */

.footer{
  background:#031844;
  color:#d9e4ff;
  padding:45px 5% 15px
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.4fr;
  gap:40px;
  width:100%;
  max-width:1250px;
  margin:auto
}

.footer-logo{
  width:150px;
  height:80px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  margin-bottom:10px
}

.footer p,
.footer a{
  font-size:12px;
  line-height:1.8;
  color:#b7c6e7
}

.footer a{display:block}

.footer h3{
  font-size:13px;
  color:#fff;
  margin-top:5px
}

.copyright{
  border-top:1px solid #ffffff1a;
  margin-top:35px;
  padding-top:15px;
  text-align:center;
  font-size:11px;
  color:#8ea2cb
}

/* Social icons */

.social-links{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:15px
}

.social-links a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  transition:.25s
}

.social-links img{
  width:21px;
  height:21px;
  object-fit:contain
}

.social-links a:hover{
  transform:translateY(-3px)
}

/* Tablet */

@media(max-width:900px){

  .header{
    min-height:70px;
    height:70px;
    padding:7px 4%
  }

  .brand{
    gap:8px
  }

  .brand img{
    width:58px;
    height:55px
  }

  .brand-name{
    font-size:17px
  }

  .menu{
    display:block
  }

  .nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    padding:18px 6%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:7px;
    box-shadow:0 10px 25px #001c5520
  }

  .nav.open{display:flex}

  .nav>a{
    width:100%;
    padding:12px 0
  }

  .nav .quote{
    width:100%;
    text-align:center
  }

  .hero{
    height:auto;
    aspect-ratio: 1366 / 610;
  }

  .trust-strip{
    grid-template-columns:repeat(3,1fr);
    margin-top:0
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .about{
    grid-template-columns:1fr;
    gap:35px
  }

  .about img{
    order:-1
  }

  .review-grid{
    grid-template-columns:1fr
  }

  .footer-grid{
    grid-template-columns:1fr 1fr
  }

  .section{
    padding:60px 5%
  }

  .section>h1,
  .section>h2{
    font-size:28px
  }

  .about h2{
    font-size:34px
  }

  .prev,
  .next{
    width:36px;
    height:36px;
    font-size:27px
  }

  .cta{
    padding:32px 5%
  }
}

/* Mobile */

@media(max-width:600px){

  .header{
    height:64px;
    min-height:64px;
    padding:5px 4%
  }

  .brand{
    max-width:calc(100% - 45px);
    gap:7px
  }

  .brand img{
    width:48px;
    height:48px
  }

  .brand-name{
    font-size:14px;
    letter-spacing:-.2px;
    overflow:hidden;
    text-overflow:ellipsis
  }

  .menu{
    font-size:25px;
    padding:6px
  }

  .nav{
    top:64px;
    padding:15px 5%
  }

  .hero{
    width:100%;
    height:auto;
    aspect-ratio:1366/610;
    min-height:0
  }


  .slide{
    height:100%
  }

  .slide img{
    width:100%;
    height:100%;
    object-fit:fill;
    object-position:center
  }



  .hero .prev,
  .hero .next{
    display:none
  }

  .dots{
    bottom:7px;
    gap:6px
  }

  .dot{
    width:8px;
    height:8px
  }

  /* Trust */

  .trust-strip{
    width:94%;
    grid-template-columns:repeat(2,1fr);
    padding:8px;
    border-radius:12px;
    gap:0
  }

  .trust-strip div{
    padding:10px 5px;
    border-right:0;
    border-bottom:1px solid #d8deeb
  }

  .trust-strip div:nth-last-child(-n+2){
    border-bottom:0
  }

  /* Sections */

  .section{
    padding:48px 5%
  }

  .section>h1,
  .section>h2{
    font-size:25px;
    line-height:1.25;
    margin-bottom:28px
  }

  /* Products */

  .products-heading{
    margin-bottom:25px
  }

  .products-heading h1{
    font-size:25px;
    line-height:1.3
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:18px
  }

  .card{
    padding:14px;
    border-radius:14px
  }

  .product-img{
    height:210px
  }

  .product-img img{
    max-height:200px
  }

  .card h2{
    font-size:17px;
    margin:17px 0 7px
  }

  .card p{
    font-size:13px;
    min-height:0;
    margin-bottom:16px
  }

  .products-more{
    margin-top:25px
  }

  .view-more{
    padding:12px 18px;
    font-size:12px
  }

  /* About */

  .about{
    gap:25px;
    text-align:left
  }

  .about h2{
    font-size:30px;
    line-height:1.15
  }

  .about p{
    font-size:13px;
    line-height:1.7
  }

  .about img{
    border-width:5px;
    border-radius:18px;
    order:-1
  }

  .checks{
    grid-template-columns:1fr;
    gap:10px;
    margin:20px 0
  }

  .btn{
    padding:12px 18px!important;
    font-size:12px
  }

  /* Reviews */

  .review-grid{
    gap:16px
  }

  .review-grid blockquote{
    padding:22px 18px
  }

  .review-grid p{
    font-size:13px
  }

  /* CTA */

  .cta{
    padding:30px 6%;
    flex-direction:column;
    align-items:flex-start;
    gap:20px
  }

  .cta h2{
    font-size:23px;
    line-height:1.25
  }

  .cta p{
    font-size:13px;
    line-height:1.5
  }

  .cta .btn{
    align-self:flex-start
  }

  /* Footer */

  .footer{
    padding:40px 6% 15px
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px
  }

  .footer-logo{
    width:135px;
    height:70px
  }

  .footer p,
  .footer a{
    font-size:12px
  }

  .social-links{
    gap:10px;
    margin-top:12px
  }

  .social-links a{
    width:36px;
    height:36px
  }

  .social-links img{
    width:20px;
    height:20px
  }

  .copyright{
    margin-top:25px;
    line-height:1.5
  }
}

/* Small phones */

@media(max-width:380px){

  .brand img{
    width:44px;
    height:44px
  }

  .brand-name{
    font-size:12.5px
  }

  .hero{
    aspect-ratio:16/9
  }

  .trust-strip{
    font-size:11px
  }

  .products-heading h1{
    font-size:23px
  }

  .section>h1,
  .section>h2{
    font-size:23px
  }

  .about h2{
    font-size:27px
  }
}

/* Accessibility */

@media(prefers-reduced-motion:reduce){

  html{scroll-behavior:auto}

  .slides,
  .card,
  .view-more,
  .social-links a{
    transition:none
  }
}