/* Practice Section Container */
.practice-cta-section {
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* The Glowing Card */
.practice-card {
    background: var(--card-bg); /* Your semi-transparent purple */
    backdrop-filter: blur(12px); /* Blurs the background behind it */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(126, 87, 255, 0.3); /* Subtle border */
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(126, 87, 255, 0.15); /* Soft glow */
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(126, 87, 255, 0.25); /* Stronger glow on hover */
    border-color: var(--glow-color);
}

/* Typography */
.practice-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.practice-title span {
    color: var(--primary-btn); /* Highlights "Practice" in Orange */
}

.practice-desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature Badges (Optional visual candy) */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* The Main Button */
.btn-practice {
    background: var(--primary-btn);
    color: #fff; /* White text usually looks cleaner on orange than black */
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 155, 0, 0.4); /* Orange Glow */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-practice:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 155, 0, 0.6); /* Intense Orange Glow */
    background: #ffaa1a; /* Slightly lighter orange on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .practice-title { font-size: 1.8rem; }
    .btn-practice { width: 100%; justify-content: center; }
    .features-grid { display: none; /* Hide badges on mobile to save space */ }
}