/* ============================================
   VOTO CONSAPEVOLE - Stylesheet Condiviso
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --navy: #1e3a8a;
    --navy-light: #3b82f6;
    --green: #059669;
    --green-light: #10b981;
    --amber: #d97706;
    --red: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --text: var(--gray-900);
    --text-light: var(--gray-600);
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --border: var(--gray-200);
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --navy: #60a5fa;
        --navy-light: #93c5fd;
        --green: #34d399;
        --green-light: #6ee7b7;
        --amber: #fbbf24;
        --red: #f87171;
        --gray-50: #1f2937;
        --gray-100: #374151;
        --gray-200: #4b5563;
        --gray-300: #6b7280;
        --gray-600: #d1d5db;
        --gray-700: #e5e7eb;
        --gray-900: #f9fafb;
        --white: #111827;
        --text: var(--gray-900);
        --text-light: var(--gray-600);
        --bg: #0f172a;
        --bg-alt: #1e293b;
        --border: var(--gray-200);
        --shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
}

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

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

/* --- Utility --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden { display: none !important; }

/* --- Lucide Icon Base --- */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-lg {
    width: 40px;
    height: 40px;
}

.icon-xl {
    width: 48px;
    height: 48px;
}

/* --- Sticky Header --- */
.top-header {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.top-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
    .top-header {
        background: rgba(15, 23, 42, 0.95);
    }
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: white;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.88), rgba(5, 150, 105, 0.85)),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070') center/cover;
    color: white;
    padding: 48px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .hero {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.92), rgba(5, 150, 105, 0.9)),
                    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070') center/cover;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-icon {
    animation: fadeIn 0.6s ease-out both;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
    margin: 0 0 8px 0;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero-date {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero p {
    font-size: clamp(16px, 3vw, 20px);
    margin: 0 0 6px 0;
    opacity: 0.95;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 16px 0;
    animation: fadeInUp 0.7s ease-out 0.35s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
    text-align: center;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1.1;
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
    animation: fadeInUp 0.7s ease-out 0.45s both;
}

/* --- Buttons --- */
.btn {
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.btn-secondary {
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy-light);
}

.btn-secondary:hover {
    background: var(--navy-light);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* --- Sections --- */
.section {
    padding: 32px 20px;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px 0;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: white;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    margin: 0 0 8px 0;
    color: var(--navy);
}

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

/* --- Riforma Section --- */
.riforma-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.riforma-intro {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 16px 0;
    line-height: 1.7;
}

.riforma-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .riforma-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .riforma-grid { grid-template-columns: 1fr; }
}

.riforma-item {
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 12px;
    border-left: 4px solid var(--green);
}

.riforma-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin: 0 0 6px 0;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.riforma-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.highlight-box {
    background: var(--bg-alt);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--amber);
}

.highlight-box h4 {
    margin: 0 0 6px 0;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Pro / Contro --- */
.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.comparison-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.comparison-card.pro { border-top: 4px solid var(--green); }
.comparison-card.contro { border-top: 4px solid var(--red); }

.comparison-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card ul { list-style: none; }

.comparison-card li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    line-height: 1.6;
}

.comparison-card li:last-child { border-bottom: none; }

.comparison-card li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.comparison-card.pro li::before {
    content: '✓';
    color: var(--green);
}

.comparison-card.contro li::before {
    content: '✗';
    color: var(--red);
}

/* --- Ad Container --- */
.ad-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    min-height: 90px;
    text-align: center;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--border);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--text-light);
    border: 3px solid var(--bg);
    z-index: 1;
}
.timeline-item-active::before {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2);
    width: 15px;
    height: 15px;
    left: -26px;
    top: 5px;
}
.timeline-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Chi Dice Cosa --- */
.parties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) {
    .parties-grid { grid-template-columns: 1fr; }
}
.party-group {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid var(--border);
}
.party-group-yes { border-color: rgba(5, 150, 105, 0.3); }
.party-group-no { border-color: rgba(239, 68, 68, 0.3); }
.party-group-free { border-color: rgba(234, 179, 8, 0.3); }
.party-group-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.party-yes-title { color: var(--green); }
.party-no-title { color: var(--red); }
.party-free-title { color: #eab308; }
.party-card {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.party-card:last-child { border-bottom: none; }
.party-name { font-weight: 700; font-size: 15px; color: var(--text); }
.party-leader { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* --- Falsi Miti --- */
.myths-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.myth-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid var(--border);
}
.myth-claim {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    color: var(--text);
    margin-bottom: 8px;
}
.myth-verdict {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.myth-false { background: rgba(239, 68, 68, 0.12); color: var(--red); }
.myth-partial { background: rgba(234, 179, 8, 0.12); color: #ca8a04; }
.myth-explanation { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* --- FAQ --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 12px;
}
.faq-toggle .chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}
.faq-toggle.open .chevron { transform: rotate(180deg); }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-body.open { max-height: 400px; }
.faq-body p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Affluenza Placeholder --- */
.affluenza-placeholder {
    text-align: center;
    padding: 48px 24px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px dashed var(--border);
}
.affluenza-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}
.affluenza-placeholder p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* --- Footer --- */
footer {
    background: #0f172a;
    color: var(--gray-300);
    padding: 32px 20px 16px;
}

@media (prefers-color-scheme: dark) {
    footer { background: #020617; }
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: white;
    font-size: 16px;
}

.footer-section p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul { list-style: none; }

.footer-section li { margin-bottom: 8px; }

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-section a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 13px;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--green-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

.cookie-btn-accept:hover { background: var(--green-light); }

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    border-color: white;
}

/* ============================
   QUIZ-SPECIFIC STYLES
   ============================ */

/* Quiz Header */
.quiz-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: white;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

@media (prefers-color-scheme: dark) {
    .quiz-header {
        background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
    }
}

.quiz-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 8px;
}

.quiz-header p {
    opacity: 0.9;
    font-size: 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.back-link:hover { text-decoration: underline; }

/* Progress */
.progress-container {
    background: var(--bg-alt);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--green));
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Question Card */
.question-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.question-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Collapsible Explanation */
.question-explanation {
    background: var(--bg-alt);
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--amber);
    overflow: hidden;
}

.explanation-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    transition: background 0.2s;
    text-align: left;
}

.explanation-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
}

.explanation-toggle .chevron {
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.explanation-toggle.open .chevron {
    transform: rotate(180deg);
}

.explanation-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.explanation-body.open {
    max-height: 500px;
}

.explanation-body-inner {
    padding: 0 16px 14px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Question Statement */
.question-statement {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.5;
}

.question-instruction {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}

/* Scale */
.scale {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.scale-btn {
    padding: 16px 8px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.scale-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: white;
}

.scale-btn.selected {
    background: var(--green);
    color: white;
    border-color: var(--green);
    font-weight: 700;
    transform: scale(1.03);
}

.scale-number {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.scale-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .btn { flex: 1; }

/* Results */
.results { text-align: center; }

.results h2 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.result-circle {
    width: 170px;
    height: 170px;
    margin: 24px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.result-verdict {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    margin: 16px 0;
    color: var(--navy);
}

.result-description {
    font-size: 15px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

/* Dimension Breakdown */
.result-breakdown {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    text-align: left;
}

.result-breakdown h3 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 18px;
}

.dimension-item { margin-bottom: 16px; }

.dimension-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.dimension-bar {
    height: 8px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.dimension-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--green));
    border-radius: 8px;
    transition: width 0.6s ease;
}

/* Share Buttons */
.share-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.share-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 14px;
    color: var(--text);
    font-size: 16px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn-whatsapp { background: #25d366; }
.share-btn-facebook { background: #1877f2; }
.share-btn-x { background: #14171a; }
.share-btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-btn-copy { background: var(--gray-600); }

@media (prefers-color-scheme: dark) {
    .share-btn-x { background: #e7e9ea; color: #14171a; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero { padding: 32px 20px 28px; }
    .section { padding: 24px 20px; }
    .comparison { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
    .countdown { gap: 8px; }
    .countdown-item { min-width: 60px; padding: 10px 12px; }
    .countdown-number { font-size: 22px; }
    .countdown-label { font-size: 10px; }
    .header-nav { display: none; }

    /* Quiz responsive */
    .scale { grid-template-columns: repeat(5, 1fr); gap: 6px; }
    .scale-btn { padding: 12px 4px; }
    .scale-number { font-size: 20px; }
    .scale-label { font-size: 10px; }
    .question-card { padding: 20px; }
    .result-circle { width: 140px; height: 140px; font-size: 42px; }
    .nav-buttons { flex-direction: column; }
    .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
    .scale { grid-template-columns: repeat(5, 1fr); gap: 4px; }
    .scale-btn { padding: 10px 2px; }
    .scale-number { font-size: 18px; }
}

/* --- Privacy Policy Page --- */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-container h1 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: 8px;
}

.privacy-container h2 {
    font-family: var(--font-heading);
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 20px;
}

.privacy-container h3 {
    color: var(--text-light);
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 17px;
}

.privacy-container p {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.privacy-container ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.privacy-container li {
    margin-bottom: 6px;
    color: var(--text-light);
}

.privacy-container a { color: var(--navy); }
.privacy-container a:hover { text-decoration: underline; }

.last-update {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 24px;
}
