
:root{
  --navy:#102b4e;
  --navy2:#183e6f;
  --red:#e63b3b;
  --red-dark:#c92828;
  --light:#f6f8fb;
  --soft:#eef4fb;
  --white:#ffffff;
  --text:#183047;
  --muted:#66778a;
  --line:#e5ebf1;
  --shadow:0 18px 45px rgba(24,48,71,.10);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:white;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:auto}

.topbar{
  background:var(--navy);
  color:#dfe9f5;
  font-size:13px;
  padding:8px 0;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.navbar{
  background:white;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
}
.nav{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:var(--navy);
}
.logo{
  width:54px;height:54px;border-radius:16px;
  display:grid;place-items:center;
  color:#fff;font-weight:900;
  background:linear-gradient(135deg,var(--navy),#275e9d);
  position:relative;
  overflow:hidden;
}
.logo:after{
  content:"";
  position:absolute;
  width:28px;height:28px;
  background:var(--red);
  border-radius:50%;
  right:-10px;top:-9px;
}
.brand small{
  display:block;
  color:#8794a4;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.navlinks{
  display:flex;
  gap:26px;
  align-items:center;
  font-weight:700;
  font-size:14px;
}
.navlinks a:hover,.navlinks a.active{color:var(--red)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:13px 20px;
  font-weight:800;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-red{
  background:var(--red);
  color:white;
  box-shadow:0 12px 25px rgba(230,59,59,.22);
}
.btn-red:hover{background:var(--red-dark)}
.btn-outline{
  color:var(--navy);
  border:1px solid #d7e0ea;
  background:#fff;
}
.menu{display:none;background:none;border:0;font-size:26px}

.hero{
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  overflow:hidden;
  position:relative;
  padding:76px 0 68px;
}
.hero:before{
  content:"";
  position:absolute;
  width:360px;height:360px;
  background:#edf5ff;
  border-radius:50%;
  left:-190px;top:120px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:50px;
  align-items:center;
  position:relative;
}
.eyebrow{
  color:var(--red);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}
h1{
  font-size:clamp(46px,6vw,76px);
  line-height:1.02;
  letter-spacing:-.045em;
  color:var(--navy);
  margin:14px 0 20px;
}
h2{
  color:var(--navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.hero p{
  font-size:18px;
  max-width:640px;
  color:var(--muted);
}
.hero-list{
  display:grid;
  gap:9px;
  margin:24px 0;
}
.hero-list div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#405366;
  font-weight:600;
}
.tick{
  width:23px;height:23px;border-radius:50%;
  background:#e9f8f1;
  color:#12a36c;
  display:grid;place-items:center;
  font-size:12px;font-weight:900;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-visual{
  min-height:475px;
  position:relative;
}
.red-blob{
  position:absolute;
  width:78%;
  height:80%;
  border-radius:49% 51% 48% 52% / 58% 40% 60% 42%;
  background:var(--red);
  right:0;top:18px;
  transform:rotate(-5deg);
}
.family-photo{
  position:absolute;
  inset:28px 8px 0 40px;
  overflow:hidden;
  border-radius:49% 51% 43% 57% / 44% 44% 56% 56%;
  box-shadow:var(--shadow);
  background:#eaf2fb;
}
.family-photo img{
  width:100%;height:100%;
  object-fit:cover;
}
.float-card{
  position:absolute;
  left:0;
  bottom:34px;
  background:white;
  border-radius:16px;
  padding:15px 18px;
  box-shadow:0 18px 45px rgba(19,46,76,.16);
  display:flex;
  gap:12px;
  align-items:center;
}
.float-icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  background:#eef4ff;
  font-size:20px;
}
.float-card strong{display:block;color:var(--navy)}
.float-card span{font-size:12px;color:var(--muted)}

.stats{
  background:var(--navy);
  color:white;
  padding:22px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  text-align:center;
}
.stats strong{display:block;font-size:24px}
.stats span{font-size:12px;color:#c7d4e1}

.section{padding:82px 0}
.section.alt{background:var(--light)}
.section-head{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}
.section-head p{color:var(--muted)}

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.product-card{
  background:white;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 26px rgba(25,49,75,.06);
  transition:.22s ease;
}
.product-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.product-image{
  height:165px;
  background:#eef3f8;
  overflow:hidden;
}
.product-image img{
  width:100%;height:100%;object-fit:cover;
}
.product-body{padding:20px}
.product-body h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}
.product-body p{
  font-size:13px;
  color:var(--muted);
  min-height:62px;
}
.product-link{
  color:var(--red);
  font-weight:800;
  font-size:13px;
}

.about{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:48px;
  align-items:center;
}
.about-image{
  min-height:500px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  background:#eaf0f5;
}
.about-image img{
  width:100%;height:100%;
  position:absolute;inset:0;
  object-fit:cover;
}
.about-badge{
  position:absolute;
  right:22px;bottom:22px;
  background:var(--red);
  color:white;
  padding:18px 20px;
  border-radius:16px;
  max-width:220px;
}
.about-badge strong{font-size:24px;display:block}
.about-content p{color:var(--muted)}
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}
.feature{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
}
.feature-icon{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  color:white;background:var(--red);
  margin-bottom:14px;
}
.feature strong{display:block;color:var(--navy);margin-bottom:5px}
.feature p{font-size:13px;margin:0}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.why{
  padding:26px;
  border:1px solid var(--line);
  border-radius:20px;
  background:white;
}
.why-no{
  font-size:13px;
  color:var(--red);
  font-weight:900;
  letter-spacing:.12em;
}
.why h3{color:var(--navy);font-size:21px;margin:12px 0 8px}
.why p{font-size:14px;color:var(--muted);margin:0}

.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.testimonial{
  background:white;
  border-radius:20px;
  padding:24px;
  border:1px solid var(--line);
  box-shadow:0 8px 26px rgba(25,49,75,.05);
}
.stars{color:#f2a100;letter-spacing:2px;margin-bottom:12px}
.testimonial p{color:var(--muted);font-size:14px}
.person{font-weight:800;color:var(--navy)}

.cta{
  border-radius:28px;
  background:linear-gradient(135deg,var(--navy),#1e4f86);
  color:white;
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  position:relative;
  overflow:hidden;
}
.cta:after{
  content:"";
  position:absolute;
  width:210px;height:210px;border-radius:50%;
  background:var(--red);
  right:-80px;top:-100px;
}
.cta h2{color:white;margin:0 0 10px}
.cta p{color:#d6e2ee;max-width:680px}
.cta > *{position:relative;z-index:2}

.page-hero{
  background:#f7faff;
  padding:62px 0;
  text-align:center;
}
.page-hero h1{font-size:52px}
.page-hero p{color:var(--muted);max-width:700px;margin:auto}

.product-detail{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
  padding:28px;
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  margin-bottom:24px;
}
.product-detail img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:18px;
}
.checks{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:18px 0;
}
.check{
  padding:11px 12px;
  border-radius:10px;
  background:#f4f7fa;
  font-size:13px;
}
.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
}
.contact-panel{
  background:var(--navy);
  color:white;
  border-radius:24px;
  padding:30px;
}
.contact-panel p{color:#cbd8e6}
.contact-item{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.form{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
label{
  font-size:12px;
  font-weight:800;
  color:#4c5d70;
}
input,select,textarea{
  width:100%;
  margin-top:6px;
  padding:13px 14px;
  border-radius:11px;
  border:1px solid #d8e1ea;
  outline:none;
  background:#fbfcfd;
}
input:focus,select:focus,textarea:focus{
  border-color:#98b6d5;
  box-shadow:0 0 0 3px rgba(24,62,111,.08);
}
textarea{min-height:130px;resize:vertical}
.note{font-size:11px;color:#8a98a7;margin-top:12px}

footer{
  background:#0d2746;
  color:white;
  padding:55px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .9fr;
  gap:34px;
}
footer p,footer a{color:#b9c8d8;font-size:13px}
footer h4{margin-top:0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:28px;padding-top:18px;
  font-size:11px;color:#8193a7;
}
@media(max-width:940px){
  .hero-grid,.about,.contact-grid,.product-detail{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2,1fr)}
  .why-grid,.testimonials,.features{grid-template-columns:repeat(2,1fr)}
  .navlinks{
    display:none;
    position:absolute;top:82px;left:0;right:0;
    background:white;padding:18px 4%;
    flex-direction:column;align-items:flex-start;
    border-bottom:1px solid var(--line);
  }
  .navlinks.open{display:flex}
  .menu{display:block}
  .nav .btn-red{display:none}
}
@media(max-width:620px){
  .products,.stats-grid,.why-grid,.testimonials,.features,.form-grid,.checks{grid-template-columns:1fr}
  .hero-visual{min-height:390px}
  .cta{flex-direction:column;align-items:flex-start}
}
