/* =========================================================================
   Detecta A.I - Premium Dark Theme Styles (RED THEME)
   ========================================================================= */

   :root {
    --bg-dark: #07090f;
    --bg-darker: #040508;
    --text-primary: #e2e8f0;
    --text-muted: #94a3b8;
    
    --accent-red: #ff2a46;
    --accent-red-glow: rgba(255, 42, 70, 0.4);
    
    --accent-purple: #ff2a46; /* Changed globally to red per user request */
    --accent-purple-glow: rgba(255, 42, 70, 0.4);
    
    --success-green: #10b981;
    --warning-yellow: #fbbf24;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --danger-glass-bg: rgba(255, 42, 70, 0.05);
    --danger-glass-border: rgba(255, 42, 70, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 42, 70, 0.15), transparent 50%),
                      radial-gradient(circle at 50% 100%, rgba(255, 42, 70, 0.05), transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pt-section { padding-top: 5rem; }
.pb-section { padding-bottom: 5rem; }

.text-gradient {
    /* Subtle gradient purely in dark blood reds */
    background: linear-gradient(90deg, #ff2a46, #ff001e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-red {
    color: var(--accent-red);
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff2a46, #d9001b);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
    box-shadow: 0 4px 15px var(--accent-red-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-red-glow);
}

.cta-btn-sm {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cta-btn-sm:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-red);
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--accent-red);
    box-shadow: inset 0 0 10px rgba(255, 42, 70, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 42, 70, 0.1);
}

.max-btn {
    width: 100%;
    font-size: 1.15rem;
    padding: 1.25rem 2rem;
}

/* Glass Panels */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.danger-glass {
    background: var(--danger-glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--danger-glass-border);
    border-radius: 16px;
    box-shadow: inset 0 0 30px rgba(255, 42, 70, 0.05);
}

/* Badges */
.badge-wrapper { margin-bottom: 1.5rem; }
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 42, 70, 0.1);
    border: 1px solid rgba(255, 42, 70, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff9ca8;
    letter-spacing: 0.5px;
}

/* Variables Utilities */
.hidden { display: none !important; }

.ios-emoji {
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.25em;
    display: inline-block;
}

/* =========================================================================
   LAYOUT SECTIONS 
   ========================================================================= */

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--bg-darker) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo .highlight {
    color: var(--accent-red);
}

/* Hero */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-red-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(60px);
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: #fff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3rem;
}
.hero-cta-group { margin-top: 2rem; }
.hero .sub-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Grid Layouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--transition-medium);
}
.feature-card:hover { transform: translateY(-5px); }
.icon-ring {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,42,70,0.15), rgba(255,0,30,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.icon { font-size: 1.8rem; }
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #fff;
}

/* Split Layout */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.layout-split.align-start { align-items: flex-start; }

.benefits-list, .offer-benefits-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.benefits-list li, .offer-benefits-list li {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

/* Report Mockup */
.report-mockup {
    overflow: hidden;
    position: relative;
}
.mockup-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--glass-border);
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.mockup-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.mockup-body {
    padding: 2rem;
    position: relative;
}
.critical-text {
    color: var(--accent-red);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 1.5rem;
}
.skeleton-text {
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    border-left: 3px solid var(--accent-red);
}

.blur-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--glass-bg));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blur-overlay span {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Upload Section & Quiz */
.upload-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Quiz UI */
.quiz-header { text-align: center; margin-bottom: 2rem; }
.step-counter {
    color: var(--accent-red);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.step-counter.green-text { color: var(--success-green); }

.quiz-step { display: none; text-align: center;}
.quiz-step.active { display: block; animation: fadeIn 0.4s ease; }
.quiz-step h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.4; /* NEW: Adjust line-height for longer questions */
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px; /* INCREASED: to accommodate 4 options elegantly */
    margin: 0 auto;
}
.quiz-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #e2e8f0;
    padding: 1.1rem 1.5rem; /* ADJUSTED: padding for long text */
    font-size: 1.05rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left; /* NEW: Left align texts in buttons */
}
.quiz-btn:hover {
    background: rgba(255,42,70,0.15);
    border-color: var(--accent-red);
}

/* Quiz Result UI */
.quiz-result {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease;
}
.result-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(255,255,255,0.03);
}
.risk-label {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}
.risk-value {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.risk-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Upload UI */
.upload-header { text-align: center; margin-bottom: 2rem; }

.tutorial-box { margin-bottom: 2rem; }
.tutorial-toggle {
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}
.tutorial-toggle:hover {
    background: rgba(255,255,255,0.05);
}
.tutorial-toggle h4 { color: #cbd5e1; font-weight: 500; font-family: var(--font-body); }
.tutorial-content {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--glass-border);
    border-top: none;
    margin-top: -5px;
}
.step-row {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}
.step-row .num {
    background: var(--accent-red);
    color: #fff;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.dropzone {
    border: 2px dashed rgba(255,42,70,0.4);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}
.dropzone:hover {
    background: rgba(255,42,70,0.05);
    border-color: var(--accent-red);
}
.dropzone-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.dropzone h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}
.dropzone code {
    color: var(--accent-red);
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.secure-badge {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

/* Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.stars {
    color: var(--warning-yellow);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.review-card p {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}
.author-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #475569, #1e293b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: bold;
}
.author-info strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.author-info span {
    color: var(--success-green);
    font-size: 0.8rem;
}

/* Trust Footer */
.guarantee-box {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.glow-border {
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.icon-lg { font-size: 3rem; margin-bottom: 1rem; }
.guarantee-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Social Proof Toast */
.proof-toast {
    position: fixed;
    top: 20px;
    right: -350px;
    width: 300px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #10b981;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(16,185,129,0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.proof-toast.show {
    right: 20px;
    opacity: 1;
}
@media (max-width: 768px) {
    .proof-toast {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 350px;
        top: -100px;
        transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    }
    .proof-toast.show {
        top: 20px;
        left: 50%;
        right: auto;
    }
}
.proof-icon {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.proof-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
}
.proof-text strong {
    font-weight: 800;
}
.proof-time {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.2rem;
}

.faq-item {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: 1px solid var(--glass-border);
}
.faq-item summary {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 1.5rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--accent-red);
    font-size: 1.6rem;
    font-weight: bold;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    padding-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    color: #475569;
    font-size: 0.9rem;
}

/* =========================================================================
   MODALS & INTERACTIVE ELEMENTS 
   ========================================================================= */

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-box {
    width: 100%;
    max-width: 600px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

/* Analysis Modal Specifics */
.radar-animation {
    width: 80px; height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radar-dot {
    width: 20px; height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-red);
    z-index: 2;
}
.radar-ripple {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    animation: ripple 1.5s linear infinite;
}

/* Progress Bar */
.progress-container { margin: 2rem 0; }
.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff001e, var(--accent-red));
    border-radius: 10px;
    transition: width 0.3s ease;
}
.progress-status-flex {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 600;
}
.percentage { color: #fff; font-size: 1.2rem; }
.time-left { color: var(--text-muted); }

/* Clean Status Text replacing old Terminal */
.clean-status-box {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    min-height: 80px; /* NEW: Prevent layout shifts */
    display: flex;
    align-items: center;
    justify-content: center;
}
.clean-status-box .status-msg {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.3s ease;
}

/* Modal Specific Overrides */
#resultModal {
    background: transparent; 
}

/* Fake Report Background inside Result Modal */
.fake-report-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 4rem 2rem;
    background: var(--bg-darker);
    z-index: 1; 
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}
.fake-report-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 5, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.fake-header {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(255, 42, 70, 0.6);
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255,42,70,0.2);
    padding-bottom: 1rem;
}
.fake-line {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
}
.fake-line.highlight {
    border-left: 3px solid rgba(255,42,70,0.5);
    color: rgba(255,255,255,0.6);
}
.fake-graphic {
    height: 120px;
    background: linear-gradient(90deg, transparent, rgba(255,42,70,0.1), transparent);
    margin: 1.5rem 0;
    border-radius: 8px;
}

.blurred-paywall {
    background: rgba(10, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 42, 70, 0.3);
}

.timer-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 191, 36, 0.05);
    border: 1px dashed var(--warning-yellow);
    border-radius: 8px;
}
.timer-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--warning-yellow);
    font-family: monospace;
}
.timer-subtext {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-top: 5px;
}

/* Inline Modals & New Result Paywall */
.inline-modal {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    background: transparent !important;
}
.inline-fake {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
}

.lock-icon-circle {
    width: 80px; height: 80px;
    background: rgba(255,42,70,0.1);
    border: 2px solid rgba(255,42,70,0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}
.result-subtext {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.scarcity-box {
    margin: 0 0 2rem;
    padding: 1.25rem;
    border: 1px dashed rgba(255,42,70,0.5);
    border-radius: 8px;
    background: rgba(255,42,70,0.05);
}
.scarcity-box p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.timer-text { font-family: monospace; }
.text-warning {
    color: var(--warning-yellow) !important;
}
.prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 5px;
}
.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}
.price-new {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}
.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin: 1.5rem 0 2rem;
}
.link-muted {
    color: #64748b;
    font-size: 0.95rem;
    text-decoration: underline;
    transition: 0.2s;
}
.link-muted:hover { color: #fff; }

/* =========================================================================
   ANIMATIONS 
   ========================================================================= */

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse 2s infinite ease-in-out; }

@keyframes pulse-hard {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
.pulse-hard { animation: pulse-hard 1s infinite ease-in-out; }

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 var(--accent-red-glow); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.pulse-border { animation: pulse-border 2s infinite; }

@keyframes glow-pulse {
    0% { box-shadow: 0 0 5px var(--accent-red); }
    50% { box-shadow: 0 0 15px var(--accent-red); }
    100% { box-shadow: 0 0 5px var(--accent-red); }
}
.glow-pulse { animation: glow-pulse 2s infinite; }

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

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

/* =========================================================================
   MEDIA QUERIES 
   ========================================================================= */

@media (max-width: 768px) {
    .layout-split { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero { padding-top: 8rem; }
    .upload-wrapper { padding: 2rem 1rem; }
    .modal-box { padding: 2rem 1.5rem; }
    .dropzone { padding: 2rem 1rem; }
    .price-current strong { font-size: 2rem; }
    
    /* NEW: mobile adjustments for UI spacing */
    .pt-section { padding-top: 2rem; }
    .pb-section { padding-bottom: 2rem; }
    .quiz-step h3 { font-size: 1.2rem; }
}

/* =========================================================================
   FLOATING WHATSAPP SUPPORT
   ========================================================================= */
.whatsapp-support-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.whatsapp-support-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    color: #fff;
}

.whatsapp-support-btn::before {
    content: "●";
    color: #fff;
    font-size: 0.6rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
