:root{
    --navy:#0c2e5c;
    --navy-2:#123f7a;
    --blue:#1f78d1;
    --sky:#eaf4ff;
    --teal:#38b6c8;
    --orange:#f5a623;
    --gold:#d3a64f;
    --green:#1a9b6f;
    --text:#132238;
    --muted:#5f6f83;
    --bg:#f6f9fc;
    --white:#ffffff;
    --border:#dbe5f0;
    --shadow:0 18px 50px rgba(12,46,92,.12);
    --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    color:var(--text);
    background:linear-gradient(180deg,#f7fbff 0%,#eef5fb 100%);
    line-height:1.55;
}
html, body{
    height: auto;
}
a{text-decoration:none;color:inherit}

header{
    position: fixed;
}

.container{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
}
.topbar{
    position:sticky; top:0; z-index:50;
    background:#0d2b54;
    border-bottom:1px solid rgba(219,229,240,1);
}
.nav{
    display:flex; align-items:center; justify-content:space-between;
    gap:20px; padding:14px 0;
}
.brand{
    display:flex; align-items:center; gap:14px; font-weight:800; letter-spacing:.2px;
}
.brand-mark{
    width:46px; height:46px; border-radius:14px;
    background:linear-gradient(135deg,var(--navy),var(--blue));
    color:#fff; display:grid; place-items:center; font-size:20px; font-weight:800;
    box-shadow:var(--shadow);
}
.brand small{display:block; color:var(--orange); font-size:12px; font-weight:700; margin-top:2px}
.nav-links{
    display:flex; gap:20px; align-items:center; flex-wrap:wrap;
    color:var(--muted); font-size:14px; font-weight:600;
}
.nav-links a {
    color: #FFF;
}
.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    min-height:48px; padding:0 20px; border-radius:999px; border:1px solid transparent;
    font-weight:700; transition:.25s ease; cursor:pointer;
}
.btn-primary{
    color:#fff; background:linear-gradient(135deg,var(--navy),var(--blue));
    box-shadow:0 14px 30px rgba(18,63,122,.24);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
    background:#fff; color:var(--navy); border-color:var(--border);
}
.hero{
    position:relative; overflow:hidden;
    padding:72px 0 38px;
}
.hero::before{
    content:"";
    position:absolute; inset:-120px auto auto -120px; width:340px; height:340px;
    background:radial-gradient(circle, rgba(31,120,209,.18) 0%, rgba(31,120,209,0) 68%);
    pointer-events:none;
}
.hero-wrap{
    display:grid; grid-template-columns:1.08fr .92fr; gap:28px; align-items:center;
}
.eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    background:#fff; color:var(--navy); border:1px solid var(--border);
    border-radius:999px; padding:10px 14px; font-size:13px; font-weight:800;
    box-shadow:0 8px 24px rgba(12,46,92,.08);
}
.eyebrow-dot{
    width:10px; height:10px; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--gold));
}
h1{
    margin:18px 0 16px;
    font-size:clamp(34px, 6vw, 62px);
    line-height:1.02;
    letter-spacing:-1.8px;
}
.hero p{
    color:var(--muted);
    font-size:18px; margin:0 0 26px;
    max-width:700px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:28px}
.hero-card{
    background:linear-gradient(160deg, rgba(12,46,92,.97), rgba(18,63,122,.96));
    color:#fff; border-radius:32px; padding:30px; position:relative; overflow:hidden;
    box-shadow:var(--shadow); min-height:100%;
}
.hero-card::after{
    content:""; position:absolute; width:240px; height:240px; border-radius:50%;
    right:-90px; bottom:-90px; background:radial-gradient(circle, rgba(255,255,255,.20), rgba(255,255,255,0));
}
.card-kpi{
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; margin-top:18px;
}
.kpi{
    padding:18px; border-radius:20px;
    background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
}
.kpi strong{display:block; font-size:28px; line-height:1; margin-bottom:8px}
.kpi span{display:block; color:rgba(255,255,255,.82); font-size:13px}
.hero-mini{
    display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;
}
.mini-pill{
    border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.08);
    color:#fff; padding:10px 14px; border-radius:999px; font-size:13px; font-weight:700;
}

.logo-strip{
    padding:14px 0 36px;
}
.strip-box{
    background:#fff; border:1px solid var(--border); border-radius:22px;
    padding:18px 22px; box-shadow:0 10px 26px rgba(12,46,92,.06);
}
.strip-label{
    color:var(--muted); font-size:13px; font-weight:700; margin-bottom:14px;
}
.logos{
    display:grid; grid-template-columns:repeat(6, minmax(0,1fr)); gap:12px;
}
.logo-chip{
    min-height:58px; border-radius:16px; background:linear-gradient(180deg,#fff,#f8fbff);
    border:1px solid var(--border); display:grid; place-items:center;
    color:var(--navy); font-weight:800; font-size:14px; text-align:center; padding:10px;
}

section{padding:38px 0}
.section-head{
    display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:22px;
}
.section-head h2{
    margin:0; font-size:clamp(28px, 4vw, 40px); line-height:1.08; letter-spacing:-1px;
}
.section-head p{margin:0; color:var(--muted); max-width:700px}
.section-head a{margin:0; color:var(--muted); max-width:700px; text-decoration: underline; font-weight: 600}
.grid-3{
    display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px;
}
.grid-4{
    display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:18px;
}
.info-card{
    background:#fff; border:1px solid var(--border); border-radius:24px;
    padding:22px; box-shadow:0 12px 28px rgba(12,46,92,.06);
}
.icon{
    width:52px; height:52px; border-radius:16px;
    display:grid; place-items:center; font-size:24px; margin-bottom:14px;
    background:linear-gradient(135deg, rgba(31,120,209,.12), rgba(56,182,200,.14));
    color:var(--navy);
}
.info-card h3{margin:0 0 8px; font-size:20px}
.info-card p{margin:0; color:var(--muted); font-size:15px}
.info-card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.info-card li + li{margin-top:6px}

.band{
    background:linear-gradient(135deg,var(--navy),#0e396f 55%, var(--blue));
    color:#fff; border-radius:34px; padding:34px; box-shadow:var(--shadow);
    position:relative; overflow:hidden;
}
.band::before{
    content:""; position:absolute; inset:auto auto -80px -50px; width:240px; height:240px;
    background:radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
}
.band-grid{
    display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:center;
}
.band h2{margin:0 0 12px; font-size:clamp(28px, 4vw, 42px); line-height:1.05}
.band p{margin:0; color:rgba(255,255,255,.84)}
.infographic{
    display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px;
}
.stat-box{
    background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.14);
    border-radius:22px; padding:18px;
}
.stat-box strong{display:block; font-size:32px; line-height:1; margin-bottom:8px}
.stat-box span{display:block; font-size:13px; color:rgba(255,255,255,.82)}
.timeline{
    display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px;
}
.step{
    position:relative; padding:24px;
    background:#fff; border:1px solid var(--border); border-radius:24px;
    box-shadow:0 12px 28px rgba(12,46,92,.06);
}
.step-number{
    width:40px; height:40px; border-radius:50%; display:grid; place-items:center;
    background:linear-gradient(135deg,var(--orange),#ffcf7b); color:#432a00; font-weight:900;
    margin-bottom:14px;
}
.step h3{margin:0 0 8px; font-size:19px}
.step p{margin:0; color:var(--muted)}
.categories{
    display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px;
}
.cat{
    background:#fff; border:1px solid var(--border); border-radius:22px; padding:18px;
    display:flex; flex-direction:column; gap:10px; box-shadow:0 10px 24px rgba(12,46,92,.05);
}
.cat-top{
    display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.cat h3{margin:0; font-size:18px}
.cat-badge{
    border-radius:999px; padding:8px 10px; font-size:12px; font-weight:800;
    background:var(--sky); color:var(--navy);
}
.cat p{margin:0; color:var(--muted); font-size:14px}
.month-board{
    background:#fff; border:1px solid var(--border); border-radius:28px; padding:24px;
    box-shadow:0 12px 28px rgba(12,46,92,.06);
}
.months{
    display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px;
}
.month{
    border:1px solid var(--border); border-radius:20px; padding:18px;
    background:linear-gradient(180deg,#fff,#fbfdff);
}
.month h3{margin:0 0 8px; font-size:18px}
.month p{margin:0; color:var(--muted); font-size:14px}
.month strong{display:block; font-size:34px; color:var(--navy); line-height:1; margin-bottom:8px}
.savings{
    display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.scenario{
    background:#fff; border:1px solid var(--border); border-radius:24px; padding:22px;
    box-shadow:0 12px 28px rgba(12,46,92,.06);
}
.scenario h3{margin:0 0 12px; font-size:21px}
.scenario p{margin:0 0 16px; color:var(--muted)}
.bars{display:grid; gap:12px}
.bar-row{display:grid; gap:6px}
.bar-row span{font-size:13px; color:var(--muted); font-weight:700}
.bar{
    height:14px; border-radius:999px; overflow:hidden; background:#eaf0f6;
}
.bar > i{
    display:block; height:100%; border-radius:999px;
    background:linear-gradient(90deg,var(--orange),var(--gold));
}
.bar.navy > i{background:linear-gradient(90deg,var(--navy),var(--blue))}
.qna{
    display:grid; grid-template-columns:1.1fr .9fr; gap:18px;
}
.faq{
    background:#fff; border:1px solid var(--border); border-radius:24px; overflow:hidden;
    box-shadow:0 12px 28px rgba(12,46,92,.06);
}
details{
    border-bottom:1px solid #edf2f8; padding:0 22px;
}
details:last-child{border-bottom:none}
summary{
    list-style:none; cursor:pointer; padding:20px 0; font-weight:800; position:relative;
}
summary::-webkit-details-marker{display:none}
summary::after{
    content:"+"; position:absolute; right:0; top:16px; font-size:26px; color:var(--blue);
}
details[open] summary::after{content:"–"}
details p{
    color:var(--muted); margin:0 0 18px;
}
.contact-box{
    background:linear-gradient(180deg,#fff,#f8fbff); border:1px solid var(--border);
    border-radius:24px; padding:24px; box-shadow:0 12px 28px rgba(12,46,92,.06);
}
.contact-list{display:grid; gap:12px; margin-top:16px}
.contact-item{
    border:1px solid var(--border); border-radius:18px; padding:16px;
    display:flex; gap:14px; align-items:flex-start; background:#fff;
}
.contact-item b{display:block; margin-bottom:4px}
.contact-item a:hover{
    color: #0d2b54;
}
.notice{
    margin-top:18px; border-left:4px solid var(--orange); padding:14px 16px;
    background:#fff8ec; color:#6a4a00; border-radius:0 16px 16px 0; font-size:14px;
}
.footer{
    padding:26px 0 48px; color:var(--muted); font-size:14px;
    background-color: transparent;
}
.footer-box{
    background:#fff; border:1px solid var(--border); border-radius:24px; padding:20px;
    display:flex; justify-content:space-between; gap:18px; align-items:center; flex-wrap:wrap;
    box-shadow:0 10px 24px rgba(12,46,92,.05);
}
.checklist{
    display:grid; gap:12px; margin-top:18px;
}
.check{
    display:flex; gap:12px; align-items:flex-start;
    padding:14px 16px; background:#fff; border:1px solid var(--border); border-radius:18px;
}
.check-mark{
    width:28px; height:28px; border-radius:50%; background:#e9faf3; color:var(--green);
    display:grid; place-items:center; font-weight:900; flex:0 0 auto;
}
.muted{color:var(--muted)}
.accent{color:var(--blue)}
.orange{color:var(--orange)}
@media (max-width: 1100px){
    .hero-wrap,.band-grid,.qna{grid-template-columns:1fr}
    .logos,.grid-4,.categories,.months{grid-template-columns:repeat(3, minmax(0,1fr))}
    .grid-3,.timeline,.infographic,.savings{grid-template-columns:1fr}
}
@media (max-width: 760px){
    .nav-links{display:none}
    .hero{padding-top:42px}
    .logos,.grid-4,.categories,.months{grid-template-columns:1fr 1fr}
    .card-kpi{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
    .container{width:min(100% - 20px, 1180px)}
    .logos,.grid-4,.categories,.months,.card-kpi{grid-template-columns:1fr}
    .hero-actions{flex-direction:column}
    .btn{width:100%}
    .band,.hero-card,.month-board,.contact-box,.faq{border-radius:22px}
}
