/* InfoSecBased — consistent met PrivacyBased / NIS2BASED visuele taal */
:root {
  --bg: #0c1322;
  --bg-alt: #111a2e;
  --panel: #16203a;
  --line: #243150;
  --text: #e8edf7;
  --muted: #9aa7c2;
  --brand: #2f7bff;
  --brand-2: #28d9a3;
  --danger: #ff6b6b;
  --radius: 14px;
  --maxw: 1080px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
.nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(12,19,34,0.85); backdrop-filter: blur(8px); z-index: 50; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { font-weight: 800; font-size: 1.2rem; color: var(--text); }
.nav__logo span { color: var(--brand); }
.nav__links { list-style: none; display: flex; gap: 1.4rem; align-items: center; }
.nav__links a { color: var(--muted); font-size: 0.95rem; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); text-decoration: none; }
.nav__hamburger { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.75rem 1.4rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.08s ease, opacity 0.15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--nav { background: var(--brand); color: #fff; padding: 0.5rem 1rem; }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* SECTIONS */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.hero { padding: 5.5rem 0 4rem; }
.hero__eyebrow { color: var(--brand-2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; margin-bottom: 0.8rem; }
.hero p.lead { font-size: 1.15rem; max-width: 640px; margin: 1rem 0 2rem; }
.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.card h3 { color: var(--text); }
.card ul { margin: 0.6rem 0 0 1.1rem; color: var(--muted); }

/* PRICING */
.price-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
.price { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; display: flex; flex-direction: column; }
.price--featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.price__name { font-weight: 700; color: var(--text); }
.price__amount { font-size: 2.4rem; font-weight: 800; color: var(--text); margin: 0.6rem 0 0.2rem; }
.price__amount small { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price ul { list-style: none; margin: 1.2rem 0; }
.price li { padding: 0.4rem 0; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 0.95rem; }
.price .btn { margin-top: auto; text-align: center; }

/* WIZARD */
.wizard { max-width: 720px; margin: 0 auto; }
.wizard__step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.wizard__progress { height: 6px; background: var(--line); border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; }
.wizard__progress > i { display: block; height: 100%; background: var(--brand); width: 0; transition: width 0.3s ease; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.7rem 0.85rem; background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 9px; font-family: inherit; font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.field .hint { color: var(--muted); font-size: 0.82rem; margin-top: 0.3rem; }
.wizard__nav { display: flex; justify-content: space-between; margin-top: 1.5rem; gap: 0.8rem; }

/* PREVIEW / PAYWALL */
.preview { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; max-height: 360px; overflow: hidden; }
.preview::after { content: ""; position: absolute; inset: auto 0 0 0; height: 160px; background: linear-gradient(transparent, var(--panel)); }
.preview h4 { color: var(--text); margin-top: 1rem; }
.preview p, .preview li { font-size: 0.9rem; }
.paywall { text-align: center; background: var(--bg-alt); border: 1px solid var(--brand); border-radius: var(--radius); padding: 2rem; margin-top: 1.25rem; }

.badge { display: inline-block; background: rgba(40,217,163,0.14); color: var(--brand-2); border: 1px solid rgba(40,217,163,0.4); padding: 0.2rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }

.notice { background: var(--bg-alt); border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: 8px; padding: 1rem 1.2rem; color: var(--muted); font-size: 0.92rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; color: var(--muted); font-size: 0.88rem; }
.footer a { color: var(--muted); }
.footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .grid--3, .grid--2, .price-grid { grid-template-columns: 1fr; }
}
