
:root{
  --navy:#061b46;
  --navy-2:#092a65;
  --blue:#0b59ce;
  --blue-2:#0b70df;
  --sky:#eef7ff;
  --soft:#f6fbff;
  --line:#dce7f6;
  --text:#13233f;
  --muted:#50617b;
  --white:#fff;
  --shadow:0 18px 42px rgba(15, 40, 85, .10);
  --shadow-soft:0 10px 30px rgba(15, 40, 85, .075);
  --radius:24px;
  --max:1280px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}
.container{
  width:min(var(--max), calc(100% - 56px));
  margin:0 auto;
}
.topbar{
  background:#083f8d;
  color:#fff;
}
.topbar-inner{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.toplink{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
}
.toplink svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.site-header{
  background:#fff;
  border-bottom:1px solid #e4edf8;
  position:sticky;
  top:0;
  z-index:30;
}
.navbar{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.logo{
  display:flex;
  align-items:center;
  min-width:260px;
}
.logo img{
  height:56px;
  width:auto;
  object-fit:contain;
  object-position:left center;
}
.logo-text{
  font-size:38px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:800;
  color:#08479f;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  height:44px;
  padding:0 15px;
  color:#122140;
  font-size:16px;
  font-weight:500;
  border-radius:10px;
}
.nav-menu a.active{
  color:#0b59ce;
  background:#eef5ff;
  font-weight:700;
}
.nav-menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-16px;
  width:100%;
  height:4px;
  margin:auto;
  background:#0b59ce;
  border-radius:999px;
}
.mobile-toggle{
  display:none;
  border:0;
  background:#0b59ce;
  color:#fff;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
}

.hero-wrap{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#f8fcff 0%,#f3f9ff 100%);
  border-bottom:1px solid #eef4fb;
}
.hero-wrap::before{
  content:"";
  position:absolute;
  left:-92px;
  top:235px;
  width:390px;
  height:390px;
  background:url("../img/water-splash-decor.png") left bottom/contain no-repeat;
  opacity:.33;
  pointer-events:none;
}
.hero{
  position:relative;
  z-index:1;
  padding:38px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.hero-title{
  margin:0 0 20px;
  font-size:clamp(38px,4vw,60px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:var(--navy);
  font-weight:800;
}
.hero-subtitle{
  margin:0 0 26px;
  color:#0b59ce;
  font-size:clamp(20px,2vw,28px);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.035em;
}
.hero-copy{
  margin:0 0 34px;
  max-width:610px;
  color:#2a3955;
  font-size:18.5px;
  line-height:1.62;
}
.actions{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}
.btn{
  min-width:226px;
  height:66px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  border-radius:13px;
  border:2px solid var(--blue);
  cursor:pointer;
  font-weight:700;
  font-size:19px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  background:#0b59ce;
  box-shadow:0 10px 24px rgba(11,89,206,.22);
}
.btn-outline{
  color:#0b59ce;
  background:#fff;
}
.hero-photo{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:470px;
  background:#dbe9f8;
}
.hero-photo img{
  width:100%;
  height:100%;
  min-height:470px;
  object-fit:cover;
}

.feature-overlap{
  position:relative;
  z-index:2;
  margin-top:30px;
  padding-bottom:54px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.feature-card{
  min-height:265px;
  display:grid;
  grid-template-columns:112px 1fr;
  gap:16px;
  align-items:start;
  padding:40px 34px 32px;
  background:#fff;
  border:1px solid #e4edf7;
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  position:relative;
}
.feature-card::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:26px;
  width:70px;
  height:4px;
  transform:translateX(-50%);
  background:var(--blue);
  border-radius:999px;
}
.feature-icon{
  width:96px;
  height:96px;
  border-radius:50%;
  overflow:hidden;
  background:#eff6ff;
}
.feature-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.feature-card h3{
  margin:7px 0 15px;
  color:var(--navy);
  font-size:23px;
  line-height:1.18;
  letter-spacing:-.025em;
}
.feature-card p{
  margin:0;
  color:#435371;
  font-size:16px;
  line-height:1.65;
}

.section{
  padding:78px 0;
}
.section-head{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}
.section-title{
  margin:0 0 12px;
  color:var(--navy);
  font-size:38px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-.035em;
}
.section-title.left{
  position:relative;
  text-align:left;
  display:inline-block;
  padding-bottom:10px;
}
.section-title.left::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:48px;
  height:4px;
  border-radius:999px;
  background:var(--blue);
}
.section-lead{
  margin:0;
  color:#50617b;
  font-size:18px;
}
.offer{
  background:#fff;
  padding-top:62px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-grid .wide-center{
  grid-column:auto;
}
.service-card{
  min-height:276px;
  padding:28px 24px 24px;
  background:#fff;
  border:1px solid #dfe8f3;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(15, 40, 85, .045);
  text-align:center;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(15, 40, 85, .09);
}
.service-card img{
  width:78px;
  height:78px;
  object-fit:cover;
  margin:0 auto 22px;
  border-radius:12px;
}
.service-card h3{
  margin:0 0 11px;
  color:var(--navy);
  font-size:20px;
  line-height:1.22;
}
.service-card p{
  margin:0 0 16px;
  color:#4a5a75;
  font-size:14.8px;
  line-height:1.6;
}
.more{
  color:var(--blue);
  font-size:14.5px;
  font-weight:800;
}

.about{
  background:#eef7ff;
}
.about-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:54px;
  align-items:center;
}
.about-copy p{
  margin:18px 0;
  color:#253755;
  font-size:17.5px;
  line-height:1.68;
}
.about-photo{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  min-height:330px;
}
.about-photo img{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
}
.chips{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.chip{
  display:flex;
  align-items:center;
  gap:12px;
  padding:17px 14px;
  background:#fff;
  border:1px solid #dce8f5;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(15, 40, 85, .055);
  color:var(--navy);
  font-weight:700;
  font-size:14px;
  line-height:1.25;
}
.chip svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:#0b59ce;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:0 0 auto;
}

.benefits{
  padding:46px 0;
  background:#fff;
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid #e7eff8;
  border-bottom:1px solid #e7eff8;
}
.benefit{
  padding:28px 26px;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  border-right:1px solid #e7eff8;
}
.benefit:last-child{border-right:0}
.benefit svg{
  width:52px;
  height:52px;
  fill:none;
  stroke:#0b59ce;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.benefit h3{
  margin:0 0 6px;
  color:var(--navy);
  font-size:18px;
}
.benefit p{
  margin:0;
  color:#52627c;
  font-size:14.4px;
  line-height:1.45;
}

.cta{
  padding:38px 0 74px;
  background:#fff;
}
.cta-box{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(100deg,#06429f,#0a62d5);
  color:#fff;
  padding:48px 56px;
  display:grid;
  grid-template-columns:1fr .78fr;
  gap:28px;
  align-items:center;
  box-shadow:0 18px 38px rgba(11,89,206,.18);
}
.cta-box::after{
  content:"";
  position:absolute;
  inset:0 0 0 auto;
  width:45%;
  background:url("../img/cta-water-ripple-bg.png") center/cover no-repeat;
  opacity:.33;
}
.cta-box > *{
  position:relative;
  z-index:1;
}
.cta h2{
  margin:0 0 12px;
  font-size:35px;
  line-height:1.15;
  letter-spacing:-.035em;
}
.cta p{
  margin:0;
  color:#e5f2ff;
}
.cta-actions{
  display:grid;
  gap:14px;
}
.cta-actions .btn{
  min-width:0;
  width:100%;
  height:58px;
  font-size:17px;
}
.cta-actions .btn-outline{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.55);
}
.cta-actions .btn-primary{
  background:#fff;
  color:#0b59ce;
  border-color:#fff;
}

.contact{
  background:#fff;
  padding:0 0 72px;
}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.6fr;
  gap:36px;
}
.contact-card,.form-card{
  background:#fff;
  border:1px solid #dfe8f3;
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}
.contact-card{
  padding:32px 30px;
}
.person{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}
.person-icon,.contact-row-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eef6ff;
  color:#0b59ce;
}
.person-icon svg,.contact-row-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.person strong,.contact-row strong{
  display:block;
  color:var(--navy);
}
.person span,.contact-row span{
  color:#51617b;
  font-size:14px;
}
.contact-row{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:20px;
}
.form-card{
  padding:34px;
}
.form{
  display:grid;
  gap:18px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form input,.form textarea{
  width:100%;
  border:1px solid #d5e0ed;
  border-radius:8px;
  padding:15px 17px;
  color:var(--text);
  outline:none;
  background:#fff;
}
.form textarea{
  min-height:150px;
  resize:vertical;
}
.form input:focus,.form textarea:focus{
  border-color:#0b59ce;
  box-shadow:0 0 0 4px rgba(11,89,206,.09);
}
.form .btn{
  width:220px;
  height:54px;
  min-width:0;
  font-size:16px;
}

.footer{
  background:#06265a;
  color:#dceaff;
  padding:50px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .7fr 1.1fr 1fr;
  gap:38px;
  padding-bottom:34px;
}
.footer h2,.footer h3{
  color:#fff;
  margin:0 0 16px;
}
.footer h2{
  font-size:34px;
  letter-spacing:-.04em;
}
.footer p,.footer li,.footer a{
  color:#dceaff;
  font-size:15px;
}
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer li{margin:6px 0}
.footer-brand p{
  max-width:250px;
}
.footer-contact li{
  display:flex;
  gap:10px;
  align-items:center;
}
.footer-contact svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:#dceaff;
  font-size:14px;
}

@media (max-width:1100px){
  .logo-text{font-size:42px}
  .nav-menu{gap:8px}
  .nav-menu a{font-size:18px;min-width:auto;padding:0 17px}
  .hero-grid,.about-grid,.contact-grid,.cta-box{grid-template-columns:1fr}
  .hero-photo{min-height:auto}
  .hero-photo img{min-height:360px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .benefit:nth-child(2){border-right:0}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .container{width:min(var(--max), calc(100% - 32px))}
  .topbar-inner{align-items:flex-start;flex-direction:column;padding:12px 0}
  .toplink{font-size:15px;white-space:normal}
  .navbar{min-height:auto;padding:18px 0;align-items:flex-start}
  .logo-text{font-size:34px}
  .mobile-toggle{display:inline-flex;margin-left:auto}
  .nav-menu{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    padding:10px 24px 20px;
    background:#fff;
    border-bottom:1px solid #e4edf8;
  }
  .nav-menu.open{display:flex}
  .nav-menu a{height:48px}
  .nav-item{display:flex;flex-direction:column;align-items:stretch}
  .nav-menu a.active::after{display:none}
  .hero{padding-top:40px}
  .hero-title{font-size:46px}
  .hero-subtitle{font-size:28px}
  .btn{width:100%;min-width:0}
  .feature-grid,.service-grid,.chips,.benefit-grid,.footer-grid{grid-template-columns:1fr}
  .feature-card{grid-template-columns:1fr;text-align:left}
  .feature-card::after{left:34px;transform:none}
  .benefit{border-right:0;border-bottom:1px solid #e7eff8}
  .benefit:last-child{border-bottom:0}
  .form-row{grid-template-columns:1fr}
  .form .btn{width:100%}
  .cta-box{padding:34px 24px}
  .footer-bottom{flex-direction:column}
}

.nav-item{position:relative}.dropdown{display:none;position:absolute;top:100%;left:0;width:310px;background:#fff;border:1px solid #dce7f6;border-radius:18px;box-shadow:0 18px 42px rgba(15,40,85,.12);padding:12px;z-index:50}.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{display:block}.dropdown a{display:block;padding:11px 13px;border-radius:12px;color:#13233f;font-size:15px;font-weight:650}.dropdown a:hover,.dropdown a.current{background:#eef5ff;color:#0b59ce}.breadcrumb-wrap{background:#f7fbff;border-bottom:1px solid #e4edf8}.breadcrumb{min-height:54px;display:flex;align-items:center;gap:10px;color:#5b6d88;font-size:15px}.breadcrumb a{color:#0b59ce;font-weight:700}.subpage-hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#f8fcff 0%,#f1f8ff 100%);padding:40px 0}.subpage-grid{display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:center}.subpage-title{margin:0 0 18px;font-size:clamp(34px,3.6vw,54px);line-height:1.02;letter-spacing:-.055em;color:#061b46;font-weight:850}.subpage-subtitle{margin:0 0 24px;color:#0b59ce;font-size:clamp(18px,1.8vw,25px);line-height:1.13;font-weight:800}.subpage-copy{margin:0 0 30px;max-width:650px;color:#2a3955;font-size:18px;line-height:1.65}.badges{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}.badge{display:inline-flex;align-items:center;gap:9px;padding:10px 14px;background:#fff;border:1px solid #dbe7f5;border-radius:999px;box-shadow:0 8px 22px rgba(15,40,85,.055);font-size:14px;font-weight:750;color:#173057}.badge:before{content:"";width:9px;height:9px;border-radius:50%;background:#0b59ce}.subpage-image{border-radius:24px;overflow:hidden;box-shadow:0 18px 42px rgba(15,40,85,.10);background:#fff;min-height:420px;display:grid;place-items:center}.subpage-image img{width:100%;height:100%;min-height:420px;object-fit:cover}.subpage-image.icon img{width:280px;height:280px;min-height:0;object-fit:cover;border-radius:24px}.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:34px;align-items:start}.article-stack{display:grid;gap:24px}.article-card,.scope-card,.sidebar-card{background:#fff;border:1px solid #dfe8f3;border-radius:22px;box-shadow:0 10px 30px rgba(15,40,85,.075);padding:34px}.article-card h2,.scope-card h2,.sidebar-card h2{margin:0 0 18px;color:#061b46;font-size:30px;letter-spacing:-.035em;line-height:1.15}.article-card p{margin:0 0 18px;color:#435371;font-size:17px;line-height:1.75}.checklist{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:0;padding:0;list-style:none}.checklist li{display:flex;gap:12px;color:#334762}.checklist li:before{content:"✓";display:grid;place-items:center;width:24px;height:24px;flex:0 0 24px;border-radius:50%;background:#0b59ce;color:#fff;font-weight:900;font-size:14px}.sidebar{position:sticky;top:128px;display:grid;gap:20px}.service-link{display:grid;grid-template-columns:54px 1fr;gap:14px;align-items:center;padding:14px 0;border-bottom:1px solid #e6eef7}.service-link:last-child{border-bottom:0}.service-link img{width:54px;height:54px;border-radius:12px;object-fit:cover;background:#f1f7ff}.service-link strong{display:block;color:#061b46;font-size:16px;line-height:1.25}.service-link span span{color:#0b59ce;font-size:13px;font-weight:800}.process{background:#f5faff}.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.step-card{padding:28px 24px;text-align:center;background:#fff;border:1px solid #dfe8f3;border-radius:22px;box-shadow:0 10px 30px rgba(15,40,85,.075)}.step-number{width:54px;height:54px;border-radius:50%;display:grid;place-items:center;margin:0 auto 18px;background:#0b59ce;color:#fff;font-size:22px;font-weight:900}@media(max-width:1100px){.subpage-grid,.content-grid{grid-template-columns:1fr}.sidebar{position:static}.steps{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.dropdown{display:none;position:static;width:100%;box-shadow:none}.nav-item.dropdown-open .dropdown{display:block}.checklist,.steps{grid-template-columns:1fr}.subpage-title{font-size:42px}}

/* v3: thicker, more mock-like offer icons */
.service-card img{
  width:88px !important;
  height:88px !important;
  filter: contrast(1.12) saturate(1.08);
}
