/* Zero2Scale Custom Styles - Royal Purple Theme */
:root {
    --zero2scale-primary: #1e40af;
    --zero2scale-secondary: #3b82f6;
    --zero2scale-light: #dbeafe;
    --zero2scale-dark: #1e3a8a;
}

.zero2scale-hero {
    background: linear-gradient(135deg, var(--zero2scale-primary) 0%, var(--zero2scale-dark) 100%);
}

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: white;
}

.program-hero {
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.program-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.program-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Who It's For Section */
.who-its-for {
    padding: 100px 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--zero2scale-light);
    transition: all 0.3s ease;
}

.audience-item:hover {
    border-color: var(--zero2scale-primary);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--zero2scale-primary);
}

.audience-icon i {
    color: var(--zero2scale-primary) !important;
}

.audience-item h3 {
    color: var(--zero2scale-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.audience-item p {
    color: var(--text-secondary);
}

/* What's Included Section */
.whats-included {
    padding: 100px 0;
    background: var(--soft-white);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--zero2scale-primary);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--zero2scale-primary);
}

.offer-icon i {
    color: var(--zero2scale-primary) !important;
}

.offer-item h3 {
    color: var(--zero2scale-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses {
    padding: 100px 0;
    background: var(--zero2scale-dark);
    color: white;
}

.bonuses .section-title {
    color: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--zero2scale-secondary);
}

.bonus-item h4 {
    color: var(--zero2scale-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bonus-item p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bonus-value {
    color: var(--zero2scale-secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Timeline Section */
.program-timeline {
    padding: 100px 0;
    background: white;
}

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

.timeline-week {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid var(--zero2scale-primary);
    position: relative;
}

.week-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--zero2scale-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-week h3 {
    color: var(--zero2scale-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.timeline-week ul {
    list-style: none;
    padding: 0;
}

.timeline-week li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-week li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--zero2scale-primary);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--soft-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--zero2scale-primary);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--zero2scale-dark);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.result-metric {
    color: var(--zero2scale-primary);
    font-weight: 800;
    font-size: 1.5rem;
    display: block;
}

.result-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scarcity and Guarantee */
.scarcity-guarantee {
    padding: 100px 0;
    background: white;
}

.scarcity-guarantee .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.scarcity-block,
.guarantee-block {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
}

.scarcity-block {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.scarcity-block h3 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scarcity-block p {
    color: #78350f;
    margin-bottom: 1.5rem;
}

.spots-remaining {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spots-number {
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.spots-text {
    color: #92400e;
    font-weight: 600;
}

.guarantee-block {
    background: var(--zero2scale-light);
    border: 2px solid var(--zero2scale-primary);
}

.guarantee-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.guarantee-badge span {
    background: var(--zero2scale-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.guarantee-block h3 {
    color: var(--zero2scale-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-block p {
    color: var(--zero2scale-dark);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--zero2scale-primary);
    color: white;
    text-align: center;
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: white;
}

.pricing {
    margin: 2rem 0;
}

.price-strike {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.final-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.payment-info {
    opacity: 0.8;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: #fbbf24;
    color: var(--zero2scale-dark);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .program-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas,
    .final-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-grid,
    .offer-grid,
    .bonus-grid,
    .timeline-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .scarcity-guarantee .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
