/* Beta Program Page Styles */

/* Mobile Menu - Hidden by Default */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.mobile-nav-links li {
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-buttons .btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.beta-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.beta-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.beta-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.beta-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.beta-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.beta-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.beta-hero .stat {
    text-align: center;
}

.beta-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.beta-hero .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beta-hero .highlight-text {
            color: #ffd700;
        }

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.urgency-icon {
    font-size: 1.25rem;
}

.urgency-text {
    color: white;
    font-size: 15px;
}

.urgency-bar-mini {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.urgency-fill-mini {
    height: 100%;
    background: #10b981;
    border-radius: 3px;
}

/* Perks Section */
.beta-perks-section {
    padding: 100px 0;
    background: white;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.perk-card {
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.perk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.perk-card.featured {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eaff 100%);
    border: 2px solid var(--primary);
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.perk-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.perk-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* How It Works Timeline */
.beta-how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, #764ba2 100%);
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 1;
}

.step-marker .step-number {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Requirements Section */
.beta-requirements-section {
    padding: 100px 0;
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.requirements-info h2 {
    margin-top: 16px;
}

.requirements-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.req-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 14px;
}

.req-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.req-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Value Card */
.value-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border: 2px solid var(--primary);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.value-header {
    margin-bottom: 16px;
}

.value-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-price-display {
    margin-bottom: 8px;
}

.value-price-display .original {
    display: block;
    font-size: 2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.value-price-display .free-tag {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
}

.value-duration {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.value-savings {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.value-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-features li {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Apply Section */
.beta-apply-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.apply-form-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    padding: 24px 32px;
    background: var(--gradient-primary);
    color: white;
}

.form-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.google-form-container {
    padding: 32px;
}

.form-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.form-placeholder strong {
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* Sidebar Cards */
.apply-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.urgency-card {
    text-align: center;
    border: 2px solid #ff6b6b;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.urgency-icon-large {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.urgency-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.spots-counter {
    margin-top: 16px;
}

.spots-progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    border-radius: 4px;
}

.spots-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mini FAQ */
.mini-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-faq-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mini-faq-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Beta CTA */
.beta-cta {
    background: var(--gradient-primary);
}

/* Homepage Brief Section Styles */
.beta-program-brief {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.beta-program-brief::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.beta-brief-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.beta-brief-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.beta-brief-text .section-title {
    color: white;
    margin-top: 16px;
}

.beta-brief-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.beta-brief-highlights {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.25rem;
}

/* Beta Card Preview */
.beta-card-preview {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-gift {
    font-size: 4rem;
    margin-bottom: 16px;
}

.preview-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.preview-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.preview-spots {
    margin-top: 24px;
}

.spots-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spots-bar .spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    border-radius: 4px;
}

.preview-spots span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requirements-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .beta-hero {
        padding: 100px 0 50px;
    }
    
    .beta-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .beta-hero .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .beta-hero .stat-number {
        font-size: 1.75rem;
    }
    
    .beta-hero .stat-label {
        font-size: 12px;
    }
    
    .urgency-banner {
        padding: 10px 16px;
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .urgency-text {
        font-size: 13px;
    }
    
    .beta-perks-section {
        padding: 60px 0;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .perk-card {
        padding: 24px 20px;
    }
    
    .perk-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .perk-card h3 {
        font-size: 1.1rem;
    }
    
    .perk-card p {
        font-size: 14px;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-marker {
        width: 44px;
        height: 44px;
    }
    
    .timeline-step {
        gap: 20px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .apply-content {
        grid-template-columns: 1fr;
    }
    
    .apply-sidebar {
        order: -1;
    }
    
    .beta-brief-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .beta-brief-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .beta-brief-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .beta-program-brief {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .beta-hero {
        padding: 90px 0 40px;
    }
    
    .beta-hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .beta-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .beta-hero .stat-label {
        font-size: 11px;
    }
    
    .urgency-banner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px 14px;
    }
    
    .urgency-text {
        font-size: 12px;
    }
    
    .beta-perks-section {
        padding: 50px 0;
    }
    
    .perk-card {
        padding: 20px 16px;
    }
    
    .perk-icon {
        font-size: 2rem;
    }
    
    .perk-card h3 {
        font-size: 1rem;
    }
    
    .perk-card p {
        font-size: 13px;
    }
    
    .beta-brief-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    .step-marker {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 360px) {
    .beta-hero {
        padding: 85px 0 35px;
    }
    
    .beta-hero h1 {
        font-size: 1.4rem;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .beta-hero .stat-number {
        font-size: 1.25rem;
    }
    
    .perk-card {
        padding: 16px 14px;
    }
}