
:root {
  --primary: #0B1F3A;
  --accent: #39D802;
  --muted: #8A8F98;
  --bg: #F7F9FC;
  --text: #0A0A0A;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--bg); color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.header { position: sticky; top:0; background: white; border-bottom: 1px solid #e5edf6; z-index: 20; }
.header .inner { display:flex; gap:16px; align-items:center; justify-content:space-between; padding: 12px 0; }
.brand img { height: 42px; }
.nav a { text-decoration:none; color: var(--primary); font-weight:700; margin: 0 8px; }
.nav a:hover { color: var(--accent); }
.cta-btn { padding: 12px 18px; background: var(--primary); color: white; border-radius: 10px; text-decoration: none; font-weight: 800; }
.cta-btn:hover { background: #0a1830; }
.hero { padding: 56px 0; }
.hero .card { background: linear-gradient(180deg, #ffffff, #fafdff); border:1px solid #e5edf6; border-radius: 16px; padding: 32px; display:grid; grid-template-columns: 1.3fr 1fr; gap: 28px; }
.kicker { color: var(--accent); font-weight: 900; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { color: var(--primary); }
.lead { font-size: 18px; color: #2a3750; }
.badge-row { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.hero-img { display:flex; align-items:center; justify-content:center; background: #0f172a; color:white; border-radius:12px; min-height:220px; font-weight:900; }
.section { padding: 36px 0; }
.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { background:white; border:1px solid #e5edf6; border-radius:14px; padding: 18px; }
.card h3 { margin-top: 6px; }
.grid-2 { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-3 { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.price { font-size: 30px; font-weight: 900; color: var(--primary); }
.small { font-size: 14px; color: #43526c; }
.notice { font-size: 12px; color: #6b7280; }
.footer { background: #0f1520; color: #c9d1e3; padding: 40px 0; margin-top: 40px; }
.footer a { color: white; text-decoration: none; }
ul.inline { list-style:none; padding:0; display:flex; gap:10px; flex-wrap:wrap; }
ul.inline li { background:#eef3f9; padding:6px 10px; border-radius:8px; }
.btn-outline { padding: 10px 14px; border: 2px solid var(--primary); color: var(--primary); border-radius: 10px; text-decoration:none; font-weight:800; }
.btn-outline:hover { background: var(--primary); color:white; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid #e9eef3; padding: 10px; text-align: left; }
.hero-list { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 12px; }
.hero-list .item { background:white; border:1px solid #e5edf6; border-radius:10px; padding:12px; }
input, textarea { width:100%; padding:12px; border:1px solid #dbe4ef; border-radius:10px; }
label { font-weight:700; color: var(--primary); }
form .row { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
form button { margin-top: 8px; }
.badge { display:inline-block; padding:4px 8px; border-radius:8px; background:#eef3f9; color:#0b1f3a; font-weight:700; font-size:12px; }
