*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-dark: #115E59;
  --text-on-dark: #FFFBEB;
  --bg-light: #FFFBEB;
  --text-on-light: #374151;
  --bg-accent: #FBBF24;
  --text-on-accent: #115E59;
  --bg-muted: #ECFDF5;
  --text-on-muted: #115E59;
  --font-head: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; }
.surface-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.surface-light { background: var(--bg-light); color: var(--text-on-light); }
.surface-accent { background: var(--bg-accent); color: var(--text-on-accent); }
.surface-muted { background: var(--bg-muted); color: var(--text-on-muted); }
.surface-dark a, .surface-light a, .surface-accent a, .surface-muted a { color: currentColor; text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(3rem, 5vw, 3.5rem); min-height: 1em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(100% - 2rem, var(--max-w)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 100; padding: 1rem 0; box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; text-decoration: none; }
.main-nav ul { display: flex; list-style: none; gap: 1.25rem; padding: 0; margin: 0; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: 0.9375rem; }
.main-nav a.active { font-weight: 700; text-decoration: underline; }
.nav-toggle { display: none; background: transparent; border: 1px solid currentColor; border-radius: var(--radius); padding: 0.4rem 0.75rem; cursor: pointer; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 600; font-size: 0.9375rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; }
.btn-accent { background: var(--bg-accent); color: var(--text-on-accent); border-color: var(--bg-accent); }
.btn-outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn-dark { background: var(--bg-dark); color: var(--text-on-dark); border-color: var(--bg-dark); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem; }
.hero-serial { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.hero-caption { font-size: 0.75rem; font-style: italic; margin-top: 0.5rem; }
.trust-strip { font-size: 0.75rem; margin-top: 1.5rem; }

.hero-magazine { min-height: 85vh; display: flex; align-items: center; padding: 6rem 0 4rem; }
.hero-magazine-grid { display: grid; grid-template-columns: 8% 38% 54%; gap: 0 2rem; align-items: start; position: relative; }
.hero-vertical-label { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.2em; font-weight: 700; margin-top: 5rem; }
.hero-mag-main { padding-top: 5rem; }
.hero-mag-photo img { border-radius: 8px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .hero-magazine { min-height: 70vh; } .hero-magazine-grid { grid-template-columns: 1fr; } .hero-vertical-label { writing-mode: horizontal-tb; transform: none; margin: 0 0 1rem; } .hero-mag-main { padding-top: 0; } }
section { padding: 4rem 0; }
.page-hero { padding: 7rem 0 3rem; }
.section-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.card img { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.module-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 4px; background: var(--bg-accent); color: var(--text-on-accent); margin-bottom: 0.75rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; margin-top: 2rem; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 2rem; }
.disclaimer-box { border-left: 4px solid var(--bg-dark); padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 0.9375rem; border-radius: 0 var(--radius) var(--radius) 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1.25rem 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(0,0,0,0.2); border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9375rem; }
.form-check input { margin-top: 0.25rem; width: auto; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table th, .price-table td { border: 1px solid rgba(0,0,0,0.12); padding: 0.75rem 1rem; text-align: left; }
.price-table th { font-family: var(--font-head); }
.program-list { display: flex; flex-direction: column; gap: 2rem; }
.site-footer { padding: 3rem 0 1.5rem; font-size: 0.875rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { text-decoration: none; }
.disclaimer { font-size: 0.8125rem; line-height: 1.5; margin-top: 0.75rem; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.15); }
.cookie-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cookie-inner p { margin: 0; flex: 1; min-width: 240px; font-size: 0.875rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-custom { width: 100%; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-custom.hidden { display: none; }
.cookie-custom label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.875rem; }
.breadcrumb { font-size: 0.875rem; margin-bottom: 0.5rem; }
.legal-content h2 { margin-top: 2rem; }
.error-page { min-height: 70vh; display: flex; align-items: center; }
.js .reveal { transform: translateY(16px); transition: transform 0.5s ease, opacity 0.5s ease; }
.js .reveal.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { transform: none; transition: none; } }
@media (max-width: 900px) { .grid-2, .grid-3, .stat-grid, .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .nav-toggle { display: block; } .main-nav { display: none; width: 100%; } .main-nav.is-open { display: block; } .main-nav ul { flex-direction: column; gap: 0.75rem; } .header-cta { display: none; } }
