
:root{
  --navy:#071f52;
  --navy2:#042b73;
  --blue:#0b66d8;
  --blue2:#1677eb;
  --yellow:#ffc400;
  --text:#0a2148;
  --muted:#566980;
  --light:#f4f9ff;
  --light2:#eaf4ff;
  --border:#d7e6f8;
  --white:#fff;
  --shadow:0 16px 38px rgba(8,40,96,.10);
  --max:1180px;
}
*{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(--text);
  background:#fff;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 48px));margin:0 auto}
.site-header{
  height:92px;
  background:rgba(255,255,255,.96);
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid #e8eef8;
  box-shadow:0 3px 18px rgba(7,31,82,.06);
  backdrop-filter:blur(10px);
}
.nav{height:92px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo img{width:190px;height:auto}
.navlinks{display:flex;align-items:center;gap:30px;font-size:14px;font-weight:800}
.navlinks a{position:relative;color:var(--navy)}
.navlinks a.active::after{content:"";position:absolute;left:0;right:0;bottom:-31px;height:4px;background:var(--blue);border-radius:99px}
.menu{display:none;border:0;background:#fff;font-size:30px;color:var(--navy)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:11px;
  padding:15px 22px;
  font-weight:900;
  border:2px solid transparent;
  line-height:1;
  white-space:nowrap;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-yellow{background:var(--yellow);color:#061a38}
.btn-blue{background:var(--blue);color:#fff}
.btn-outline{background:#fff;color:var(--blue);border-color:#b7d4f6}
.btn-light-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
h1,h2,h3{margin:0 0 16px;line-height:1.08;letter-spacing:-.035em;color:var(--navy)}
h1{font-size:clamp(42px,4.8vw,66px)}
h2{font-size:clamp(30px,3.25vw,44px)}
h3{font-size:22px}
p{margin:0 0 18px;color:var(--muted)}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--navy);
  font-weight:900;
  font-size:13px;
  margin-bottom:20px;
  box-shadow:0 8px 22px rgba(8,40,96,.06);
}
.light-kicker{background:rgba(255,255,255,.10);color:#fff;border-color:rgba(255,255,255,.24);box-shadow:none}
.section{padding:76px 0}
.section-tight{padding:54px 0}
.light{background:var(--light)}
.center{text-align:center}
.center p{max-width:790px;margin-left:auto;margin-right:auto}
.hero{
  background:linear-gradient(90deg,#fff 0%,#f4f9ff 100%);
  padding:72px 0 64px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:42px;
  align-items:center;
}
.hero p{font-size:18px;max-width:650px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-visual{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#eef6ff;
}
.hero-visual img{width:100%;height:460px;object-fit:cover}
.hero-proof{
  margin-top:28px;
  max-width:620px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:var(--border);
}
.hero-proof div{
  background:#fff;
  padding:17px;
}
.hero-proof strong{
  display:block;
  color:var(--navy);
  font-size:15px;
}
.hero-proof span{
  color:var(--muted);
  font-size:13px;
}
.blue-band{
  background:linear-gradient(135deg,#071f52,#075fd0);
  color:#fff;
}
.blue-band h2,.blue-band h3,.blue-band p{color:#fff}
.blue-band p{opacity:.9}
.control-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:38px;
  align-items:start;
}
.control-list{display:grid;gap:0;border-top:1px solid rgba(255,255,255,.18)}
.control-row{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  align-items:start;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.control-icon{
  width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,.14);
  display:grid;place-items:center;
  color:#fff;font-weight:900;
}
.control-row strong{display:block;color:#fff;font-size:17px;margin-bottom:3px}
.control-row span{color:#dbeafe;font-size:14.5px}
.fit-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 28px rgba(8,40,96,.06);
}
.fit-item{
  padding:28px 24px;
  border-right:1px solid var(--border);
}
.fit-item:last-child{border-right:0}
.fit-item .mini{
  width:46px;height:46px;border-radius:50%;
  background:#eaf4ff;color:var(--blue);
  display:grid;place-items:center;
  margin-bottom:14px;
  font-size:22px;font-weight:900;
}
.fit-item h3{font-size:20px;margin-bottom:8px}
.fit-item p{font-size:14.5px;margin-bottom:0}
.process{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 28px rgba(8,40,96,.06);
}
.process-step{
  padding:28px 22px;
  border-right:1px solid var(--border);
}
.process-step:last-child{border-right:0}
.step-no{
  width:42px;height:42px;border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:grid;place-items:center;
  font-weight:900;
  margin-bottom:15px;
}
.process-step h3{font-size:18px;margin-bottom:8px}
.process-step p{font-size:14px;margin-bottom:0}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  align-items:center;
}
.doc-visual{
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#eef6ff;
}
.checks{display:grid;gap:12px;margin-top:20px}
.check{display:grid;grid-template-columns:24px 1fr;gap:10px;color:var(--text);font-weight:750}
.check::before{content:"✓";color:var(--blue);font-weight:900}
.boundary-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.boundary{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px;
  box-shadow:0 12px 30px rgba(8,40,96,.08);
}
.boundary.danger{border-color:#ffd2d2}
.boundary h3{margin-bottom:14px}
.boundary ul{margin:0;padding:0;list-style:none;display:grid;gap:11px}
.boundary li{
  display:grid;
  grid-template-columns:24px 1fr;
  gap:10px;
  color:var(--text);
  font-weight:750;
}
.boundary li::before{content:"✓";color:var(--blue);font-weight:900}
.boundary.danger li::before{content:"×";color:#dc2626}
.cta{
  background:linear-gradient(135deg,#071f52,#075fd0);
  color:#fff;
}
.cta h2,.cta p{color:#fff}
.cta p{opacity:.9}
.footer{background:#05245e;color:#fff;padding:52px 0 22px}
.footer p,.footer a{color:#dbeafe}
.footer h4{color:#fff;margin:0 0 14px}
.footer-grid{display:grid;grid-template-columns:1.55fr repeat(4,1fr);gap:34px}
.footer ul{padding:0;margin:0;list-style:none;display:grid;gap:7px}
.footer-logo img{width:185px;filter:brightness(0) invert(1) saturate(0) brightness(2)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.18);margin-top:34px;padding-top:18px;display:flex;justify-content:space-between;gap:20px;font-size:13px;color:#dbeafe}

@media(max-width:980px){
  .menu{display:block}
  .navlinks{
    display:none;position:absolute;left:0;right:0;top:92px;background:#fff;padding:22px;
    flex-direction:column;align-items:flex-start;border-bottom:1px solid #e8eef8
  }
  .navlinks.open{display:flex}
  .navlinks a.active::after{display:none}
  .hero-grid,.control-grid,.split,.boundary-panel,.footer-grid{grid-template-columns:1fr}
  .hero-visual img{height:auto}
  .hero-proof,.fit-row,.process{grid-template-columns:1fr}
  .fit-item,.process-step{border-right:0;border-bottom:1px solid var(--border)}
  .fit-item:last-child,.process-step:last-child{border-bottom:0}
  h1{font-size:clamp(36px,9vw,48px)}
  .section{padding:56px 0}
}


/* Professional title-size refinement
   Keeps the page design the same while reducing oversized hero/page titles. */
h1{
  font-size:clamp(36px,4.2vw,54px);
  line-height:1.12;
  letter-spacing:-.04em;
}

.hero-copy h1{
  font-size:clamp(36px,4.2vw,54px);
  line-height:1.12;
  letter-spacing:-.04em;
}

@media(max-width:980px){
  h1,
  .hero-copy h1{
    font-size:clamp(32px,8vw,42px);
    line-height:1.12;
  }
}

@media(max-width:640px){
  h1,
  .hero-copy h1{
    font-size:clamp(30px,8vw,38px);
    line-height:1.12;
  }
}


/* Recommended correction footer refinement */
.footer-bottom{
  align-items:center;
}
.footer-bottom span{
  display:inline-block;
}
