
:root {
  --primary: #1E3A8A;
  --primaryLight: #3B82F6;
  --accent: #10B981;
  --text: #0F172A;
  --muted: #475569;
  --bg: #FFFFFF;
  --bgAlt: #F8FAFC;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header { position: sticky; top:0; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom:1px solid #e5e7eb; z-index:20; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand { font-weight:700; font-size: 1.1rem; color: var(--text); display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark { width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; background: var(--primary); color:#fff; border-radius:50%; box-shadow: var(--shadow); }
.nav-menu { display:flex; align-items:center; gap:18px; list-style:none; margin:0; padding:0; }
.nav-menu a { color: var(--text); font-weight:600; }
.nav-menu .btn { color:#fff; }
.has-sub > .sub { display:none; position:absolute; background:#fff; border:1px solid #e5e7eb; border-radius: var(--radius); box-shadow: var(--shadow); padding:8px 0; margin-top:10px; }
.has-sub:hover > .sub { display:block; }
.sub li { list-style:none; }
.sub a { display:block; padding:8px 14px; white-space:nowrap; }
.nav-toggle { display:none; background:transparent; border:0; }
.nav-toggle .burger { width:26px; height:2px; background:var(--text); position:relative; display:block; }
.nav-toggle .burger::before, .nav-toggle .burger::after { content:""; position:absolute; left:0; width:26px; height:2px; background:var(--text); }
.nav-toggle .burger::before { top:-7px; } .nav-toggle .burger::after { top:7px; }
.hero { background: linear-gradient(180deg, #F8FAFF 0, #FFFFFF 70%); padding: 64px 0 24px; }
.hero .hgroup { display:grid; grid-template-columns: 1.2fr 1fr; gap:36px; align-items:center; }
h1, h2, h3 { line-height:1.25; }
h1 { font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem); margin: 0 0 14px; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem); margin: 0 0 12px; }
h3 { font-size: 1.2rem; margin: 18px 0 8px; }
p.lead { font-size: 1.1rem; color: var(--muted); }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border-radius: var(--radius); font-weight:700; text-decoration:none; border:1px solid transparent; box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color:#fff; }
.btn-ghost { background: #fff; color: var(--primary); border-color: #c7d2fe; }
.kpis { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top: 24px; }
.kpi { background: var(--bgAlt); border:1px solid #e5e7eb; border-radius: var(--radius); padding:16px; text-align:center; }
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.card { background:#fff; border:1px solid #e5e7eb; border-radius: var(--radius); padding:18px; box-shadow: var(--shadow); }
.card h3 { margin-top:0; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.section { padding: 36px 0; }
.section.alt { background: var(--bgAlt); border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb; }
.muted { color: var(--muted); }
.tiny { font-size:.85rem; }
.list { list-style:none; padding-left:0; }
.link-like { background:none; border:none; padding:0; color: var(--primary); cursor:pointer; text-decoration:underline; }
.site-footer { padding: 40px 0; border-top:1px solid #e5e7eb; margin-top: 40px; }
.badge { display:inline-block; padding:4px 8px; border-radius:999px; background:#EEF2FF; color: var(--primary); font-weight:700; font-size:.8rem; }
blockquote.review { background:#fff; border-left:4px solid var(--accent); padding:14px 16px; border-radius: var(--radius); box-shadow: var(--shadow); }
table.pricing { width:100%; border-collapse: collapse; }
table.pricing th, table.pricing td { border:1px solid #e5e7eb; padding:10px; text-align:left; }
.hero-art { aspect-ratio: 4/3; background: radial-gradient(600px 300px at 10% 10%, #e0f2fe 0, transparent 60%), radial-gradient(600px 300px at 90% 30%, #d1fae5 0, transparent 60%), linear-gradient(135deg, #f8fafc, #ffffff); border-radius: var(--radius); border:1px solid #e5e7eb; box-shadow: var(--shadow); display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--muted); }
.breadcrumbs { font-size:.9rem; margin: 8px 0 16px; }
.breadcrumbs a { color: var(--muted); }
.notice { background: #f0fdf4; border:1px solid #dcfce7; padding: 12px; border-radius: var(--radius); }
.form { display:grid; gap:12px; max-width:680px; }
input, select, textarea { width:100%; padding:10px; border-radius: 10px; border:1px solid #cbd5e1; background:#fff; }
label .helper { display:block; color: var(--muted); font-size:.85rem; }
.consent-banner { position: fixed; inset: auto 12px 12px 12px; background:#fff; border:1px solid #e5e7eb; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); max-width: 720px; z-index: 60; }
.consent-modal { position: fixed; inset:0; display:none; align-items:flex-end; justify-content:center; background: rgba(0,0,0,.35); z-index: 70; }
.consent-modal .panel { background:#fff; width:min(720px, 94%); border-radius: var(--radius); padding:20px; margin: 40px 0; }
.consent-actions { display:flex; gap:10px; flex-wrap:wrap; }
.badge-cat { background:#f1f5f9; border:1px solid #e5e7eb; padding:4px 8px; border-radius:8px; font-weight:600; }
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { position:static; width:auto; height:auto; }

@media (max-width: 900px) {
  .hero .hgroup { grid-template-columns: 1fr; }
  .cards, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-toggle { display:inline-block; }
  .nav-menu { display:none; position:absolute; right:20px; top:56px; background:#fff; border:1px solid #e5e7eb; border-radius: var(--radius); padding:12px; flex-direction:column; gap:10px; box-shadow: var(--shadow); }
  .has-sub:hover > .sub { position:static; border:none; box-shadow:none; }
}
