:root {
  --bg: #050d1a;
  --bg-2: #091526;
  --bg-3: #0d1e35;
  --fg: #e8edf5;
  --fg-2: #8fa3bf;
  --fg-3: #5a7090;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-hover: rgba(245,158,11,0.18);
  --border: rgba(255,255,255,0.07);
  --card-bg: #0a1628;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #050d1a;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  transition: opacity 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { opacity: 0.9; box-shadow: 0 0 20px 2px rgba(245,158,11,0.3); }

/* ── SECTIONS ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 580px;
}

/* ── HERO ── */
.hero {
  padding: 160px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #050d1a;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 24px 4px rgba(245,158,11,0.3); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-2);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--fg-3); color: var(--fg); }
.trust-badges {
  display: flex;
  gap: 24px;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-3);
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-book {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.2);
}
.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-sub { margin: 0 auto; }
.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.step-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  color: var(--fg-3);
  font-size: 20px;
}

/* ── GENRES ── */
.genres-section {
  padding: 100px 0;
}
.genres-header { text-align: center; margin-bottom: 56px; }
.genres-header .section-sub { margin: 0 auto; }
.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.genre-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.15s, background 0.15s;
  cursor: default;
}
.genre-card:hover { border-color: var(--accent); background: var(--accent-dim); }
.genre-icon { font-size: 28px; margin-bottom: 12px; }
.genre-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.genre-desc { font-size: 13px; color: var(--fg-2); line-height: 1.5; }

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.15s;
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #050d1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-words {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-label { font-size: 13px; color: var(--fg-2); margin-bottom: 24px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-amount { font-family: 'Inter', sans-serif; font-size: 52px; font-weight: 700; letter-spacing: -0.04em; color: var(--accent); }
.pricing-euro { font-size: 24px; color: var(--accent); }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 12px;
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-decoration: none;
}
.pricing-card.featured .pricing-cta {
  background: var(--accent);
  color: #050d1a;
  border-color: var(--accent);
}
.pricing-cta:hover { opacity: 0.9; }
.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--fg-3);
  max-width: 500px;
  margin: 0 auto;
}

/* ── LANGUAGE ── */
.lang-section { padding: 100px 0; }
.lang-header { text-align: center; margin-bottom: 56px; }
.lang-header .section-sub { margin: 0 auto; }
.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.lang-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  transition: border-color 0.15s;
}
.lang-card:hover { border-color: var(--accent); }
.lang-flag { font-size: 48px; margin-bottom: 16px; }
.lang-name { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.lang-desc { font-size: 15px; color: var(--fg-2); line-height: 1.6; }

/* ── FORMAT INFO ── */
.format-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.format-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.format-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.format-name { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.format-pages { font-size: 14px; color: var(--fg-2); margin-bottom: 12px; }
.format-desc { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-a {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  padding: 0 0 22px 0;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-icon { font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0 120px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg), var(--bg-2));
  border-top: 1px solid var(--border);
}
.final-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-sub {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 40px;
}
.final-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.final-trust span { font-size: 14px; color: var(--fg-3); display: flex; align-items: center; gap: 8px; }
.final-trust span::before { content: '•'; color: var(--accent); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.footer-copy { font-size: 13px; color: var(--fg-2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--fg-2); transition: color 0.15s; }
.footer-links a:hover { color: var(--fg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-right { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .genres-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { order: -1; }
  .lang-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 32px; }
  .section-inner { padding: 0 20px; }
  .genres-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 16px; }
  .pricing-amount { font-size: 40px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}