/* =====================================================
   QUIZ DO CRISTO V2 - VERSÃO SANGUINÁRIA
   Direct Response Agressivo | Alta Conversão
   ===================================================== */

/* Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-elevated: #22222e;
    
    --gold: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8962E;
    
    --danger: #E74C3C;
    --danger-dark: #C0392B;
    --danger-light: rgba(231, 76, 60, 0.15);
    
    --warning: #F39C12;
    --warning-light: rgba(243, 156, 18, 0.15);
    
    --success: #27AE60;
    --success-light: rgba(39, 174, 96, 0.15);
    
    --lavender: #B8A8D9;
    --blue: #6A8CAF;
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-danger: 0 0 30px rgba(231, 76, 60, 0.3);
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

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

/* =====================================================
   LOADER
   ===================================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
    animation: spin 1s linear infinite;
}

.loader-icon svg {
    width: 100%;
    height: 100%;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   QUIZ APP CONTAINER
   ===================================================== */
.quiz-app {
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quiz-app.visible {
    opacity: 1;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    z-index: 100;
}

.logo {
    height: 28px;
    width: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.progress-bar {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-card);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar.visible {
    opacity: 1;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--danger), var(--gold));
    transition: width 0.4s ease;
}

/* =====================================================
   SCREENS
   ===================================================== */
.screen {
    display: none;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 20px 40px;
}

.screen.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.screen-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   INTRO SCREEN - VERSÃO AGRESSIVA
   ===================================================== */
.intro-content {
    text-align: center;
    padding-top: 20px;
}

.intro-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeIn 0.5s ease 0.1s both;
}

.intro-badge.danger {
    background: var(--danger-light);
    border-color: rgba(231, 76, 60, 0.4);
    color: var(--danger);
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeIn 0.5s ease 0.2s both;
}

.intro-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    animation: fadeIn 0.5s ease 0.3s both;
}

.intro-subtitle strong {
    color: var(--danger);
}

/* Warning Block */
.intro-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--danger-light);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 24px;
    animation: fadeIn 0.5s ease 0.4s both;
}

.warning-icon {
    width: 24px;
    height: 24px;
    color: var(--danger);
    flex-shrink: 0;
}

.warning-icon svg {
    width: 100%;
    height: 100%;
}

.intro-warning p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.intro-warning strong {
    color: var(--danger);
}

.intro-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease 0.6s both;
}

.intro-footer p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 360px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--danger-dark), var(--danger));
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md), var(--shadow-danger);
    animation: fadeIn 0.5s ease 0.5s both;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(231, 76, 60, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

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

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   QUESTION SCREENS
   ===================================================== */
.question-number {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.question-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
}

.question-hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--danger);
    transform: translateX(4px);
}

.option-btn:active {
    transform: scale(0.98);
}

.option-btn.selected {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.1));
    border-color: var(--danger);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.2);
}

.option-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* =====================================================
   NAME SCREEN
   ===================================================== */
.name-screen {
    text-align: center;
}

.name-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.name-icon svg {
    width: 100%;
    height: 100%;
}

.name-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.name-form input {
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.name-form input::placeholder {
    color: var(--text-muted);
}

.name-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.name-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.name-trust svg {
    width: 14px;
    height: 14px;
}

/* =====================================================
   ANALYZING SCREEN
   ===================================================== */
.analyzing-content {
    text-align: center;
    padding: 40px 0;
}

.analyzing-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.analyzing-spinner {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--danger);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.analyzing-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.analyzing-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.analyzing-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.analyzing-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 0.7;
}

.step.completed svg {
    color: var(--success);
}

.step svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.step span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.analyzing-bar {
    height: 4px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.analyzing-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--danger), var(--gold));
    transition: width 0.3s ease;
}

/* =====================================================
   RESULT SCREEN - DIAGNÓSTICO
   ===================================================== */
.result-content {
    padding-bottom: 140px;
}

/* Diagnosis Header */
.diagnosis-header {
    text-align: center;
    margin-bottom: 24px;
}

.diagnosis-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--danger-light);
    border: 1px solid rgba(231, 76, 60, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    margin-bottom: 16px;
}

.diagnosis-alert svg {
    width: 16px;
    height: 16px;
}

.diagnosis-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.diagnosis-title span {
    color: var(--gold);
}

/* Severity Block */
.severity-block {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.severity-meter {
    margin-bottom: 16px;
}

.meter-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.meter-bar {
    height: 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--warning), var(--danger));
    border-radius: var(--radius-full);
    transition: width 1.5s ease-out;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.severity-level {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.severity-percent {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--danger);
}

/* Mirror Block */
.mirror-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.mirror-block h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.mirror-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mirror-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--danger-light);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius-md);
}

.mirror-item svg {
    width: 18px;
    height: 18px;
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}

.mirror-item span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Consequences Block */
.consequences-block {
    background: linear-gradient(135deg, var(--bg-card), rgba(231, 76, 60, 0.1));
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.consequences-block h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--danger);
    margin-bottom: 16px;
    text-align: center;
}

.consequences-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consequence-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.consequence-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Good News Block */
.good-news-block {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.good-news-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.good-news-icon svg {
    width: 100%;
    height: 100%;
}

.good-news-block h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.good-news-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.good-news-block p:last-child {
    margin-bottom: 0;
}

.good-news-block span {
    color: var(--gold);
}

.good-news-block strong {
    color: var(--text-primary);
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
    border: 2px solid rgba(231, 76, 60, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.urgency-banner.critical {
    animation: urgentPulse 2s ease infinite;
}

@keyframes urgentPulse {
    0%, 100% { border-color: rgba(231, 76, 60, 0.4); }
    50% { border-color: rgba(231, 76, 60, 0.8); }
}

.urgency-icon {
    width: 36px;
    height: 36px;
    color: var(--danger);
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
}

.urgency-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.urgency-text {
    display: flex;
    flex-direction: column;
}

.urgency-text span:first-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.urgency-timer {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--danger);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

/* Solution Card */
.solution-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.2);
    margin-bottom: 24px;
}

.solution-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 20px;
}

.solution-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-desc strong {
    color: var(--gold);
}

/* How it works */
.solution-how {
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.solution-how h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.how-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.how-item div strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.how-item div span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Price */
.solution-price {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.price-anchor {
    margin-bottom: 12px;
}

.price-anchor span:first-child {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-today {
    margin-bottom: 12px;
}

.price-today > span:first-child {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.price-installment {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.price-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--success-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--success);
}

.price-savings svg {
    width: 16px;
    height: 16px;
}

/* Includes */
.solution-includes {
    text-align: left;
    margin-bottom: 24px;
}

.solution-includes h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.solution-includes ul {
    list-style: none;
}

.solution-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-includes li:last-child {
    border-bottom: none;
}

.solution-includes li.bonus {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    margin: 0 -12px;
    padding: 12px;
    border-radius: var(--radius-md);
    border-bottom: none;
}

.include-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solution-includes li div strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.solution-includes li div span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* CTA Button */
.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    animation: ctaPulse 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.5);
}

.btn-cta:active {
    transform: scale(0.98);
}

.btn-cta.final {
    background: linear-gradient(135deg, var(--danger-dark), var(--danger));
    box-shadow: var(--shadow-md), var(--shadow-danger);
}

.btn-cta.final:hover {
    box-shadow: var(--shadow-lg), 0 0 50px rgba(231, 76, 60, 0.5);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: var(--shadow-md), var(--shadow-glow); }
    50% { box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.5); }
}

/* Solution Guarantee */
.solution-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--success-light);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-md);
    margin-top: 20px;
    text-align: left;
}

.solution-guarantee svg {
    width: 32px;
    height: 32px;
    color: var(--success);
    flex-shrink: 0;
}

.solution-guarantee strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--success);
}

.solution-guarantee span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Social Proof Urgent */
.social-proof-urgent {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.proof-item.live {
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.proof-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-light);
    border-radius: 50%;
    color: var(--success);
    flex-shrink: 0;
}

.proof-icon.pulse {
    background: var(--danger-light);
    position: relative;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.proof-icon svg {
    width: 16px;
    height: 16px;
}

.proof-item strong {
    color: var(--gold);
}

/* Testimonials */
.testimonials-section {
    margin-bottom: 32px;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--success);
}

.testimonials-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 75%;
    scroll-snap-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--bg-primary);
    transition: transform 0.3s ease;
}

.play-overlay:hover .play-btn {
    transform: scale(1.1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.testimonial-name {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--success);
    margin-top: 12px;
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Final Push */
.final-push {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sunk-cost {
    margin-bottom: 24px;
}

.sunk-cost p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.sunk-cost p:last-child {
    margin-bottom: 0;
}

.sunk-cost span {
    color: var(--gold);
    font-weight: 600;
}

.sunk-cost strong {
    color: var(--text-primary);
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.final-guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.final-warning {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--danger);
}

/* Footer */
.footer {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
}

.footer-logo {
    height: 24px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =====================================================
   FIXED CTA (MOBILE)
   ===================================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 20px;
    background: linear-gradient(to top, var(--bg-primary) 85%, transparent);
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.fixed-cta.visible {
    display: flex;
}

.fixed-timer {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--danger);
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .fixed-cta {
        display: none !important;
    }
}

/* =====================================================
   PURCHASE NOTIFICATION
   ===================================================== */
.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 16px;
    right: 16px;
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}

.purchase-notification.visible {
    transform: translateY(0);
    opacity: 1;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender), var(--gold));
    border-radius: 50%;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.notification-avatar svg {
    width: 20px;
    height: 20px;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.notification-action {
    font-size: 0.75rem;
    color: var(--success);
}

.notification-badge {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.notification-badge svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .purchase-notification {
        left: auto;
        right: 20px;
        bottom: 20px;
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 768px) {
    .intro-title {
        font-size: 2.25rem;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .testimonial-slide {
        flex: 0 0 250px;
    }
    
    .result-content {
        padding-bottom: 40px;
    }
}

@media (max-width: 359px) {
    .intro-title {
        font-size: 1.5rem;
    }
    
    .question-title {
        font-size: 1.125rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
}

/* Safe area for notch devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .result-content {
        padding-bottom: calc(160px + env(safe-area-inset-bottom));
    }
    
    .fixed-cta {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

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