* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fefeff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.social-proof-ticker {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    width: 100%;
    display: block;
}

.social-proof-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(139, 92, 246, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite; /* Even slower speed for comfortable reading */
    font-size: 14px;
    font-weight: 500;
    will-change: transform;
    transform: translateX(0);
}

.ticker-item {
    display: inline-block;
    padding: 0 60px;
    position: relative;
}

.ticker-item::before {
    content: "🎉";
    margin-right: 8px;
    font-size: 16px;
    animation: bounce 2s infinite;
}

.ticker-item:nth-child(even)::before {
    content: "💼";
}

.ticker-item:nth-child(3n)::before {
    content: "📊";
}

.ticker-item:nth-child(4n)::before {
    content: "⚡";
}

.ticker-item:nth-child(5n)::before {
    content: "🚀";
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.brand-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon::before {
    content: "⚡";
    color: white;
    font-size: 12px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 640px;
    line-height: 1.6;
    font-weight: 400;
}

.input-group {
    margin-bottom: 16px;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInForm 0.4s ease-out;
}

.step-header {
    margin-bottom: 24px;
    text-align: center;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: #9ca3af;
}

.step-number.active {
    background: #6366f1;
    color: white;
}

.step-number.completed {
    background: #10b981;
    color: white;
}


.button-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.button-group .cta-button {
    flex: 1;
    margin-bottom: 0;
}

.cta-button.secondary {
    background: #f3f4f6;
    color: #374151;
}

.cta-button.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, #6366f1, #06b6d4);
}

.input-field {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    color: #6b7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.input-field:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}



.cta-button {
    width: 100%;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    min-width: 200px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}
.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.input-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #374151;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon::before {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spinning-globe {
    position: relative;
    width: 400px;
    height: 400px;
}

.globe {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #1e40af);
    box-shadow: 
        inset -20px -20px 40px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.globe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
}

.continents {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.continent {
    position: absolute;
    background: rgba(34, 197, 94, 0.8);
    border-radius: 50% 40% 60% 30%;
}

.continent-1 {
    width: 60px;
    height: 40px;
    top: 40%;
    left: 20%;
    transform: rotate(-20deg);
}

.continent-2 {
    width: 45px;
    height: 35px;
    top: 25%;
    left: 50%;
    transform: rotate(45deg);
}

.continent-3 {
    width: 35px;
    height: 50px;
    top: 55%;
    left: 65%;
    transform: rotate(-45deg);
}

.continent-4 {
    width: 25px;
    height: 25px;
    top: 30%;
    left: 75%;
    border-radius: 60% 40%;
}

.continent-5 {
    width: 40px;
    height: 30px;
    top: 60%;
    left: 15%;
    transform: rotate(30deg);
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: orbit 15s linear infinite;
}

.orbit-1 {
    width: 350px;
    height: 350px;
    top: 25px;
    left: 25px;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
    animation-duration: 25s;
    animation-direction: reverse;
}

.satellite {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.satellite-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.satellite-2 {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .spinning-globe {
        width: 300px;
        height: 300px;
    }

    .globe {
        width: 225px;
        height: 225px;
        top: 37px;
        left: 37px;
    }

    .orbit-1 {
        width: 262px;
        height: 262px;
        top: 19px;
        left: 19px;
    }

    .orbit-2 {
        width: 300px;
        height: 300px;
        top: 0;
        left: 0;
    }
    
    /* Mobile ticker optimizations */
    .ticker-content {
        animation: scroll-left-mobile 55s linear infinite; /* Even slower mobile speed for comfortable reading */
        font-size: 13px;
        transform: translateX(0);
    }
    
    .ticker-item {
        padding: 0 40px;
    }
    
    .social-proof-ticker {
        padding: 8px 0;
    }
}

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

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { animation: none;
    transform: translateY(-2px); }
}

@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-33.33%); }
}

@keyframes scroll-left-mobile {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-33.33%); }
}

@keyframes slideInForm {
    0% { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Results Section Styles */
.results-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Enhanced Analysis Styles */
.health-score {
    text-align: center;
    padding: 20px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    position: relative;
}

.score-circle.excellent { background: linear-gradient(135deg, #10b981, #059669); }
.score-circle.good { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.score-circle.fair { background: linear-gradient(135deg, #f59e0b, #d97706); }
.score-circle.poor { background: linear-gradient(135deg, #ef4444, #dc2626); }
.score-circle.critical { background: linear-gradient(135deg, #991b1b, #7f1d1d); }

.score-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.benchmarking-grid, .analysis-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benchmark-item, .analysis-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benchmark-item:last-child, .analysis-item:last-child {
    border-bottom: none;
}

.benchmark-label, .analysis-label {
    font-weight: 500;
    color: #4b5563;
}

.benchmark-value, .analysis-value {
    font-weight: 600;
    color: #1a1a1a;
}

.performance-indicator {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.performance-indicator.above {
    background: #d1fae5;
    color: #065f46;
}

.performance-indicator.below {
    background: #fee2e2;
    color: #991b1b;
}

.performance-indicator.average {
    background: #fef3c7;
    color: #92400e;
}

.growth-projections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.projection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.projection-label {
    font-weight: 500;
    color: #4b5563;
}

.projection-value {
    font-weight: 600;
    color: #1a1a1a;
}

.recommendations-section {
    margin: 40px 0;
}

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

.recommendations-section h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.recommendations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.recommendation-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #6366f1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
    border-radius: 0 16px 0 100px;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.recommendation-card.critical {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

.recommendation-card.critical::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
}

.recommendation-card.high {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.recommendation-card.high::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), transparent);
}

.recommendation-card.medium {
    border-left-color: #3b82f6;
}

.recommendation-card.medium::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
}

.recommendation-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.recommendation-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.recommendation-card.critical .recommendation-icon {
    background: rgba(239, 68, 68, 0.1);
}

.recommendation-card.high .recommendation-icon {
    background: rgba(245, 158, 11, 0.1);
}

.recommendation-card.medium .recommendation-icon {
    background: rgba(59, 130, 246, 0.1);
}

.recommendation-title-section {
    flex: 1;
}

.recommendation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.recommendation-priority-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.priority-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.priority-description {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.recommendation-priority-badge.critical .priority-label {
    background: #fee2e2;
    color: #991b1b;
}

.recommendation-priority-badge.high .priority-label {
    background: #fef3c7;
    color: #92400e;
}

.recommendation-priority-badge.medium .priority-label {
    background: #dbeafe;
    color: #1e40af;
}

.recommendation-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

.recommendation-actions {
    margin-bottom: 24px;
}

.recommendation-actions h5 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-actions h5::before {
    content: '📋';
    font-size: 18px;
}

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-item {
    padding: 8px 0;
    color: #4b5563;
    font-size: 14px;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.action-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
    width: 16px;
    height: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommendation-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

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

.meta-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.meta-content {
    flex: 1;
}

.meta-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.financial-analysis-section {
    margin: 40px 0;
}

.financial-analysis-section h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.analysis-insights {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid #6366f1;
}

.insights-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-item {
    padding: 6px 0;
    color: #4b5563;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.insight-item::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 6px;
}

@media (max-width: 768px) {
    .recommendations-list {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card {
        padding: 20px;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .recommendation-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

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

.results-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.business-name {
    font-size: 1.2rem;
    color: #6366f1;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.valuation-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.valuation-card:hover {
    transform: translateY(-4px);
}

.valuation-card.main-value {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 40px 24px;
}

.valuation-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.main-value h3 {
    color: white;
}

.value-display {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-range {
    font-size: 1.1rem;
    opacity: 0.9;
}

.metrics-grid, .methods-grid, .risk-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric, .method, .risk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.metric:last-child, .method:last-child, .risk-item:last-child {
    border-bottom: none;
}

.metric-label, .method-label, .risk-label {
    font-weight: 500;
    color: #4b5563;
}

.metric-value, .method-value {
    font-weight: 600;
    color: #1a1a1a;
}

.risk-value {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.risk-low {
    background: #d1fae5;
    color: #065f46;
}

.risk-medium {
    background: #fef3c7;
    color: #92400e;
}

.risk-high {
    background: #fee2e2;
    color: #991b1b;
}

.recommendations-section {
    margin-bottom: 40px;
}

.recommendations-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.recommendations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.recommendation {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6366f1;
}

.recommendation h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.recommendation p {
    color: #4b5563;
    line-height: 1.6;
}

.report-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.confidence-score {
    font-size: 1.1rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 16px;
}

.disclaimer {
    color: #6b7280;
    font-size: 0.875rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .value-display {
        font-size: 2.5rem;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
    margin-top: 0;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 11px;
    line-height: 1.4;
    color: #6b7280;
    text-align: center;
}

.disclaimer-text strong {
    color: #374151;
    font-weight: 600;
}

/* Payment Step Styles */
.payment-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.payment-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.payment-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.value-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.preview-text {
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
    text-align: left;
}

.price-display {
    margin-bottom: 24px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #6366f1;
    display: block;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.payment-button {
    margin-bottom: 20px;
}

.payment-security {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.security-badge {
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

.money-back {
    font-size: 12px;
    color: #6b7280;
}

/* Pulse and glow animation for CTA button */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3), 0 0 0 0 rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35), 0 0 0 4px rgba(99, 102, 241, 0.15);
        transform: scale(1.01);
    }
    100% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3), 0 0 0 0 rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
}


/* Force reload */
