:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --gold: #f59e0b;
  --line: #dbe4f0;
  --card: #ffffff;
  --green: #16a34a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); z-index: 20; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand img { height: 56px; width: auto; }
nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
nav a { font-weight: 700; color: var(--muted); }
.hero { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #fff7ed 100%); padding: 72px 0 56px; }
.hero-grid, .split, .footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.eyebrow { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 720px; }
.cta-row { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px;
  border-radius: 999px; background: var(--primary); color: white; font-weight: 800; border: none;
  box-shadow: 0 10px 25px rgba(29,78,216,.18);
}
.btn-secondary { background: white; color: var(--primary-dark); border: 1px solid var(--line); box-shadow: none; }
.btn-small { padding: 10px 16px; }
.trust-list, .hero-card ul, .card ul, .note-card ul { padding-left: 18px; }
.trust-list { display: flex; gap: 18px; flex-wrap: wrap; padding-left: 0; list-style: none; color: var(--muted); font-weight: 700; }
.trust-list li::before { content: "✓ "; color: var(--green); }
.hero-card, .card, .price-box, .faq-item, .note-card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 40px rgba(15,23,42,.06); }
.hero-card { padding: 28px; }
.highlight { color: var(--primary); font-weight: 800; margin-top: 12px; }
.section { padding: 72px 0; }
.muted { background: var(--bg); }
.alt { background: #f8fbff; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stats div { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.stats strong { display: block; font-size: 2rem; color: var(--primary-dark); }
.stats span { color: var(--muted); }
.cards.three { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { padding: 24px; }
.price-box { display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; overflow: hidden; margin-top: 24px; }
.price-main, .price-note { padding: 28px; }
.price-main { background: white; }
.price-note { background: #eff6ff; }
.badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font-weight: 800; margin-bottom: 10px; }
.badge.green { background: #dcfce7; color: #166534; }
.table-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
table { width: 100%; border-collapse: collapse; background: white; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
thead th { background: #0f172a; color: white; font-size: 1rem; }
tr:last-child td { border-bottom: none; }
.note-card { padding: 26px; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.faq-item { padding: 24px; margin-bottom: 16px; }
.cta-section { background: linear-gradient(135deg, #0f172a, #1e3a8a); color: white; }
.contact-form { display: grid; gap: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 24px; }
.contact-form label { display: grid; gap: 6px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.94); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.site-footer { background: #020617; color: #cbd5e1; padding: 40px 0; }
.footer-grid { align-items: start; }
.footer-logo { max-width: 280px; filter: brightness(1.06); }
.site-footer h3 { color: white; }
.site-footer ul { list-style: none; padding-left: 0; }
@media (max-width: 960px) {
  .hero-grid, .split, .footer-grid, .price-box, .cards.three, .table-wrap, .stats { grid-template-columns: 1fr; }
  .nav { flex-direction: column; align-items: flex-start; }
}
