/* Practice Platform Styles */

.practice-page {
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Hero Section */
.practice-hero {
    background: linear-gradient(135deg, #1f6feb 0%, #1a5eda 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: -2rem -20px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.practice-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.practice-hero h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0 0 3rem;
    opacity: 0.8;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary-hero {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #1f6feb;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary-hero:hover {
    background: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary-hero {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    background: white;
    color: #1f6feb;
    transform: translateY(-2px);
}

/* Features Section */
.practice-features {
    padding: 4rem 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.practice-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.practice-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 3rem;
    color: var(--text-primary);
}

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

.feature-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 111, 235, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: var(--text-primary) !important;
}

.feature-card p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin: 0;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.demo-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 3rem;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.pricing-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 3rem;
    color: var(--text-primary);
}

.pricing-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-large);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom-left-radius: var(--radius);
}

.plan-name {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.plan-period {
    color: var(--text-secondary);
    margin: 0 0 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-cta {
    margin-top: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-large);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.btn-primary-large:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 111, 235, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .practice-hero h1 {
        font-size: 2.5rem;
    }
    
    .practice-hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-features h2,
    .demo-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }
}