:root {
  --bg: #f7f5f2;
  --ink: #1c1620;
  --text: #1c1620;
  --text-muted: #6b6270;
  --border: #e3ded8;
  --accent: #6d3b5c;
  --accent-dark: #4f2942;
  --accent-soft: #efe1ea;
  --card-bg: #ffffff;
  --radius: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }
.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

.advertorial-bar { background: var(--ink); color: rgba(255,255,255,0.85); text-align: center; font-size: 12px; padding: 9px 16px; }

.topnav { background: var(--ink); }
.topnav-inner { max-width: 1040px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 800; font-size: 18px; text-decoration: none; color: #fff; }
.topnav nav { display: flex; gap: 20px; }
.topnav nav a { font-size: 13px; text-decoration: none; color: rgba(255,255,255,0.75); font-weight: 600; }
.topnav nav a:hover { color: #fff; }

/* Hero band */
.hero-band { position: relative; min-height: 420px; display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.hero-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); opacity: 0.55; }
.hero-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,22,32,0.1) 0%, rgba(28,22,32,0.92) 85%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 60px 20px 40px; max-width: 1040px; margin: 0 auto; width: 100%; }
.hero-content .kicker { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #e3b9cf; margin: 0 0 12px; }
.hero-content h1 { font-size: clamp(26px, 4.5vw, 38px); line-height: 1.22; margin: 0 0 16px; max-width: 780px; font-weight: 800; }
.hero-content .dek { font-size: 15.5px; color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 0 14px; }
.hero-content .byline { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.hero-content .byline a { color: #fff; font-weight: 700; }

/* Lead body */
.lead-wrap { padding: 40px 0 10px; }
.lead-body { max-width: 720px; margin: 0 auto; font-size: 16px; }
.lead-body p { margin: 0 0 16px; }

/* Card grid */
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px 0 44px; }
.way-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.way-card:nth-child(5) { grid-column: 1 / -1; display: flex; gap: 0; align-items: stretch; }
.way-card:nth-child(5) .way-card-media { flex: 0 0 40%; aspect-ratio: auto; }
.way-card:nth-child(5) .way-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.way-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.way-card-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.85); transition: filter 0.3s; }
.way-card:hover .way-card-media img { filter: grayscale(0); }
.way-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.35); }
.way-card-body { padding: 20px 22px 24px; }
.way-card h3 { font-size: 18px; margin: 0 0 10px; }
.way-card p { font-size: 14px; margin: 0 0 10px; color: var(--text); }

@media (max-width: 760px) {
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(5) { flex-direction: column; }
  .way-card:nth-child(5) .way-card-media { flex: none; width: 100%; aspect-ratio: 16/10; }
}

/* Conclusion */
.conclusion { max-width: 720px; margin: 0 auto; padding: 30px 0 40px; border-top: 1px solid var(--border); }
.conclusion h2 { font-size: 21px; margin: 0 0 14px; }
.disclaimer-box { background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 8px; padding: 16px 18px; font-size: 13.5px; color: var(--text-muted); margin: 20px 0; }
.source-list { font-size: 12.5px; color: var(--text-muted); }

/* Quiz - tab style */
.quiz-section { background: var(--ink); color: #fff; padding: 50px 0; }
.quiz-section .kicker { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #e3b9cf; text-align: center; margin: 0 0 8px; }
.quiz-section h2 { text-align: center; font-size: 24px; margin: 0 0 8px; }
.quiz-intro { text-align: center; font-size: 14px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 30px; }
.quiz-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.quiz-tab-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; cursor: pointer; }
.quiz-tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.quiz-panel { display: none; max-width: 520px; margin: 0 auto; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 22px; }
.quiz-panel.active { display: block; }
.q-label { font-weight: 700; font-size: 14.5px; margin: 0 0 14px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-options label { font-size: 13.5px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; cursor: pointer; }
.quiz-options label:hover { border-color: var(--accent); }
.quiz-options input { margin-right: 8px; }
.quiz-submit { display: block; margin: 22px auto 0; background: var(--accent); color: #fff; border: none; padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: 14.5px; cursor: pointer; }
.quiz-submit:hover { background: #82466c; }
.quiz-result { max-width: 520px; margin: 18px auto 0; text-align: center; font-size: 14px; padding: 14px; border-radius: 10px; display: none; }
.quiz-result.visible { display: block; background: rgba(255,255,255,0.08); }
.quiz-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* PDF section */
.pdf-section { padding: 56px 0; }
.pdf-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px; max-width: 520px; margin: 0 auto; text-align: center; }
.pdf-card h2 { font-size: 22px; margin: 0 0 10px; }
.pdf-card > p { font-size: 14px; color: var(--text-muted); margin: 0 0 24px; }
.pdf-form { text-align: left; }
.pdf-form-label { display: block; font-size: 12.5px; font-weight: 700; margin: 12px 0 5px; }
.pdf-form input[type="text"], .pdf-form input[type="email"] { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; }
.pdf-form-consent { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-muted); margin: 16px 0; }
.hp { position: absolute; left: -9999px; }
.pdf-button { width: 100%; background: var(--accent); color: #fff; border: none; padding: 14px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; margin-top: 6px; }
.pdf-button:hover { background: var(--accent-dark); }
.pdf-form-note { font-size: 11.5px; color: var(--text-muted); margin-top: 12px; }
.pdf-download-state { display: none; text-align: center; }
.pdf-download-state.visible { display: block; }
.pdf-check { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pdf-download-btn { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: 13px 28px; border-radius: 999px; font-weight: 700; margin-top: 12px; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 40px 0; font-size: 13px; }
.footer-grid { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-grid h2 { font-size: 14px; color: #fff; margin: 0 0 8px; }
.footer-grid > div { flex: 1; min-width: 220px; }
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-legal-tabs { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-legal-tabs a { text-decoration: none; font-weight: 600; color: rgba(255,255,255,0.85); }
.footer-accordions details { margin-bottom: 8px; }
.footer-accordions summary { cursor: pointer; font-weight: 700; font-size: 13px; color: #fff; padding: 6px 0; }
.footer-accordions div p { margin: 8px 0; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.footer-note, .footer-bottom { font-size: 11.5px; margin-top: 16px; color: rgba(255,255,255,0.45); }
