:root{
  --navy:#07111f;
  --blue:#12355b;
  --teal:#1d7874;
  --gold:#ffb703;
  --orange:#fb8500;
  --ink:#14213d;
  --muted:#5e6b7a;
  --light:#f7f9fc;
  --white:#ffffff;
  --border:#e4e9f0;
  --shadow:0 16px 40px rgba(7,17,31,.10);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
}
a{color:inherit}
.container{width:min(1120px,92%);margin:auto}
.topbar{
  background:var(--navy);
  color:#dbe6f3;
  font-size:13px;
  padding:8px 0;
}
.topbar .container{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.header{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.02em;
  color:var(--navy);
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand span{
  display:block;
  line-height:1.1;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  margin-top:3px;
}
.menu{
  display:flex;
  align-items:center;
  gap:24px;
  list-style:none;
}
.menu a{
  text-decoration:none;
  color:var(--ink);
  font-weight:700;
  font-size:14px;
}
.menu a:hover,.menu a.active{color:var(--orange)}
.nav-cta{
  background:var(--gold);
  color:var(--navy)!important;
  padding:11px 16px;
  border-radius:999px;
}
.mobile-toggle{display:none}

.hero{
  background:
    radial-gradient(circle at 78% 22%, rgba(255,183,3,.28), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue) 55%, var(--teal));
  color:var(--white);
  padding:110px 0 90px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:46px;
}
.eyebrow{
  color:var(--gold);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:15px;
}
.hero h1,.page-hero h1{
  font-size:clamp(42px,6vw,72px);
  line-height:1.03;
  letter-spacing:-.04em;
  margin-bottom:24px;
}
.hero p,.page-hero p{
  color:#e4edf7;
  font-size:19px;
  max-width:720px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
  border-radius:10px;
  padding:14px 22px;
  border:1px solid transparent;
}
.btn-primary{background:var(--gold);color:var(--navy)}
.btn-secondary{border-color:rgba(255,255,255,.45);color:var(--white)}
.btn-dark{background:var(--navy);color:var(--white)}
.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  border-radius:28px;
  padding:34px;
  box-shadow:0 25px 70px rgba(0,0,0,.22);
}
.hero-card img{
  display:block;
  width:100%;
  max-width:380px;
  margin:0 auto 20px;
  border-radius:22px;
}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.metric{
  background:rgba(255,255,255,.10);
  border-radius:16px;
  padding:18px;
}
.metric strong{display:block;font-size:26px;color:var(--gold)}
.metric span{color:#e5edf5;font-size:13px}

.section{padding:88px 0}
.section-soft{background:var(--light)}
.section-dark{background:var(--navy);color:var(--white)}
.section-head{
  max-width:780px;
  margin-bottom:42px;
}
.center{text-align:center;margin-left:auto;margin-right:auto}
.section-head h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  letter-spacing:-.03em;
  margin-bottom:14px;
}
.section-head p{color:var(--muted);font-size:18px}
.section-dark .section-head p{color:#d4dfeb}
.grid-3,.grid-4,.grid-2{
  display:grid;
  gap:22px;
}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card h3{
  color:var(--blue);
  font-size:21px;
  margin-bottom:10px;
}
.card p{color:var(--muted)}
.section-dark .card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
}
.section-dark .card h3{color:var(--white)}
.section-dark .card p{color:#dce6f1}
.icon{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:var(--navy);
  font-weight:900;
  margin-bottom:18px;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.panel{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:26px;
  padding:34px;
  box-shadow:var(--shadow);
}
.list{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.list li{
  list-style:none;
  padding-left:32px;
  position:relative;
  color:var(--muted);
}
.list li:before{
  content:"✓";
  position:absolute;left:0;top:0;
  color:var(--orange);
  font-weight:900;
}
.steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.step{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:26px;
}
.step:before{
  counter-increment:step;
  content:"0" counter(step);
  color:var(--gold);
  font-weight:900;
  font-size:28px;
}
.step h3{margin:10px 0;color:var(--white)}
.step p{color:#d4dfeb}
.page-hero{
  background:linear-gradient(135deg,var(--navy),var(--blue) 62%,var(--teal));
  color:var(--white);
  padding:86px 0;
}
.breadcrumb{
  color:var(--gold);
  font-weight:800;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:start;
}
.contact-info{
  background:var(--navy);
  color:var(--white);
  border-radius:24px;
  padding:32px;
}
.contact-info p{color:#dce6f1;margin:12px 0}
.form{
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:24px;
  padding:32px;
}
.form label{
  display:block;
  font-weight:800;
  margin:16px 0 6px;
}
.form input,.form textarea,.form select{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--border);
  border-radius:10px;
  font:inherit;
}
.form textarea{min-height:145px;resize:vertical}
.form button{
  margin-top:18px;
  width:100%;
  border:0;
  cursor:pointer;
}
.map{
  border:0;
  width:100%;
  height:360px;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.footer{
  background:#06101a;
  color:#d3deeb;
  padding:54px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:36px;
}
.footer h3{color:var(--white);margin-bottom:12px}
.footer a{text-decoration:none;color:#d3deeb;display:block;margin:8px 0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  padding-top:22px;
  font-size:13px;
  color:#a9b6c5;
}
.notice{
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
}
@media(max-width:900px){
  .hero-grid,.split,.contact-grid,.grid-2{grid-template-columns:1fr}
  .grid-3,.grid-4,.steps{grid-template-columns:repeat(2,1fr)}
  .menu{display:none}
  .mobile-toggle{display:block;font-weight:800}
}
@media(max-width:560px){
  .grid-3,.grid-4,.steps,.metric-grid{grid-template-columns:1fr}
  .hero{padding:78px 0 64px}
  .brand img{width:48px;height:48px}
  .brand span{font-size:14px}
  .footer-grid{grid-template-columns:1fr}
}
