/* ===== BETA PAGE — ADDITIONAL STYLES ===== */
/* These styles supplement style.css for new sections */

/* ===== PROBLEM SECTION (replaces solutions) ===== */
.problem-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.problem-section .container {
    position: relative;
    z-index: 1;
}

/* ===== TIMELINE CENTERING (Phase 5 centered under row) ===== */
.how-it-works .timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.how-it-works .timeline .timeline-item {
    flex: 0 1 calc(25% - 1.5rem);
    min-width: 220px;
}

/* ===== ACCUSATION AUDIT ===== */
.accusation-section {
    padding: 6rem 0;
    background: #0d0d14;
}

.accusation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.accusation-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accusation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.accusation-objection {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.4;
}

.accusation-response p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.accusation-response strong {
    color: var(--text-main);
}

/* ===== FUTURE SELF VISUALIZATION ===== */
.future-self-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0d0d14, var(--bg-dark));
}

.future-self-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.future-self-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.future-self-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.future-self-kicker {
    font-weight: 700;
    font-size: 1.3rem !important;
    color: var(--text-main) !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* ===== DISQUALIFICATION SECTION ===== */
.disqualification-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.disqualification-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disqualification-box h2 {
    margin-bottom: 2.5rem;
}

.disqualification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.disqualification-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248, 113, 113, 0.04);
    border: 1px solid rgba(248, 113, 113, 0.12);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.disqualification-item:hover {
    border-color: rgba(248, 113, 113, 0.3);
}

.disqualification-icon {
    color: #f87171;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.disqualification-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.disqualification-item strong {
    color: var(--text-main);
}

/* ===== DYNAMIC SCARCITY BANNER ===== */
.scarcity-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.08), rgba(251, 146, 60, 0.08));
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 12px;
    margin: 1.5rem auto 3rem;
    max-width: 500px;
    text-align: center;
    font-size: 1.05rem;
    color: #fbbf24;
}

.scarcity-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: scarcity-pulse 2s ease-in-out infinite;
}

@keyframes scarcity-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== VALUE STACK ===== */
.value-stack {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.value-stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.value-stack-item:last-child {
    border-bottom: none;
}

.value-stack-label {
    color: var(--text-main);
    font-weight: 500;
}

.value-stack-value {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.value-stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(59, 130, 246, 0.06);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.strikethrough {
    text-decoration: line-through;
    color: #f87171;
    font-size: 1.1rem;
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.guarantee-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.guarantee-box strong {
    color: var(--text-main);
}

/* ===== TESTIMONIAL NOTE ===== */
.testimonial-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    opacity: 0.7;
}

/* ===== CTA VALUE LIST ===== */
.cta-value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.cta-value-item {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

/* ===== FOUNDER CTA ===== */
.founder-cta {
    margin-top: 2rem;
}

/* ===== 4-COLUMN PRICING GRID ===== */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-grid-4 .pricing-card {
    padding: 2.5rem 2rem;
}

/* Included badge for required retainer */
.included-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Optional add-on badge */
.optional-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Coming soon teaser */
.coming-soon-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    opacity: 0.7;
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 900px) {
    .accusation-grid {
        grid-template-columns: 1fr;
    }

    .disqualification-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .future-self-content p {
        font-size: 1.05rem;
    }

    .future-self-kicker {
        font-size: 1.1rem !important;
    }

    .scarcity-banner {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }

    .guarantee-box {
        padding: 2rem;
    }

    .cta-value-list {
        flex-direction: column;
        align-items: center;
    }

    .cta-value-item {
        width: 100%;
        text-align: center;
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
}
