
:root{
  --navy:#0b1320;
  --slate:#324255;
  --muted:#6f7d8d;
  --line:#e5eaf0;
  --bg:#f6f8fb;
  --white:#ffffff;
  --teal:#0f766e;
  --teal-dark:#0a5f58;
  --teal-soft:#d8f3ef;
  --gold:#f59e0b;
  --shadow:0 20px 60px rgba(11,19,32,.12);
  --radius-lg:28px;
  --radius-md:22px;
  --radius-sm:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--slate);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{width:min(1180px,92%);margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(229,234,240,.9);
}
.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  display:block;
  width:260px;
  max-width:100%;
  height:auto;
}


.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
  white-space:nowrap;
  margin-left:auto;
}
.main-nav a{
  color:var(--slate);
  font-size:14px;
  font-weight:800;
}
.main-nav a:hover{color:var(--teal)}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border-radius:999px;
  background:var(--teal);
  color:var(--white);
  font-weight:800;
}
.nav-cta:hover{background:var(--teal-dark)}

.hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  color:var(--white);
}
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,16,27,.88) 0%, rgba(8,16,27,.76) 38%, rgba(8,16,27,.32) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:760px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:44px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow.dark{color:var(--teal)}

h1,h2,h3,p{margin-top:0}
h1,h2,h3{
  color:inherit;
  line-height:1.08;
  letter-spacing:-.04em;
}
h1{
  max-width:800px;
  font-size:clamp(42px,6vw,76px);
  margin-bottom:20px;
}
h2{
  color:var(--navy);
  font-size:clamp(30px,4vw,50px);
  margin-bottom:16px;
}
h3{
  color:var(--navy);
  font-size:22px;
  margin-bottom:10px;
}
.hero .hero-card h2,
.hero h1{color:var(--white)}
.hero-text{
  max-width:700px;
  font-size:20px;
  color:rgba(255,255,255,.82);
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:32px 0 28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--gold);
  color:#111827;
  box-shadow:0 18px 38px rgba(245,158,11,.28);
}
.btn-secondary{
  background:rgba(255,255,255,.1);
  color:var(--white);
  border:1px solid rgba(255,255,255,.2);
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-tags span{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:800;
}

.hero-card{
  padding:30px;
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 28px 80px rgba(0,0,0,.24);
  backdrop-filter:blur(16px);
}
.hero-card-top{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.92);
  font-size:13px;
  font-weight:800;
}
.hero-card p,
.hero-card li{
  color:rgba(255,255,255,.78);
}
.hero-card ul{
  margin:20px 0 0;
  padding-left:18px;
}

.stats-bar{
  background:var(--navy);
  color:var(--white);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding:26px 0;
}
.stat{
  padding:12px 0;
}
.stat strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}
.stat span{
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.section{padding:96px 0}

.about-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:44px;
  align-items:start;
}
.about-grid p{
  color:var(--muted);
  font-size:18px;
}

.products-section{
  background:var(--bg);
}
.section-heading{
  max-width:760px;
  margin:0 auto 38px 0;
}
.section-heading.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-heading p{
  color:var(--muted);
  font-size:18px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.product-card{
  position:relative;
  overflow:hidden;
  min-height:240px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--white);
  box-shadow:0 18px 50px rgba(11,19,32,.06);
}
.product-card::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-60px;
  bottom:-70px;
  border-radius:50%;
  background:rgba(15,118,110,.08);
}
.product-card.featured{
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));
  border-color:rgba(15,118,110,.2);
}
.product-card.featured h3,
.product-card.featured p{color:var(--white)}
.product-card p{position:relative;color:var(--muted)}
.icon-box{
  position:relative;
  z-index:1;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:18px;
  background:var(--teal-soft);
  color:var(--teal);
  font-size:24px;
  font-weight:900;
}
.product-card.featured .icon-box{
  background:var(--gold);
  color:#111827;
}

.image-feature-section{
  background:var(--white);
}
.image-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}
.image-stack{
  position:relative;
  min-height:560px;
}
.image-large{
  width:85%;
  height:460px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.image-small{
  position:absolute;
  right:0;
  bottom:0;
  width:48%;
  height:280px;
  object-fit:cover;
  border-radius:var(--radius-md);
  border:8px solid var(--white);
  box-shadow:var(--shadow);
}
.feature-copy p{
  color:var(--muted);
  font-size:18px;
}
.check-list{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.check-list div{
  padding:14px 18px;
  border-radius:16px;
  background:var(--bg);
  color:var(--slate);
  font-weight:700;
}

.why-section{
  background:var(--bg);
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:24px;
}
.why-card{
  padding:28px;
  border-radius:var(--radius-lg);
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:0 18px 45px rgba(11,19,32,.06);
}
.why-card p{
  color:var(--muted);
}

.cta-section{
  padding:36px 0 0;
  background:var(--bg);
}
.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:34px 36px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));
  color:var(--white);
  box-shadow:var(--shadow);
}
.cta-box h2{
  color:var(--white);
  max-width:760px;
  margin-bottom:0;
}
.cta-box .eyebrow{color:#b9fff0}

.contact-section{
  background:var(--bg);
}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:start;
}
.contact-grid p{
  color:var(--muted);
  font-size:18px;
}
.contact-card{
  padding:30px;
  border-radius:var(--radius-lg);
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-item{
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.contact-item:first-child{padding-top:0}
.contact-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}
.contact-item span{
  display:block;
  color:var(--muted);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.contact-item a{
  color:var(--navy);
  font-size:20px;
  font-weight:900;
}
.contact-item a:hover{color:var(--teal)}
.contact-item p{
  margin:0;
  color:var(--slate);
  font-size:18px;
  font-weight:800;
}

.site-footer{
  padding:32px 0;
  background:#09111d;
  color:rgba(255,255,255,.75);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-grid strong{color:var(--white)}
.footer-grid p{margin:4px 0 0}


@media (max-width: 1120px){
  .brand-logo{
    width:220px;
  }
  .main-nav{
    gap:18px;
  }
  .nav-cta{
    padding:0 16px;
  }
}

@media (max-width: 980px){
  .nav{
    flex-wrap:wrap;
    justify-content:center;
    padding:16px 0;
  }
  .hero-content,
  .about-grid,
  .product-grid,
  .image-feature-grid,
  .why-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .stats-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
  }
  .hero-content{
    min-height:auto;
    padding:100px 0 80px;
  }
  .image-stack{
    min-height:auto;
  }
  .image-large{
    width:100%;
    height:360px;
  }
  .image-small{
    position:relative;
    width:70%;
    margin:-70px 0 0 auto;
    height:220px;
  }
  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 620px){
  .brand-logo{
  display:block;
  width:260px;
  max-width:100%;
  height:auto;
}

  .main-nav{
    width:100%;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
  }
    h1{
    font-size:40px;
  }
  .hero-actions{
    flex-direction:column;
  }
  .btn,
  .nav-cta{
    width:100%;
  }
  .section{
    padding:72px 0;
  }
  .cta-box{
    padding:28px 24px;
  }
}
