
:root {
  --bg: #0f172a;
  --fg: #0b1220;
  --accent: #2563eb;
  --accent-2: #22c55e;
  --text: #0b1220;
  --muted: #6b7280;
  --card: #ffffff;
  --shade: #f3f4f6;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; color: var(--text); background:#ffffff; }
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 24px; }
header { position: sticky; top:0; z-index: 10; background: #ffffffdd; backdrop-filter: blur(8px); border-bottom: 1px solid #e5e7eb; }
nav { display:flex; align-items:center; justify-content: space-between; gap: 16px; }
nav .brand { display:flex; align-items:center; gap: 12px; padding: 10px 0; }
.brand-logo { width:40px; height:40px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; }
nav .links a { margin: 0 8px; font-weight: 600; color:#111827; }
.hero { background: linear-gradient(180deg, #eef2ff, #ffffff); border-bottom:1px solid #eef2ff; }
.hero .inner { display:grid; grid-template-columns: 1.25fr 1fr; gap: 24px; align-items:center; }
.hero h1 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height:1.15; }
.hero p { color: #374151; }
.badges { display:flex; flex-wrap:wrap; gap:12px; margin-top: 12px; }
.badge { background:#fff; border:1px solid #e5e7eb; padding: 6px 10px; border-radius:999px; font-size: 14px; }
.cta { display:flex; gap:12px; margin-top: 16px; flex-wrap: wrap; }
.cta a.button { display:inline-block; padding:12px 16px; border-radius: 10px; font-weight:700; }
.button.primary { background: var(--accent); color:#fff; }
.button.secondary { background: #eef2ff; color: #1f2937; border:1px solid #dbe3ff; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border:1px solid #e5e7eb; border-radius: 14px; padding: 18px; }
.card h3 { margin-top: 0; }
.section-title h2 { margin:0; font-size: clamp(22px, 3vw, 30px); }
.section-title p { color: #4b5563; }
.list { padding-left: 18px; }
.kv { display:grid; grid-template-columns: 160px 1fr; gap: 8px; }
footer { background:#0b1220; color:#e5e7eb; margin-top: 24px; }
footer .grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
footer a { color:#c7d2fe; }
.footer-bottom { border-top: 1px solid #1f2937; margin-top: 12px; padding-top: 12px; font-size:14px; color:#94a3b8; }
.note { background:#f3f7ff; border:1px solid #dbeafe; padding:12px; border-radius:10px; }
.sticky-cta { position: fixed; right: 16px; bottom: 16px; display:flex; flex-direction: column; gap: 8px; z-index: 20; }
.sticky-cta a { display:block; padding:12px 14px; border-radius: 999px; font-weight:700; box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.sticky-cta .call { background: #16a34a; color:#fff; }
.sticky-cta .mail { background: #2563eb; color:#fff; }

.hero-img { width:100%; border-radius: 14px; border:1px solid #e5e7eb; background: #f8fafc; aspect-ratio: 4 / 3; display:flex; align-items:center; justify-content:center; color:#64748b; font-weight:700; }

.table { width:100%; border-collapse: collapse; }
.table th, .table td { border:1px solid #e5e7eb; padding: 10px; text-align:left; }
.table th { background:#f9fafb; }

@media (max-width: 880px) {
  .hero .inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; }
}
