/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 0;
    position: relative;
    z-index: 100;
}

.alert-bar {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

/* Main Content */
.main {
    padding-bottom: 60px;
}

/* Hero Section */
.hero {
    padding: 20px 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight {
    color: #fbbf24;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.quiz-disclaimer {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(10deg) !important;
    transition: none;
    position: relative;
}

.email-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(5deg) !important;
}

.email-header {
    background: #f3f4f6;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.email-dots {
    display: flex;
    gap: 8px;
}

.email-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.email-dots span:first-child {
    background: #ef4444;
}

.email-dots span:nth-child(2) {
    background: #f59e0b;
}

.email-dots span:last-child {
    background: #10b981;
}

.email-content {
    padding: 24px;
    text-align: center;
}

.spam-folder {
    background: #fef2f2;
    border: 2px dashed #ef4444;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.folder-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.folder-label {
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 4px;
}

.email-count {
    font-size: 0.9rem;
    color: #6b7280;
}

.money-lost {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ef4444;
    background: #fef2f2;
    padding: 12px;
    border-radius: 8px;
}

/* Quiz Section */
.quiz-section {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 10px auto 10px auto;
    padding: 20px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 800px;
}

.quiz-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
    width: 33.33%;
    transition: width 0.5s ease;
}

.progress-text {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.question-card {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    text-align: center;
    display: none;
}

.question-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.question-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
    flex-shrink: 0;
}

.options {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    flex-shrink: 0;
}

.option-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.option-btn:hover {
    border-color: #3b82f6;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.option-btn.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text {
    flex: 1;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 10px auto 10px auto;
    padding: 20px;
    text-align: center;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 800px;
}

.results-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.results-header {
    margin-bottom: 40px;
}

.results-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.results-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
    line-height: 1.2;
}

.urgency-banner {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
    margin-bottom: 32px;
}

.revenue-loss-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 16px;
    border: 2px solid #fecaca;
}

.loss-counter, .recovery-potential {
    text-align: center;
}

.loss-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 8px;
}

.recovery-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 8px;
}

.loss-label, .recovery-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
}

.loss-arrow {
    font-size: 2rem;
    color: #ef4444;
    font-weight: bold;
}

.solution-preview {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 4px solid #3b82f6;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.solution-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.proof-section {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proof-header {
    margin-bottom: 24px;
}

.proof-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    font-style: italic;
    border-left: 4px solid #3b82f6;
    padding-left: 16px;
}

.testimonial-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-highlight {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.final-cta-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #bae6fd;
}

.cta-urgency {
    margin-bottom: 24px;
}

.urgency-timer {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.btn-cta-enhanced {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 24px 40px;
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.btn-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta-enhanced:hover::before {
    left: 100%;
}

.btn-cta-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(45deg, #059669, #047857);
}

.cta-main {
    font-size: 1.3rem;
    font-weight: 800;
}

.cta-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.guarantee-icon {
    font-size: 1.1rem;
}

.guarantee-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

/* Sticky CTA */
/* Disclaimer */
.disclaimer {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.65rem;
    line-height: 1.5;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    margin-top: 0;
}

.disclaimer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main {
        padding-bottom: 50px;
    }
    
    .alert-bar {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 15px 0 10px;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .quiz-section,
    .results-section {
        padding: 16px;
        margin: 8px auto 8px auto;
        border-radius: 16px;
    }
    
    .question-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .results-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .results-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .urgency-banner {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    
    .revenue-loss-visual {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
        margin-bottom: 32px;
    }
    
    .loss-amount, .recovery-amount {
        font-size: 2rem;
    }
    
    .loss-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .solution-preview {
        padding: 24px 20px;
        margin-bottom: 32px;
    }
    
    .solution-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .solution-text {
        font-size: 1rem;
    }
    
    .proof-section {
        margin-bottom: 32px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-title {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .final-cta-section {
        padding: 32px 20px;
        margin-top: 32px;
    }
    
    .urgency-timer {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .btn-cta-enhanced {
        padding: 20px 32px;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    
    .cta-main {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .cta-sub {
        font-size: 0.85rem;
    }
    
    .guarantee-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .guarantee-item {
        padding: 10px 16px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .sticky-cta-content {
        display: none;
    }
    
    .email-mockup {
        max-width: 300px;
        transform: none !important;
        position: static;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .disclaimer {
        font-size: 0.6rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .alert-bar {
        font-size: 0.8rem;
        padding: 8px 12px;
        line-height: 1.4;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-cta-enhanced {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .btn-cta-enhanced {
        padding: 18px 24px;
    }
    
    .cta-main {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .cta-sub {
        font-size: 0.8rem;
    }
    
    .options {
        gap: 12px;
    }
    
    .option-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .quiz-section,
    .results-section {
        padding: 12px;
        margin: 6px auto 6px auto;
    }
    
    .results-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .results-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .urgency-banner {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .revenue-loss-visual {
        padding: 20px 12px;
        margin-bottom: 24px;
    }
    
    .loss-amount, .recovery-amount {
        font-size: 1.8rem;
    }
    
    .loss-label, .recovery-label {
        font-size: 0.8rem;
    }
    
    .solution-preview {
        padding: 20px 16px;
        margin-bottom: 24px;
    }
    
    .solution-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .solution-text {
        font-size: 0.95rem;
    }
    
    .proof-section {
        margin-bottom: 24px;
    }
    
    .proof-title {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonial-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 16px;
        padding-left: 12px;
    }
    
    .final-cta-section {
        padding: 24px 16px;
    }
    
    .urgency-timer {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 16px;
    }
    
    .guarantee-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .guarantee-text {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.55rem;
        padding: 6px 8px;
        line-height: 1.3;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-up {
    animation: slideUp 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-cta:focus,
.btn-sticky:focus,
.option-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}