:root {
  --bg: #f7fbff;
  --panel: rgba(255, 255, 255, 0.86);
  --line: rgba(24, 76, 148, 0.16);
  --text: #071426;
  --muted: #526173;
  --blue: #2458ff;
  --teal: #16a4d8;
  --max: 880px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
h1, h2, h3 { font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: 0.01em; line-height: 1.05; font-weight: 400; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
.muted { color: var(--muted); }
strong { font-weight: 700; }

.topbar { padding: 1.1rem 0; border-bottom: 1px solid var(--line); background: #fff; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: "Bebas Neue", Impact, sans-serif; font-size: 1.5rem; color: var(--text); text-decoration: none; }
.logo span { color: var(--blue); }
.topbar .tag { font-size: 0.8rem; color: var(--muted); }

.hero { padding: clamp(3rem, 8vw, 5.5rem) 0 2.5rem; text-align: center; }
.hero .sub { max-width: 640px; margin: 1.25rem auto 1.75rem; font-size: 1.12rem; color: var(--muted); }
.badge { display: inline-block; background: rgba(36, 88, 255, 0.08); color: var(--blue); border: 1px solid rgba(36, 88, 255, 0.25); border-radius: 999px; padding: 0.3rem 0.95rem; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.25rem; }

.btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: 1.05rem; padding: 1rem 2.1rem; border-radius: 12px; text-decoration: none; border: none; cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease; box-shadow: 0 10px 26px rgba(36, 88, 255, 0.28); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(36, 88, 255, 0.34); }
.btn.secondary { background: #fff; color: var(--blue); border: 2px solid var(--blue); box-shadow: none; }
.btn-note { display: block; margin-top: 0.7rem; font-size: 0.85rem; color: var(--muted); }

.vsl { max-width: 760px; margin: 2.25rem auto 0; }
.vsl-frame { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, #0b1f3f 0%, #123a7a 100%); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; padding: 2rem; }
.vsl-frame .play { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.vsl-frame .play::after { content: ""; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.vsl-frame p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 430px; text-align: center; margin: 0; }

section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin-top: 1.5rem; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem; }
.card h3 { color: var(--blue); }

.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 0.8rem; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); }

.form-panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.5rem); max-width: 640px; margin: 0 auto; box-shadow: 0 18px 50px rgba(7, 20, 38, 0.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.3rem; }
input, select { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: 10px; font-size: 1rem; font-family: inherit; background: var(--bg); color: var(--text); }
input:focus, select:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.consent { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; }
.form-error { display: none; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: 10px; padding: 0.8rem 1rem; margin-top: 0.9rem; font-size: 0.9rem; }
.form-panel .btn { width: 100%; margin-top: 1.1rem; text-align: center; }

.footer { padding: 2.5rem 0 3rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }
.footer a { color: var(--muted); }

.checklist { list-style: none; margin: 1rem 0 1.25rem; }
.checklist li { padding-left: 1.9rem; position: relative; margin-bottom: 0.65rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }

.step-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.template { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 12px; padding: 1.4rem 1.6rem; margin: 1.4rem 0; }
.template .t-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 0.5rem; }
.template p { margin-bottom: 0.7rem; }
.template p:last-child { margin-bottom: 0; }

@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
@media print {
  .topbar, .footer, .no-print { display: none !important; }
  body { background: #fff; font-size: 12px; }
  .template { break-inside: avoid; }
}
