@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:   #1c2e4a;
  --gold:   #c8aa6e;
  --bg:     #f9f8f5;
  --surface: #ffffff;
  --border: #e4e0d8;
  --muted:  #8a8680;
  --text:   #1c2e4a;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(28,46,74,0.07);
}

html { font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ── Navbar ── */
.navbar {
  height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.navbar .brand-icon {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.navbar .brand-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.navbar .brand-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); }
.navbar .nav-right { display: flex; align-items: center; gap: 1.5rem; }
.navbar .nav-right a { font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.navbar .nav-right a:hover { color: var(--navy); }
.navbar .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
}

/* ── Page container ── */
.page { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); font-weight: 600; margin-bottom: 0.4rem; }
.page-header p { color: var(--muted); font-size: 0.95rem; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ── Feature Boxes ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.feature-box:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(28,46,74,0.1); transform: translateY(-2px); }
.feature-box:hover::before { transform: scaleX(1); }
.feature-box.disabled { opacity: 0.5; pointer-events: none; }
.feature-box .box-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(200,170,110,0.12);
  display: flex; align-items: center; justify-content: center;
}
.feature-box .box-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-box h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); font-weight: 600; }
.feature-box p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.feature-box .arrow { margin-top: auto; font-size: 0.82rem; color: var(--gold); font-weight: 500; display: flex; align-items: center; gap: 0.3rem; }

/* ── Upload zone ── */
.upload-zone {
  display: block;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg);
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--gold); background: rgba(200,170,110,0.05); }
.upload-zone .upload-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.upload-zone h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.upload-zone p { font-size: 0.85rem; color: var(--muted); }
.upload-zone input[type=file] { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #1a2a45; }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-gold:hover { background: #b89a5c; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }

/* ── Result area ── */
.result-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap;
  min-height: 200px;
}
.result-box.loading { display: flex; align-items: center; justify-content: center; color: var(--muted); }

/* ── Quiz ── */
.quiz-question { margin-bottom: 2rem; }
.quiz-question h4 { font-size: 1rem; color: var(--navy); margin-bottom: 1rem; font-weight: 500; }
.quiz-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.15s;
}
.quiz-option:hover { border-color: var(--gold); background: rgba(200,170,110,0.04); }
.quiz-option.correct { border-color: #27ae60; background: rgba(39,174,96,0.06); color: #1e8449; }
.quiz-option.wrong { border-color: #e74c3c; background: rgba(231,76,60,0.06); color: #c0392b; }
.quiz-option.selected { border-color: var(--gold); }

/* ── Paywall banner ── */
.paywall-banner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.paywall-banner h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.3rem; }
.paywall-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── Progress / Spinner ── */
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Misc ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-gold { background: rgba(200,170,110,0.15); color: #8a6820; }
.badge-active { background: rgba(39,174,96,0.12); color: #1e8449; }
.badge-inactive { background: rgba(231,76,60,0.1); color: #c0392b; }

.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── Utility ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.btn-block { width: 100%; padding: 0.875rem; font-size: 0.95rem; justify-content: center; }

@media (max-width: 640px) {
  .page { padding: 1.5rem 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 1rem; }
  .paywall-banner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════
   LOGIN PAGE
   ════════════════════════════════════════════════════════════════ */
.login-page { display: flex; min-height: 100vh; }
.login-split { display: flex; width: 100%; }
.login-left {
  flex: 1;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.login-left::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,170,110,0.18);
}
.login-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200,170,110,0.1);
}
.login-brand { display: flex; align-items: center; gap: 0.75rem; }
.login-brand-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.login-brand-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.login-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; letter-spacing: 0.01em; }
.left-hero { z-index: 1; }
.left-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.left-hero h1 em { font-style: italic; color: var(--gold); }
.left-hero p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.left-footer { z-index: 1; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.left-footer a { color: inherit; }
.login-right {
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--bg);
}
.login-box { width: 100%; max-width: 360px; }
.login-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.login-box .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.tab-row { display: flex; margin-bottom: 2rem; border-bottom: 1.5px solid var(--border); }
.tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.2s;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 500; color: var(--navy);
  margin-bottom: 0.4rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.field input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--navy); background: var(--bg);
  transition: border-color 0.2s; box-sizing: border-box;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: var(--muted); }
.forgot { text-align: right; margin-top: -0.75rem; margin-bottom: 1.25rem; }
.forgot a { font-size: 0.82rem; color: var(--muted); text-decoration: none; }
.forgot a:hover { color: var(--gold); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-error { color: #c0392b; font-size: 0.85rem; margin-bottom: 1rem; display: none; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }
.form-note a { color: var(--gold); }
@media (max-width: 768px) {
  .login-left { display: none; }
  .login-right { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   DASHBOARD PAGE
   ════════════════════════════════════════════════════════════════ */
.stats-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-card { flex: 1; min-width: 200px; }
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.stat-value { font-weight: 500; color: var(--navy); }

/* ════════════════════════════════════════════════════════════════
   ANALYSE PAGE
   ════════════════════════════════════════════════════════════════ */
.analyse-page { max-width: 780px; }
.step { display: none; }
.step.active { display: block; }
.steps-indicator { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 2rem; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.3s; }
.step-dot.done { background: var(--gold); }
.step-connector { height: 1px; width: 40px; background: var(--border); }
.file-preview {
  display: none; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  margin-top: 1rem;
}
.file-icon {
  width: 40px; height: 40px;
  background: rgba(200,170,110,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.file-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.file-info .file-name { font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.file-info .file-size { font-size: 0.8rem; color: var(--muted); }
.file-remove { margin-left: auto; padding: 0.4rem 0.8rem; font-size: 0.82rem; }
.upload-actions { margin-top: 1.5rem; display: flex; justify-content: flex-end; }
.loading-state { text-align: center; padding: 3rem 1rem; }
.loading-spinner { width: 36px; height: 36px; margin: 0 auto 1.5rem; }
.loading-text { color: var(--muted); font-size: 0.95rem; }
.quiz-grid { display: flex; flex-direction: column; gap: 2rem; }
.quiz-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.quiz-result-box { text-align: center; padding: 2rem; }
.score { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--navy); }
.score-text { color: var(--muted); margin-top: 0.5rem; }
.download-section {
  background: var(--navy); border-radius: var(--radius);
  padding: 2rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
}
.download-section h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.3rem; }
.download-section p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.result-actions { margin-top: 1.5rem; display: flex; gap: 1rem; }
.error-msg { color: #c0392b; margin-bottom: 1rem; }
.error-retry { margin-top: 1rem; }

/* ════════════════════════════════════════════════════════════════
   ABO PAGE
   ════════════════════════════════════════════════════════════════ */
.abo-page { max-width: 860px; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.plan-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.2s; position: relative;
}
.plan-card.featured { border-color: var(--gold); }
.plan-card.featured::before {
  content: 'Empfohlen';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.2rem 1rem; border-radius: 100px;
}
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); }
.plan-desc { font-size: 0.82rem; color: var(--muted); }
.plan-price { display: flex; align-items: baseline; gap: 0.3rem; }
.plan-price .amount { font-size: 2.25rem; font-weight: 600; color: var(--navy); }
.plan-price .period { font-size: 0.9rem; color: var(--muted); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text); }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.plan-features li.no::before { content: '✕'; color: var(--muted); }
.plan-features li.no { color: var(--muted); }
.pay-methods { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.pay-badge {
  padding: 0.3rem 0.75rem; border: 1px solid var(--border);
  border-radius: 6px; font-size: 0.78rem; color: var(--muted); font-weight: 500;
}
.current-plan {
  background: rgba(200,170,110,0.08); border: 1.5px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.current-plan[hidden] { display: none; }
.current-plan h3 { font-size: 1rem; color: var(--navy); font-weight: 500; }
.current-plan p { font-size: 0.85rem; color: var(--muted); }
.abo-note { font-size: 0.8rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.7; }
.abo-note a { color: var(--gold); }
.abo-note strong { color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES (AGB / DATENSCHUTZ)
   ════════════════════════════════════════════════════════════════ */
.legal-content { max-width: 740px; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { font-size: 0.92rem; line-height: 1.8; color: #3a3a3a; margin-bottom: 0.5rem; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--gold); }
.legal-content .highlight-box {
  background: rgba(200,170,110,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.legal-content .highlight-box p { font-weight: 500; color: var(--navy); margin: 0; }
.legal-footer-note { font-size: 0.8rem; color: var(--muted); }

/* ── Success page ── */
.success-page { max-width: 560px; margin: 6rem auto; padding: 2rem; text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.success-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.success-page p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }

/* ════════════════════════════════════════════════════════════════
   LANDING PAGE (index.html)
   ════════════════════════════════════════════════════════════════ */
.landing-page {
  --navy: #0f1e33;
  --navy2: #1c2e4a;
  --gold2: #e8d0a0;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #7a7570;
  --border: #e4dfd6;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.landing-page nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(15,30,51,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,170,110,0.15);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #fff; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 0.55rem 1.25rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold2); color: var(--navy); }

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5vw 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,170,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,170,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-circle {
  position: absolute; right: -10vw; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1.5px solid rgba(200,170,110,0.12); pointer-events: none;
}
.hero-circle-2 {
  position: absolute; right: -6vw; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(200,170,110,0.08); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(200,170,110,0.35); border-radius: 100px;
  padding: 0.35rem 1rem; font-size: 0.78rem; color: var(--gold2);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05; color: #fff; font-weight: 400;
  margin-bottom: 1.5rem; animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.75;
  max-width: 520px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.btn-hero-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.95rem 2.25rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-hero-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-hero-secondary {
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 0.95rem 2.25rem; border-radius: 8px; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold2); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Trust bar */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.25rem 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); }
.trust-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Sections */
.landing-page section { padding: 100px 5vw; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy); line-height: 1.15; font-weight: 400; margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 540px; }

/* Features */
.features-section { background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 4rem;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.feature-cell {
  padding: 2.5rem; background: var(--white);
  border-right: 1px solid var(--border);
  transition: background 0.25s; cursor: default;
}
.feature-cell:nth-child(2n) { border-right: none; }
.feature-cell:nth-child(n+3) { border-top: 1px solid var(--border); }
.feature-cell:hover { background: #fdf9f3; }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: rgba(200,170,110,0.2);
  line-height: 1; margin-bottom: 1.25rem;
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(200,170,110,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.feature-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-cell h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.75rem; font-weight: 600; }
.feature-cell p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.feature-tag {
  display: inline-block; margin-top: 1.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(200,170,110,0.1); border-radius: 100px;
  font-size: 0.75rem; color: #8a6820; font-weight: 500;
}

/* How it works */
.how-section { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border);
  cursor: default; transition: padding-left 0.2s;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.how-step:hover { padding-left: 0.5rem; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: var(--gold); line-height: 1; flex-shrink: 0; width: 32px;
}
.step-content h4 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.how-visual {
  background: var(--navy); border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 64px rgba(15,30,51,0.2); position: relative;
}
.how-visual-bar {
  background: rgba(255,255,255,0.06); padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.dot-y { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
.how-visual-body { padding: 1.75rem; }
.mock-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.mock-line { height: 10px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-bottom: 0.6rem; }
.mock-line.w90 { width: 90%; }
.mock-line.w75 { width: 75%; }
.mock-line.w60 { width: 60%; }
.mock-line.w45 { width: 45%; }
.mock-gold { height: 10px; background: rgba(200,170,110,0.3); border-radius: 4px; margin-bottom: 0.6rem; width: 85%; }
.mock-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 1rem 0; }
.mock-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(200,170,110,0.15); border-radius: 6px;
  padding: 0.35rem 0.75rem; font-size: 0.72rem; color: var(--gold2);
}
.mock-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mock-download {
  margin-top: 1.5rem;
  background: rgba(200,170,110,0.9); border-radius: 6px;
  padding: 0.6rem 1rem; font-size: 0.78rem;
  color: #0f1e33; font-weight: 500; display: inline-block;
}

/* Pricing */
.pricing-section { background: var(--white); }
.pricing-header { text-align: center; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 760px; margin: 3.5rem auto 0;
}
.pricing-card {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 2.25rem;
  transition: border-color 0.2s, transform 0.2s; position: relative;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--gold); background: #fdf9f2; }
.pricing-card .badge-recommended {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.73rem; font-weight: 600; padding: 0.2rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.4rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.3rem; margin: 1rem 0; }
.pricing-price .chf { font-size: 1rem; color: var(--muted); }
.pricing-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--navy); line-height: 1; }
.pricing-price .period { font-size: 0.85rem; color: var(--muted); }
.pricing-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.pricing-features li { font-size: 0.88rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.pricing-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 0.875rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.2s;
}
.btn-plan-outline { border: 1.5px solid var(--navy2); color: var(--navy2); }
.btn-plan-outline:hover { background: var(--navy2); color: #fff; }
.btn-plan-gold { background: var(--gold); color: var(--navy); }
.btn-plan-gold:hover { background: var(--gold2); }
.pay-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.pay-icon { font-size: 0.73rem; padding: 0.2rem 0.6rem; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 1.5rem; }

/* CTA */
.cta-section { background: var(--navy); text-align: center; padding: 100px 5vw; }
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 2.5rem; }

/* Footer */
.landing-page footer {
  background: #080f1a; padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(200,170,110,0.1);
}
.landing-page footer .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; width: 100%; margin-top: 0.5rem; line-height: 1.6; }

/* Landing responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .landing-page section { padding: 70px 5vw; }
}
