/* ============================================
   LP5-V3 — PREMIUM CONSEIL — Charte Navy Corp
   ============================================ */

:root {
    /* ── Charte Navy Corporate ── */
    --bg: #f4f5f7;              /* Fond page */
    --bg-card: #f0f4f8;         /* Fond encadré CTA */
    --bg-border: #dce3eb;       /* Bordures dérivées */
    --navy: #0d3b66;            /* Accent navy (titres, CTA, séparateurs) */
    --navy-light: #145a8a;      /* Navy hover */
    --navy-bg: rgba(13,59,102,0.06); /* Fond navy subtil */
    --text: #333333;            /* Texte corps */
    --text-light: #4a5568;      /* Texte secondaire */
    --text-muted: #7a8599;      /* Gris dérivé */
    --white: #FFFFFF;           /* Card email / fond card */
    --footer-bg: #0d3b66;      /* Footer fond */
    --footer-text: #c0d6e8;    /* Footer texte */
    --footer-links: #FFFFFF;   /* Footer liens */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--bg-border);
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-rule {
    width: 24px;
    height: 1px;
    background: var(--navy);
}

.logo-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--navy);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

/* HERO */
.hero {
    position: relative;
    padding: 100px 24px 80px;
    text-align: center;
    background: linear-gradient(175deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid var(--bg-border);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid var(--bg-border);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.hero-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.4s;
}

.hero-line {
    width: 50px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto 24px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.5s;
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--navy);
    border: 1.5px solid var(--navy);
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.75s;
}

.hero-cta:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
}

.hero-trust {
    margin-top: 28px;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.9s;
}

.hero-trust .sep { color: var(--navy); }

/* CREDENTIALS */
.credentials {
    padding: 50px 24px;
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
}

.credentials-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.credential-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 10px;
}

.credential-line {
    width: 20px;
    height: 1px;
    background: var(--navy);
    margin: 0 auto 10px;
}

.credential-label {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* TOPICS */
.topics {
    padding: 44px 24px;
    text-align: center;
}

.topics-inner {
    max-width: 700px;
    margin: 0 auto;
}

.topics-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
}

.topics-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.topic-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--navy);
    background: var(--navy-bg);
    border: 1px solid rgba(13,59,102,0.1);
}

/* EMAIL PREVIEW */
.email-preview {
    padding: 70px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--bg-border);
}

.email-preview-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.email-preview-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.email-preview-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 36px;
    line-height: 1.3;
}

.email-mock {
    background: var(--white);
    border: 1px solid var(--bg-border);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 24px rgba(13,59,102,0.06);
}

.email-mock-header {
    background: var(--navy);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-mock-logo {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
}

.email-mock-edition {
    font-size: 11px;
    font-weight: 300;
    color: var(--footer-text);
}

.email-mock-body {
    padding: 28px 24px;
}

.email-mock-article {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--bg-border);
}

.email-mock-article:first-child { padding-top: 0; }

.email-mock-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 2px;
    min-width: 24px;
    padding-top: 2px;
}

.email-mock-article strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.email-mock-article p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.email-mock-cta {
    margin: 24px 0 20px;
    padding: 14px 20px;
    background: var(--navy-bg);
    border: 1px solid rgba(13,59,102,0.12);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
}

.email-mock-signature {
    padding-top: 16px;
    border-top: 1px solid var(--bg-border);
}

.email-mock-signature p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.email-mock-signature strong {
    font-weight: 500;
    color: var(--text);
}

/* APPROACH */
.approach {
    padding: 80px 24px;
}

.approach-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.approach-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 48px;
    line-height: 1.3;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.approach-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--bg-border);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13,59,102,0.06);
}

.approach-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* QUIZ */
.quiz-section {
    padding: 40px 24px 80px;
    background: var(--bg-card);
    border-top: 1px solid var(--bg-border);
}

.quiz-outer {
    max-width: 560px;
    margin: 0 auto;
}

.quiz-intro {
    text-align: center;
    margin-bottom: 32px;
}

.quiz-intro-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}

.quiz-intro h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.quiz-intro p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}

.quiz-card {
    background: var(--white);
    border: 1px solid var(--bg-border);
    box-shadow: 0 4px 24px rgba(13,59,102,0.06);
}

.quiz-progress {
    height: 2px;
    background: var(--bg-border);
}

.quiz-progress-fill {
    height: 100%;
    background: var(--navy);
    width: 0%;
    transition: width 0.5s ease;
}

.quiz-body {
    padding: 36px 32px;
    min-height: 320px;
}

/* Q */
.q-screen { animation: fadeIn 0.4s ease; }
.q-context { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }

.q-title {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 28px;
    line-height: 1.4;
}

.q-answers { display: flex; flex-direction: column; gap: 8px; }

.q-answer {
    display: block;
    padding: 14px 18px;
    border: 1px solid var(--bg-border);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    text-align: left;
    width: 100%;
    transition: all 0.25s ease;
}

.q-answer:hover {
    border-color: var(--navy);
    background: var(--navy-bg);
}

.q-answer.selected {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.q-answer-icon { display: none; }

.q-answer-text strong { display: block; font-weight: 500; }
.q-answer-text small { display: block; font-size: 12px; font-weight: 300; opacity: 0.6; margin-top: 2px; }

/* Gate */
.gate-screen { animation: fadeIn 0.4s ease; }

.gate-check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

.gate-title {
    font-family: var(--font-display);
    font-size: 24px;
    text-align: center;
    color: var(--navy);
    margin-bottom: 4px;
}

.gate-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.gate-proof {
    padding: 10px 16px;
    background: var(--navy-bg);
    border: 1px solid rgba(13,59,102,0.12);
    font-size: 12px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 500;
}

.gate-form { display: flex; flex-direction: column; gap: 14px; }
.gate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.gate-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.gate-field input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--bg-border);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
}

.gate-field input::placeholder { color: var(--text-muted); font-weight: 300; }
.gate-field input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-bg); }
.gate-field input.error { border-color: #dc2626; animation: shake 0.4s; }

.gate-consent {
    padding: 12px;
    border: 1px solid var(--bg-border);
    background: var(--bg-card);
}

.gate-consent label {
    display: flex;
    gap: 10px;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.gate-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--navy); }

.gate-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--navy);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.gate-submit:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

.gate-secure {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
}

/* Date Input */
.q-date-group {
    max-width: 300px;
    margin: 0 auto;
}

.q-date-fields {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 24px;
}

.q-date-field { flex: 1; }
.q-date-field:last-child { flex: 1.4; }

.q-date-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.q-date-field input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid var(--bg-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.q-date-field input::placeholder { color: var(--bg-border); font-weight: 300; }
.q-date-field input:focus { border-color: var(--navy); }

.q-date-sep {
    font-size: 20px;
    color: var(--text-muted);
    padding-bottom: 14px;
    font-weight: 300;
}

.q-date-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--navy);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.q-date-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.q-date-submit:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* Confirm */
.confirm-screen { text-align: center; animation: fadeIn 0.4s ease; }

/* TESTIMONIAL */
.testimonial {
    padding: 70px 24px;
    border-top: 1px solid var(--bg-border);
}

.testimonial-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

blockquote p {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 16px;
}

blockquote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* FOOTER — Dark Navy */
.footer {
    padding: 36px 24px;
    background: var(--footer-bg);
    text-align: center;
}

.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-logo { font-size: 12px; font-weight: 600; letter-spacing: 4px; color: var(--footer-links); margin-bottom: 8px; }
.footer p { font-size: 11px; color: var(--footer-text); font-weight: 300; }
.footer-links { margin: 8px 0; display: flex; justify-content: center; gap: 20px; }
.footer-links a { font-size: 11px; color: var(--footer-links); text-decoration: none; font-weight: 300; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.7; }

/* FOOTER DISCLAIMER */
.footer-disclaimer {
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 10px;
    color: var(--footer-text);
    opacity: 0.55;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--white);
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border: 1px solid var(--bg-border);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--navy); }

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 6px;
}

.modal-content .modal-date {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 18px;
    margin-bottom: 6px;
}

.modal-content p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.modal-content a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.modal-content li {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 4px;
}

.modal-content code {
    font-size: 12px;
    background: var(--navy-bg);
    padding: 2px 6px;
    border: 1px solid rgba(13,59,102,0.1);
    font-family: monospace;
    color: var(--navy);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner p {
    font-size: 12px;
    color: var(--footer-text);
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: var(--white);
    color: var(--navy);
}

.cookie-accept:hover { background: #e8ecf0; }

.cookie-refuse {
    background: transparent;
    color: var(--footer-text);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-refuse:hover { border-color: rgba(255,255,255,0.4); }

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TABLET ── */
@media (max-width: 768px) {
    .hero { padding: 60px 20px 50px; }
    .hero-title { font-size: 28px; }
    .hero-title br { display: none; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-cta { padding: 15px 32px; font-size: 13px; }
    .hero-trust { flex-direction: column; gap: 4px; }
    .hero-trust .sep { display: none; }

    .credentials-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .credential-num { font-size: 28px; }
    .credential-label { font-size: 11px; }

    .approach-grid { grid-template-columns: 1fr; gap: 16px; }
    .approach-card { padding: 24px 20px; }
    .approach-title { font-size: 26px; }
    .approach-title br { display: none; }

    .email-preview { padding: 50px 20px; }
    .email-preview-title { font-size: 26px; }
    .email-preview-title br { display: none; }
    .email-mock-header { flex-direction: column; gap: 4px; align-items: flex-start; }
    .email-mock-body { padding: 20px 16px; }
    .email-mock-article strong { font-size: 13px; }
    .email-mock-article p { font-size: 12px; }

    .quiz-body { padding: 28px 20px; }
    .gate-row { grid-template-columns: 1fr; }

    .testimonial { padding: 50px 20px; }
    blockquote p { font-size: 18px; }

    .modal-content { padding: 28px 20px; max-height: 85vh; }
    .modal { padding: 16px; }

    .cookie-inner { flex-direction: column; text-align: center; gap: 12px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}

/* ── MOBILE SMALL (375px) ── */
@media (max-width: 480px) {
    body { line-height: 1.6; }

    .header-inner { padding: 12px 16px; }
    .logo-text { font-size: 12px; letter-spacing: 4px; }
    .logo-rule { width: 16px; }
    .header-right span { font-size: 11px; }
    .header-right svg { width: 13px; height: 13px; }

    .hero { padding: 44px 16px 40px; }
    .hero::before { width: 320px; height: 320px; }
    .hero::after { width: 200px; height: 200px; }
    .hero-tag { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }
    .hero-title { font-size: 25px; margin-bottom: 14px; }
    .hero-line { margin-bottom: 16px; }
    .hero-sub { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
    .hero-cta { display: block; width: 100%; padding: 16px; font-size: 13px; text-align: center; }
    .hero-trust { margin-top: 20px; font-size: 11px; gap: 3px; }

    .credentials { padding: 32px 16px; }
    .credentials-inner { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .credential-num { font-size: 24px; }
    .credential-label { font-size: 10px; }

    .topics { padding: 32px 16px; }
    .topics-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 14px; }
    .topics-tags { gap: 6px; }
    .topic-tag { padding: 6px 12px; font-size: 11px; }

    .email-preview { padding: 40px 16px; }
    .email-preview-tag { font-size: 10px; }
    .email-preview-title { font-size: 22px; margin-bottom: 24px; }
    .email-mock-header { padding: 12px 16px; }
    .email-mock-logo { font-size: 10px; letter-spacing: 3px; }
    .email-mock-edition { font-size: 10px; }
    .email-mock-body { padding: 16px 14px; }
    .email-mock-article { gap: 10px; padding: 12px 0; }
    .email-mock-num { font-size: 10px; min-width: 20px; }
    .email-mock-article strong { font-size: 13px; }
    .email-mock-article p { font-size: 12px; }
    .email-mock-cta { padding: 12px 16px; font-size: 13px; margin: 16px 0 14px; }
    .email-mock-signature p { font-size: 12px; }

    .approach { padding: 48px 16px; }
    .approach-tag { font-size: 10px; letter-spacing: 2px; }
    .approach-title { font-size: 23px; margin-bottom: 32px; }
    .approach-grid { gap: 12px; }
    .approach-card { padding: 20px 16px; }
    .approach-num { font-size: 10px; margin-bottom: 10px; }
    .approach-card h3 { font-size: 17px; margin-bottom: 6px; }
    .approach-card p { font-size: 13px; line-height: 1.6; }

    .quiz-section { padding: 32px 16px 60px; }
    .quiz-intro-tag { font-size: 10px; letter-spacing: 2px; }
    .quiz-intro h2 { font-size: 22px; }
    .quiz-intro p { font-size: 13px; }
    .quiz-body { padding: 24px 16px; min-height: 280px; }
    .q-title { font-size: 19px; margin-bottom: 20px; }
    .q-context { font-size: 10px; }
    .q-answer { padding: 12px 14px; font-size: 13px; }
    .q-answer-text small { font-size: 11px; }
    .q-date-group { max-width: 260px; }
    .q-date-field input { font-size: 18px; padding: 12px 0; }
    .q-date-sep { font-size: 18px; padding-bottom: 12px; }
    .q-date-submit { padding: 14px; font-size: 13px; }
    .gate-title { font-size: 20px; }
    .gate-sub { font-size: 12px; }
    .gate-proof { font-size: 11px; padding: 8px 12px; }
    .gate-field input { padding: 12px; font-size: 13px; }
    .gate-submit { padding: 14px; font-size: 13px; }
    .gate-consent label { font-size: 10px; }

    .testimonial { padding: 40px 16px; }
    blockquote p { font-size: 17px; line-height: 1.5; }
    blockquote cite { font-size: 12px; }

    .footer { padding: 28px 16px; }
    .footer-disclaimer p { font-size: 9px; }

    .modal { padding: 10px; }
    .modal-content { padding: 24px 16px; max-height: 90vh; }
    .modal-content h2 { font-size: 19px; }
    .modal-content h3 { font-size: 13px; }
    .modal-content p { font-size: 12px; }
    .modal-content li { font-size: 12px; }

    .cookie-banner { padding: 12px 16px; }
    .cookie-banner p { font-size: 11px; }
    .cookie-btn { padding: 8px 16px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
