
:root{
  --ink:#0b1220;
  --navy:#0f172a;
  --navy-soft:#172033;
  --panel:#111827;
  --steel:#334155;
  --muted:#64748b;
  --line:#d8dee8;
  --line-dark:rgba(255,255,255,.12);
  --bg:#f3f6fa;
  --white:#ffffff;
  --blue:#1e40af;
  --blue2:#2563eb;
  --orange:#f97316;
  --orange-soft:#fff7ed;
  --shadow:0 18px 45px rgba(15,23,42,.10);
  --radius:14px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:#17202a;
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.topbar{
  background:#070b12;
  color:#cbd5e1;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar strong{color:white}
.header{
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(14px);
  color:white;
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.logo{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  font-weight:900;
  letter-spacing:.2px;
}
.logo-main{font-size:25px}
.logo-main span{color:var(--orange)}
.logo-sub{font-size:11px;color:#94a3b8;text-transform:uppercase;letter-spacing:.13em;margin-top:5px}
.nav{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:10px 12px;
  border-radius:9px;
  color:#e5e7eb;
  font-size:14px;
  font-weight:800;
}
.nav a:hover{background:rgba(255,255,255,.08);color:white}
.nav .nav-cta{background:var(--orange);color:white;margin-left:8px}
.nav .nav-cta:hover{background:#ea580c}
.hero{
  position:relative;
  background:
    linear-gradient(90deg,rgba(8,13,22,.98) 0%,rgba(15,23,42,.92) 52%,rgba(15,23,42,.70) 100%),
    var(--hero);
  background-size:cover;
  background-position:center;
  color:white;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:6px;
  background:linear-gradient(90deg,var(--orange),var(--blue2));
}
.hero-grid{
  min-height:560px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:54px;
  padding:70px 0;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
  color:#bfdbfe;
}
.eyebrow:before{
  content:"";
  width:36px;
  height:2px;
  background:var(--orange);
}
.hero h1{
  font-size:clamp(38px,5vw,62px);
  line-height:1.04;
  letter-spacing:-.04em;
  margin:18px 0 20px;
  max-width:900px;
}
.hero p{
  font-size:19px;
  max-width:760px;
  color:#dbeafe;
  margin:0 0 18px;
}
.hero-panel{
  background:rgba(15,23,42,.72);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 30px 80px rgba(0,0,0,.32);
}
.hero-panel h3{color:white;margin-bottom:12px}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.stat{
  padding:18px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.09);
}
.stat b{font-size:24px;color:white;display:block}
.stat span{font-size:13px;color:#cbd5e1}
.btn-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 20px;
  border-radius:10px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
}
.btn-primary{background:var(--blue2);color:white}
.btn-primary:hover{background:#1d4ed8}
.btn-secondary{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.32);color:white}
.btn-light{background:white;color:var(--navy);border-color:var(--line)}
.btn-orange{background:var(--orange);color:white}
.section{padding:82px 0;background:white}
.section.alt{background:#eef3f8}
.section.dark{background:var(--navy);color:white}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}
.section-head h2{margin:8px 0 0}
.section-head p{max-width:520px;color:var(--muted);margin:0}
.dark .section-head p{color:#cbd5e1}
h2{
  font-size:clamp(30px,3.2vw,44px);
  line-height:1.12;
  letter-spacing:-.03em;
  color:#0f172a;
  margin:0 0 14px;
}
.dark h2,.dark h3{color:white}
h3{font-size:21px;line-height:1.25;margin:0 0 10px;color:#111827}
p{margin-top:0}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
  transition:.22s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card-media{
  height:210px;
  background:#dbe3ee;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(1.02);
}
.card-body{padding:24px}
.card-body p{color:#475569}
.card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:var(--blue);
  margin-top:8px;
}
.mini-list{
  display:grid;
  gap:10px;
  padding:0;
  margin:18px 0 0;
  list-style:none;
}
.mini-list li{
  padding-left:18px;
  position:relative;
  color:#334155;
}
.mini-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--orange);
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.image-frame{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:white;
}
.image-frame img{width:100%;height:420px;object-fit:cover}
.feature-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:24px;
}
.feature{
  background:#f8fafc;
  border:1px solid var(--line);
  padding:18px;
  border-radius:12px;
}
.feature b{display:block;color:#0f172a;margin-bottom:4px}
.dark-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#cbd5e1;
  border-radius:var(--radius);
  padding:24px;
}
.dark-card h3{color:white}
.table-wrap{overflow:auto;border-radius:var(--radius);box-shadow:var(--shadow)}
.table{width:100%;border-collapse:collapse;background:white;min-width:720px}
.table th,.table td{padding:16px 18px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.table th{background:#0f172a;color:white;font-size:14px}
.table tr:last-child td{border-bottom:0}
.notice{
  background:var(--orange-soft);
  border-left:5px solid var(--orange);
  padding:18px 20px;
  border-radius:10px;
  color:#7c2d12;
  margin:22px 0;
}
.form{
  background:white;
  border:1px solid var(--line);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.input{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  margin-bottom:14px;
  border-radius:10px;
  font:inherit;
  background:#f8fafc;
}
textarea.input{min-height:140px}
.footer{
  background:#070b12;
  color:#cbd5e1;
  padding:58px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:42px;
}
.footer h3{color:white}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:34px;
  padding-top:20px;
  font-size:13px;
  color:#94a3b8;
}
.kpi-strip{
  background:#0f172a;
  color:white;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.kpi-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,.12);
}
.kpi{
  background:#0f172a;
  padding:22px;
}
.kpi b{font-size:26px;color:white;display:block}
.kpi span{color:#cbd5e1;font-size:13px}
.breadcrumb{
  font-size:14px;
  color:#bfdbfe;
  margin-bottom:10px;
}
@media(max-width:980px){
  .hero-grid,.split{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .section-head{display:block}
  .hero-panel{max-width:620px}
}
@media(max-width:680px){
  .container{width:min(100% - 28px,1180px)}
  .topbar-inner,.header-inner{display:block;padding:12px 0}
  .nav{justify-content:flex-start;margin-top:12px}
  .nav a{padding:8px 8px}
  .hero-grid{min-height:auto;padding:56px 0}
  .grid,.feature-list,.footer-grid,.kpi-grid,.stat-grid{grid-template-columns:1fr}
  .section{padding:56px 0}
  .card-media{height:190px}
}
