
:root{
  --navy:#061426;
  --navy2:#082a4d;
  --blue:#0d5f9f;
  --orange:#ff7a1a;
  --light:#f5f8fb;
  --ink:#0c1726;
  --muted:#5e6a78;
  --border:#dbe4ee;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:white;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.topbar{
  background:white;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 4px 18px rgba(0,0,0,.04);
}
.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo-wrap{display:flex;align-items:center;gap:14px}
.logo-wrap img{width:220px;height:auto}
.navlinks{display:flex;gap:26px;align-items:center;font-weight:800;font-size:14px;color:#11263d}
.navlinks a:hover{color:var(--orange)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  padding:14px 22px;
  font-weight:900;
  border:0;
  cursor:pointer;
  letter-spacing:.01em;
  transition:.2s ease;
}
.btn-orange{background:var(--orange);color:white;box-shadow:0 12px 26px rgba(255,122,26,.28)}
.btn-orange:hover{background:#e8680b;transform:translateY(-1px)}
.btn-outline{border:2px solid rgba(255,255,255,.38);color:white;background:rgba(255,255,255,.05)}
.btn-outline:hover{background:rgba(255,255,255,.13)}
.btn-blue{background:var(--blue);color:white}
.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(3,14,30,.98) 0%,rgba(5,24,48,.94) 46%,rgba(7,46,84,.82) 100%),
    url("assets/water-bg.png") center/cover no-repeat;
  color:white;
  padding:86px 0 74px;
}
.landing .hero{background:
    linear-gradient(90deg,rgba(3,14,30,.98) 0%,rgba(5,24,48,.94) 46%,rgba(7,46,84,.82) 100%),
    url("../assets/water-bg.png") center/cover no-repeat;}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:54px;align-items:center}
.eyebrow{
  color:#79b7ff;
  font-size:13px;
  letter-spacing:.34em;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:20px;
}
h1{
  font-size:clamp(46px,6vw,78px);
  line-height:.95;
  letter-spacing:-.05em;
  font-weight:950;
  margin-bottom:24px;
}
.orange{color:var(--orange)}
.hero p.lead{
  font-size:21px;
  color:#d8e3ef;
  max-width:650px;
  margin-bottom:30px;
}
.actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:10px}
.hero-product{
  position:relative;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:30px;
  padding:34px;
  box-shadow:0 24px 55px rgba(0,0,0,.28);
}
.hero-product img{max-height:430px;width:100%;object-fit:contain;filter:none}
.strip{background:white;border-bottom:1px solid var(--border)}
.feature-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.feature{
  padding:30px 22px;
  border-left:1px solid var(--border);
  min-height:150px;
  text-align:center;
}
.feature:first-child{border-left:0}
.icon{
  width:50px;height:50px;border-radius:50%;
  background:#e7f1ff;color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;font-weight:950;font-size:24px;
}
.feature h3{font-size:15px;line-height:1.15;margin-bottom:8px;text-transform:uppercase;color:#082a4d}
.feature p{font-size:14px;color:var(--muted)}
.section{padding:86px 0}
.section-light{background:var(--light)}
.section-dark{background:var(--navy);color:white}
.section-title{text-align:center;margin-bottom:48px}
.section-title .eyebrow{margin-bottom:12px;color:var(--orange)}
h2{font-size:clamp(34px,4vw,54px);line-height:1.04;letter-spacing:-.04em;margin-bottom:18px}
.text-lg{font-size:20px;color:var(--muted);max-width:760px}
.section-dark .text-lg{color:#c8d4e2}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:center}
.panel{
  background:white;
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 46px rgba(13,32,54,.08);
}
.panel img{border-radius:18px}
.diagram{padding:20px;background:white;border-radius:22px;border:1px solid var(--border)}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(13,32,54,.08);
}
.card-body{padding:26px}
.card h3{font-size:22px;line-height:1.15;margin-bottom:10px;color:#082a4d}
.card p{color:var(--muted)}
.card img{height:190px;width:100%;object-fit:cover}
.case-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.case{
  background:white;
  color:var(--ink);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
}
.case img{height:130px;width:100%;object-fit:cover}
.case div{padding:16px}
.case h3{font-size:15px;line-height:1.2;margin-bottom:8px;color:#082a4d}
.case p{font-size:13px;color:var(--muted)}
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.step{
  background:white;
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px;
}
.step b{display:block;color:var(--orange);font-size:14px;margin-bottom:10px}
.cta{
  background:linear-gradient(135deg,#0b3767,#061426);
  color:white;
  text-align:center;
  padding:82px 0;
}
.cta p{color:#d7e2ee;font-size:21px;margin:0 auto 28px;max-width:760px}
.footer{background:#020817;color:#bac7d7;padding:34px 0}
.footer-inner{display:flex;justify-content:space-between;gap:20px;align-items:center}
.footer img{width:150px;background:white;border-radius:10px;padding:6px}
.price-note{
  margin-top:18px;
  color:#607083;
  font-size:14px;
}
.video-box{
  aspect-ratio:16/9;
  background:#071931;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
}
.video-box span{font-size:60px;width:108px;height:108px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--orange)}
@media(max-width:980px){
  .nav{flex-wrap:wrap}
  .navlinks{order:3;width:100%;justify-content:center;gap:14px;flex-wrap:wrap}
  .hero-grid,.two-col{grid-template-columns:1fr}
  .feature-strip{grid-template-columns:repeat(2,1fr)}
  .grid3,.process{grid-template-columns:1fr}
  .case-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
  .container{width:min(100% - 26px,1180px)}
  .logo-wrap img{width:175px}
  .nav .btn{width:100%}
  .hero{padding:58px 0}
  .feature-strip,.case-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;text-align:center}
}


.case-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr)) !important;
  gap:24px !important;
  align-items:stretch !important;
}

.case{
  display:flex !important;
  flex-direction:column !important;
  height:auto !important;
  min-height:100% !important;
  overflow:visible !important;
}

.case img{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  background:#ffffff !important;
  padding:10px !important;
  border-bottom:1px solid rgba(0,0,0,.08) !important;
}

.case div{
  padding:20px !important;
}

.case h3,
.case strong{
  display:block !important;
  font-size:16px !important;
  line-height:1.25 !important;
  margin-bottom:8px !important;
  color:#082a4d !important;
  white-space:normal !important;
}

.case p{
  font-size:14px !important;
  line-height:1.45 !important;
  color:#5e6a78 !important;
  margin:0 !important;
  overflow:visible !important;
  white-space:normal !important;
}

@media(max-width:760px){
  .case-grid{
    grid-template-columns:1fr !important;
  }
}


/* Rebuilt case studies section */
.case-study-section{
  background:#061426 !important;
}
.clean-case-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:26px !important;
  align-items:stretch !important;
}
.clean-case{
  background:#ffffff !important;
  color:#0c1726 !important;
  border-radius:24px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow:0 18px 46px rgba(0,0,0,.16) !important;
  display:flex !important;
  flex-direction:column !important;
  min-height:100% !important;
}
.clean-case .case-image-wrap{
  width:100% !important;
  height:190px !important;
  background:#eef3f8 !important;
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.clean-case .case-image-wrap img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
}
.clean-case .case-content{
  padding:24px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  flex:1 !important;
}
.clean-case h3{
  font-size:21px !important;
  line-height:1.18 !important;
  color:#082a4d !important;
  margin:0 0 8px !important;
  white-space:normal !important;
}
.clean-case p{
  font-size:15px !important;
  line-height:1.45 !important;
  color:#526071 !important;
  margin:0 !important;
  white-space:normal !important;
  overflow:visible !important;
}
.clean-case strong{
  color:#0c1726 !important;
}
@media(max-width:1000px){
  .clean-case-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media(max-width:680px){
  .clean-case-grid{
    grid-template-columns:1fr !important;
  }
  .clean-case .case-image-wrap{
    height:210px !important;
  }
}


/* Exact screenshot testimonial cards */
.testimonial-image-section{
  background:#061426 !important;
}

.testimonial-image-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:24px !important;
  align-items:start !important;
}

.testimonial-image-card{
  background:#1f719f !important;
  border-radius:18px !important;
  overflow:hidden !important;
  box-shadow:0 18px 48px rgba(0,0,0,.24) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  background:#1f719f !important;
}

.testimonial-correction{
  background:#ffffff !important;
  color:#0b4380 !important;
  text-align:center !important;
  font-weight:900 !important;
  font-size:18px !important;
  line-height:1.25 !important;
  padding:14px 12px !important;
}

@media(max-width:1100px){
  .testimonial-image-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:650px){
  .testimonial-image-grid{
    grid-template-columns:1fr !important;
  }
}


/* Force testimonial cards into one horizontal row */
.testimonial-image-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:16px !important;
  align-items:start !important;
}

.testimonial-image-card{
  width:100% !important;
  max-width:100% !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  object-fit:contain !important;
  display:block !important;
}

.testimonial-correction{
  font-size:15px !important;
  padding:10px !important;
}

@media(max-width:1200px){
  .testimonial-image-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:700px){
  .testimonial-image-grid{
    grid-template-columns:1fr !important;
  }
}


/* HARD FORCE testimonials into a single horizontal row */
.testimonial-image-grid{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  justify-content:space-between !important;
  align-items:flex-start !important;
  gap:14px !important;
  width:100% !important;
}

.testimonial-image-card{
  flex:1 1 0 !important;
  width:24% !important;
  min-width:0 !important;
  overflow:hidden !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  display:block !important;
}

@media(max-width:1000px){
  .testimonial-image-grid{
    flex-wrap:wrap !important;
  }

  .testimonial-image-card{
    width:48% !important;
    flex:0 0 48% !important;
  }
}

@media(max-width:700px){
  .testimonial-image-card{
    width:100% !important;
    flex:0 0 100% !important;
  }
}


/* Fit all 5 testimonial cards in one desktop row */
.testimonial-image-grid{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  justify-content:space-between !important;
  align-items:flex-start !important;
  gap:12px !important;
}

.testimonial-image-card{
  flex:0 0 19% !important;
  width:19% !important;
  min-width:0 !important;
  overflow:hidden !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  display:block !important;
}

@media(max-width:1200px){
  .testimonial-image-grid{
    flex-wrap:wrap !important;
  }

  .testimonial-image-card{
    flex:0 0 48% !important;
    width:48% !important;
  }
}

@media(max-width:700px){
  .testimonial-image-card{
    flex:0 0 100% !important;
    width:100% !important;
  }
}


/* FORCE 5 testimonials into one row by shrinking them */
.testimonial-image-grid{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  justify-content:center !important;
  align-items:flex-start !important;
  gap:8px !important;
  width:100% !important;
  overflow:hidden !important;
}

.testimonial-image-card{
  flex:0 0 18% !important;
  width:18% !important;
  max-width:18% !important;
  min-width:18% !important;
  overflow:hidden !important;
  border-radius:10px !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
}

.testimonial-correction{
  font-size:11px !important;
  padding:6px 4px !important;
  line-height:1.1 !important;
}

@media(max-width:1200px){
  .testimonial-image-grid{
    flex-wrap:wrap !important;
  }

  .testimonial-image-card{
    flex:0 0 30% !important;
    width:30% !important;
    max-width:30% !important;
  }
}

@media(max-width:700px){
  .testimonial-image-card{
    flex:0 0 100% !important;
    width:100% !important;
    max-width:100% !important;
  }
}


/* ===== FINAL TESTIMONIAL LAYOUT OVERRIDE ===== */
body .testimonial-image-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
    gap:6px !important;
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
}

body .testimonial-image-card{
    flex:0 0 19% !important;
    width:19% !important;
    max-width:19% !important;
    min-width:19% !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    border-radius:8px !important;
}

body .testimonial-image-card img{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    display:block !important;
    object-fit:contain !important;
}

body .testimonial-correction{
    font-size:10px !important;
    padding:4px !important;
    line-height:1.05 !important;
}

/* ONLY stack on phones */
@media screen and (max-width: 700px){
    body .testimonial-image-grid{
        flex-wrap:wrap !important;
    }

    body .testimonial-image-card{
        flex:0 0 100% !important;
        width:100% !important;
        max-width:100% !important;
    }
}


/* ===== FINAL CASE STUDY TESTIMONIAL SECTION ===== */
.testimonial-image-section{
  background:#061426 !important;
}

.testimonial-container{
  width:min(1500px, calc(100% - 32px)) !important;
  max-width:1500px !important;
}

.testimonial-image-grid{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  justify-content:center !important;
  align-items:flex-start !important;
  gap:10px !important;
  width:100% !important;
  max-width:100% !important;
  overflow:visible !important;
}

.testimonial-image-card{
  flex:0 1 calc((100% - 40px) / 5) !important;
  width:calc((100% - 40px) / 5) !important;
  max-width:calc((100% - 40px) / 5) !important;
  min-width:0 !important;
  margin:0 !important;
  padding:0 !important;
  border-radius:10px !important;
  overflow:hidden !important;
  background:#1f719f !important;
  box-shadow:0 10px 28px rgba(0,0,0,.22) !important;
}

.testimonial-image-card img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:#1f719f !important;
}

/* Keep all five in a row on tablets/desktops; only stack on very small phones */
@media screen and (max-width: 620px){
  .testimonial-image-grid{
    flex-wrap:wrap !important;
  }
  .testimonial-image-card{
    flex:0 0 100% !important;
    width:100% !important;
    max-width:100% !important;
  }
}


/* ===== GUARANTEED SINGLE-IMAGE TESTIMONIAL ROW ===== */
.testimonial-combined-wrap{
  width:100% !important;
  max-width:100% !important;
  overflow:hidden !important;
  background:#061426 !important;
  border-radius:14px !important;
}

.testimonial-combined-wrap img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  margin:0 auto !important;
  padding:0 !important;
  border:0 !important;
}

.testimonial-image-grid,
.testimonial-image-card{
  display:none !important;
}
