/* ============================================================
   Teste de Arquétipos — Marconi Noleto · Grupo IFT
   Identidade visual herdada da Mentoria "O Propósito"
   ============================================================ */

:root {
    /* Paleta — alinhada ao site principal (tons quentes) */
    --bg-primary: #0B0A08;
    --bg-secondary: #100E0A;
    --bg-card: rgba(244, 239, 228, 0.035);
    --bg-card-hover: rgba(244, 239, 228, 0.06);
    --bg-input: rgba(11, 10, 8, 0.7);
    --border-color: rgba(198, 161, 91, 0.16);
    --border-focus: rgba(198, 161, 91, 0.45);

    --gold-primary: #C6A15B;
    --gold-light: #E8D5A8;
    --gold-dark: #7A5C2E;
    --gold-gradient: linear-gradient(120deg, #E8D5A8, #C6A15B 55%, #7A5C2E);
    --gold-glow: 0 0 25px rgba(198, 161, 91, 0.12);
    --gold-glow-strong: 0 8px 26px rgba(198, 161, 91, 0.28);

    --text-primary: #F4EFE4;
    --text-secondary: #9C9484;
    --text-muted: #6F6A5D;
    --text-light: #D8D0BE;

    --emerald: #C6A15B;
    --emerald-glow: 0 0 20px rgba(198, 161, 91, 0.18);

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Libre Bodoni', 'Bodoni 72', Georgia, serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients & Glows */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(198, 161, 91, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(122, 92, 46, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Grid & Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.font-serif {
    font-family: var(--font-serif);
    letter-spacing: 0.03em;
}

p {
    color: var(--text-secondary);
}

/* Highlight Text */
.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.01em;
    outline: none;
    padding: 15px 34px;
    position: relative;
    text-decoration: none;
    transition: var(--transition-medium);
}

.btn-primary {
    background: var(--gold-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--gold-glow);
    color: #141006;
}

.btn-primary:hover {
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Header & Brand */
header {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(11, 10, 8, 0.85);
    z-index: 50;
    transition: var(--transition-medium);
}

.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

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

.logo img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s var(--transition-medium);
}

.logo:hover img {
    transform: translateY(-1px);
}

.badge-header {
    background: rgba(198, 161, 91, 0.1);
    border: 1px solid rgba(198, 161, 91, 0.2);
    border-radius: 99px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    text-transform: uppercase;
}

/* SPA App Navigation States */
.app-section {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.app-section.active {
    display: block;
    opacity: 1;
}

/* Section 1: Landing Page */
.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.eyebrow {
    align-items: center;
    color: var(--gold-primary);
    display: inline-flex;
    font-size: 0.875rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    background: var(--gold-primary);
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
}

.hero-section .lead-text {
    font-size: 1.25rem;
    max-width: 780px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.trust-badges {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}

.trust-badge {
    align-items: center;
    color: var(--text-secondary);
    display: flex;
    font-size: 0.875rem;
    gap: 8px;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    border-top: 1px solid var(--border-color);
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-medium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.step-card:hover {
    border-color: rgba(198, 161, 91, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--gold-glow);
    background: var(--bg-card-hover);
}

.step-number {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Authority Section */
.authority-section {
    border-top: 1px solid var(--border-color);
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(122, 92, 46, 0.12) 0%, transparent 75%);
}

.authority-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.authority-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.authority-subtitle {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.authority-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
    margin-bottom: 48px;
}

.stat-item h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Call to Action Final Section */
.cta-final {
    border-top: 1px solid var(--border-color);
    padding: 100px 0;
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
    background: #070604;
}

.footer-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}


/* Section 2: Quiz Panel */
.quiz-section {
    padding: 60px 0;
    min-height: calc(100vh - 97px - 117px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-header {
    margin-bottom: 40px;
}

.quiz-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    height: 8px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-bar-fill {
    background: var(--gold-gradient);
    height: 100%;
    width: 0%;
    transition: width var(--transition-medium);
}

/* Card Quiz Transition Setup */
.quiz-card-wrapper {
    position: relative;
    min-height: 320px;
    width: 100%;
    overflow: hidden;
}

.quiz-card {
    background:
        radial-gradient(130% 90% at 50% 0%, rgba(198, 161, 91, 0.06), transparent 62%),
        var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px 46px 38px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-card.active {
    position: relative;
    transform: translateX(0);
    opacity: 1;
    z-index: 10;
}

/* Animations for slide out left, slide in right */
.quiz-card.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.quiz-card.enter-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

/* Animações reversas para o botão Voltar */
.quiz-card.exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.quiz-card.enter-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

/* Kicker + pergunta */
.quiz-card-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.quiz-card-kicker::before,
.quiz-card-kicker::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.45;
}

.question-text {
    font-size: 1.55rem;
    font-weight: 600;
    margin: 0 auto 10px;
    max-width: 620px;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.quiz-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 30px;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}

.option-btn {
    position: relative;
    background: linear-gradient(180deg, rgba(244, 239, 228, 0.035), rgba(244, 239, 228, 0.012));
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 12px 18px;
    overflow: hidden;
    transition: transform 0.25s var(--transition-medium), border-color 0.25s, background 0.25s, box-shadow 0.25s, color 0.25s;
}

/* Barra de intensidade (cresce de 1→5) */
.option-btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.22;
    transform: scaleX(var(--intensity, 0.2));
    transform-origin: left;
    transition: opacity 0.25s, transform 0.25s;
}

.option-btn:hover {
    background: rgba(244, 239, 228, 0.06);
    border-color: var(--border-focus);
    color: var(--text-light);
    transform: translateY(-3px);
}

.option-btn:hover::after {
    opacity: 0.5;
}

.option-btn.selected {
    background: rgba(198, 161, 91, 0.1);
    border-color: var(--gold-primary);
    color: var(--text-primary);
    box-shadow: var(--gold-glow);
}

.option-btn.selected::after {
    opacity: 1;
    transform: scaleX(1);
}

.option-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(198, 161, 91, 0.08);
    border: 1px solid rgba(198, 161, 91, 0.28);
    transition: all 0.25s var(--transition-medium);
}

.option-btn:hover .option-number {
    border-color: var(--gold-primary);
    background: rgba(198, 161, 91, 0.14);
}

.option-btn.selected .option-number {
    background: var(--gold-gradient);
    color: #141006;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(198, 161, 91, 0.35);
}

.option-label {
    font-size: 0.72rem;
    text-align: center;
    line-height: 1.35;
    font-weight: 500;
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.quiz-btn-voltar {
    visibility: hidden;
}

.quiz-btn-voltar.visible {
    visibility: visible;
}

/* Motivational Overlay */
.motivational-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.motivational-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.motivational-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.motivational-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 32px;
}

/* Section 3: Lead Capture Modal (Fullscreen Glassmorphic Popup) */
.lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 4, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lead-modal.active {
    display: flex;
    opacity: 1;
}

.lead-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--gold-glow);
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-medium);
}

.lead-modal.active .lead-modal-content {
    transform: scale(1);
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.lead-modal-eyebrow {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lead-modal-header h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.lead-modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 14px 16px;
    width: 100%;
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(198, 161, 91, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 28px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

/* Loading/Spinner States */
.btn-submit-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(20, 16, 6, 0.2);
    border-top: 2px solid #141006;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.btn-loading .spinner {
    display: inline-block;
}

.btn-loading .btn-submit-text {
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section 4: Results Container */
.results-section {
    padding: 80px 0;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header .eyebrow {
    margin-bottom: 16px;
}

.results-header h1 {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.results-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Archetypes Grid */
.archetypes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.archetype-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-medium);
}

.archetype-result-card:hover {
    border-color: rgba(198, 161, 91, 0.15);
    background: var(--bg-card-hover);
}

.archetype-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.archetype-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.archetype-rank {
    background: var(--gold-gradient);
    border-radius: 50%;
    color: #141006;
    font-family: var(--font-serif);
    font-weight: 700;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.archetype-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.archetype-score {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-primary);
}

/* Custom Progress Bar inside Results */
.result-progress-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 99px;
    height: 10px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.result-progress-fill {
    background: var(--gold-gradient);
    height: 100%;
    width: 0%;
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.archetype-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

/* Tie Breaker Note */
.tie-breaker-note {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(198, 161, 91, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 20px;
    display: none; /* Shown dynamically */
    line-height: 1.5;
}

.tie-breaker-note.visible {
    display: block;
}

/* Final Steps Section */
.results-next-steps {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.results-next-steps h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 16px;
}

.results-next-steps p {
    font-size: 1.05rem;
    margin-bottom: 36px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .authority-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 0;
    }
    
    .logo img {
        height: 42px;
    }

    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .hero-section .lead-text {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        display: inline-flex;
        margin-top: 24px;
        text-align: left;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .option-btn {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 14px 18px;
    }

    .option-number {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        flex: none;
    }

    .option-label {
        text-align: left;
        font-size: 0.9rem;
    }

    .quiz-card-wrapper {
        min-height: 460px;
    }

    .quiz-card {
        padding: 30px 22px 26px;
    }

    .question-text {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .quiz-hint {
        margin-bottom: 22px;
    }
    
    .lead-modal-content {
        padding: 32px 20px;
    }
    
    .authority-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
