
:root{
  --brand:#e63946;
  --dark:#0b0f19;
  --text:#2b2f3a;
  --muted:#6b7280;
  --bg:#ffffff;
  --light:#f5f7fb;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;color:var(--text);background:#fff}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid #eef0f4}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{font-weight:800;font-size:20px;letter-spacing:.2px;color:var(--dark)}
.logo span{color:var(--brand)}
.nav{display:flex;gap:24px;align-items:center}
.nav a{color:#445; font-weight:600}
.cta{display:inline-block;background:var(--brand);color:#fff;padding:10px 16px;border-radius:10px;font-weight:700;box-shadow:0 6px 16px rgba(230,57,70,.25)}
.menu-btn{display:none;border:1px solid #e5e7eb;padding:8px 10px;border-radius:10px;background:#fff}
@media(max-width:900px){
  .menu-btn{display:block}
  .nav{position:absolute;left:0;right:0;top:64px;background:#fff;border-bottom:1px solid #eef0f4;display:none;flex-direction:column;padding:16px}
  .nav.open{display:flex}
}

.hero{position:relative;background:linear-gradient(0deg, rgba(11,15,25,.55), rgba(11,15,25,.55)), url('images/hero.jpg');background-size:cover;background-position:center;color:#fff}
.hero .inner{padding:120px 0}
.hero h1{font-size:48px;line-height:1.1;margin:0 0 14px}
.hero p{font-size:18px;color:#e5e7eb;max-width:720px}
.hero .actions{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 18px;border-radius:12px;font-weight:700}
.btn.primary{background:var(--brand);color:#fff}
.btn.ghost{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.25)}

.section{padding:72px 0}
.section.light{background:var(--light)}
.section h2{font-size:28px;margin:0 0 6px}
.section .lead{color:var(--muted);margin:0 0 26px}

.grid{display:grid;gap:18px}
.grid.features{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid #eef0f4;border-radius:14px;padding:18px}
.card h3{margin:10px 0 8px;font-size:18px}
.card p{margin:0;color:#667085}

@media(max-width:1000px){ .grid.features{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){ .grid.features{grid-template-columns:1fr}}

.news{display:grid;gap:12px}
.news-item{display:flex;gap:14px;align-items:flex-start;padding:12px 0;border-bottom:1px solid #eef0f4}
.news-date{font-weight:700;color:var(--brand);min-width:100px}
.news-title{font-weight:700}

.company{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.company .kv{border-radius:12px;min-height:220px;background:url('images/company.jpg') center/cover no-repeat}
.kv-note{font-size:12px;color:#94a3b8;margin-top:6px}
@media(max-width:900px){.company{grid-template-columns:1fr}}

.contact-cta{display:flex;gap:14px;flex-wrap:wrap}
.contact-cta .btn{font-size:16px}

.footer{background:#0b0f19;color:#b8c1d1;padding:28px 0;margin-top:0}
.footer a{color:#d1dae6}
.footer small{display:block;color:#8b95a7;margin-top:6px}

.badge-wrap{padding:28px 0;background:#fff;text-align:center}
.badge-wrap .caption{font-weight:700;margin-bottom:10px;color:#333}
.badge-row{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.badge-row img{height:44px}
