/* Academy Specific Styles - Design Clean e Profissional */

/* ===== HERO SECTION ===== */
.academy-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('trading.jpeg') center center/cover no-repeat;
    pointer-events: none;
}

.academy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);
    pointer-events: none;
}

.academy-hero .page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.academy-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.academy-hero .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.academy-hero .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.academy-hero .hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.academy-hero .hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.academy-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.academy-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.academy-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.academy-hero .academy-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.academy-hero .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #1e3a8a;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 5;
    min-width: 100px;
}

.academy-hero .floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.academy-hero .floating-card i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.academy-hero .card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.academy-hero .card-2 {
    top: 20px;
    right: 20px;
    animation-delay: 2s;
}

.academy-hero .card-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 4s;
}

.academy-hero .card-4 {
    bottom: 20px;
    right: 20px;
    animation-delay: 6s;
}

.academy-hero .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* ===== ACADEMY OVERVIEW ===== */
.academy-overview {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.overview-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.2;
}

.overview-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.academy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.academy-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.academy-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.academy-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.academy-feature p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}



/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.course-card.featured {
    border: 2px solid #1e3a8a;
    transform: scale(1.02);
}

.course-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.course-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.course-level.beginner {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.course-level.intermediate {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.course-level.advanced {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.course-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.course-header p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.course-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-content.expanded {
    padding: 2rem;
    max-height: 1000px;
}

.course-content.expanded .btn-primary {
    display: inline-block;
}

.course-content .btn-primary {
    display: none;
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail:hover {
    background: #e2e8f0;
    transform: translateX(3px);
}

.detail i {
    color: #1e3a8a;
    font-size: 1rem;
}

.course-topics h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.course-topics ul {
    list-style: none;
    margin-bottom: 2rem;
}

.course-topics li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
    font-size: 1rem;
    background: rgba(30, 58, 138, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
}

.original-price {
    font-size: 1.1rem;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 500;
}

.course-actions {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expand-btn {
    background: none;
    border: none;
    color: #1e3a8a;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-height: 44px;
    touch-action: manipulation;
    padding: 0.8rem 1rem;
}

@media (max-width: 768px) {
    .expand-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        border: 1px solid #1e3a8a;
        border-radius: 8px;
        background: rgba(30, 58, 138, 0.05);
    }
    
    .expand-btn:hover {
        background: rgba(30, 58, 138, 0.1);
    }
}

.expand-btn:hover {
    color: #3b82f6;
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* ===== LEARNING PATH ===== */
.learning-path {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.path-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.path-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.8rem;
    color: #1e3a8a;
}

.path-step:hover .step-icon {
    transform: scale(1.1);
    border-color: #1e3a8a;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.step-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.path-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connection-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 1px;
}

.connection-arrow {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    color: rgba(30, 58, 138, 0.1);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(0.5deg); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .academy-hero .page-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .academy-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .academy-hero .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .academy-hero .academy-visual-container {
        width: 300px;
        height: 300px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    

    
    .academy-features {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .path-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .path-connection {
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Access Options Section */
.access-options {
    padding: 80px 0;
    background: var(--gray-50);
}

.access-options .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.access-options .section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.access-options .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.access-options .section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.access-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.access-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.access-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(21, 210, 242, 0.05) 100%);
}

.access-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.access-header {
    text-align: center;
    margin-bottom: 2rem;
}

.access-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.access-icon i {
    font-size: 2rem;
    color: var(--white);
}

.access-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.access-header p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.access-features {
    margin-bottom: 2rem;
}

.access-features ul {
    list-style: none;
    padding: 0;
}

.access-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.access-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

.access-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.access-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.access-price .original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.access-cta {
    text-align: center;
}

.access-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Comparison Table */
.access-comparison {
    margin-top: 4rem;
}

.access-comparison h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.comparison-table.animate {
    opacity: 1;
    transform: translateY(0);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 480px) {
    .comparison-table {
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--gray-200);
        min-height: 55px;
    }
    
    .comparison-row.header {
        display: grid;
        background: var(--primary-color);
        color: var(--white);
        font-weight: 700;
        font-size: 0.7rem;
        min-height: 50px;
    }
    
    .comparison-item {
        padding: 0.5rem 0.1rem;
        font-size: 0.65rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.1;
        max-width: 100%;
        overflow: hidden;
    }
    
    .comparison-row:not(.header) .comparison-item:first-child {
        justify-content: flex-start;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        border: none;
        margin: 0;
        padding-left: 0.4rem;
        padding-right: 0.1rem;
        font-size: 0.6rem;
    }
    
    .comparison-item i {
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .comparison-item i.fa-check {
        color: #10b981;
    }
    
    .comparison-item i.fa-times {
        color: #ef4444;
    }
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.comparison-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-row.header .comparison-item {
    font-size: 1rem;
    font-weight: 700;
}

.comparison-row:not(.header) .comparison-item:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
}

.comparison-item i.fa-check {
    color: var(--success-color, #10b981);
    font-size: 1.1rem;
}

.comparison-item i.fa-times {
    color: var(--danger-color, #ef4444);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section */
    .academy-hero {
        padding: 100px 0 60px;
    }
    
    .academy-hero .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .academy-hero .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .academy-hero .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .academy-hero .hero-stat {
        padding: 1rem;
        min-width: 120px;
    }
    
    .academy-hero .stat-number {
        font-size: 1.8rem;
    }
    
    .academy-hero .stat-label {
        font-size: 0.8rem;
    }
    
    .academy-hero .academy-visual-container {
        width: 280px;
        height: 280px;
    }
    
    .academy-hero .floating-card {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .academy-hero .floating-card i {
        font-size: 1.2rem;
    }
    
    /* Academy Overview */
    .academy-overview {
        padding: 60px 0;
    }
    
    .academy-overview .section-title {
        font-size: 2rem;
    }
    
    .academy-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .academy-feature {
        padding: 1.5rem;
    }
    
    .academy-feature h4 {
        font-size: 1.2rem;
    }
    
    /* Courses Section */
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-section .section-title {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .course-header h3 {
        font-size: 1.4rem;
    }
    
    .course-content {
        padding: 1.5rem 0;
    }
    
    .course-details {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .course-topics ul {
        padding-left: 1.2rem;
    }
    
    .course-topics li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Access Options */
    .access-options {
        padding: 60px 0;
    }
    
    .access-options .section-title {
        font-size: 2rem;
    }
    
    .access-options .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .access-card {
        padding: 1.5rem;
    }
    
    .access-header h3 {
        font-size: 1.5rem;
    }
    
    .access-icon {
        width: 60px;
        height: 60px;
    }
    
    .access-icon i {
        font-size: 1.5rem;
    }
    
    .access-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .access-price .price {
        font-size: 2rem;
    }
    
    .access-price .original-price {
        font-size: 1rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .comparison-item {
        padding: 0.8rem 0.5rem;
    }
    
    .comparison-row.header .comparison-item {
        font-size: 0.85rem;
    }
    
    /* Learning Path */
    .learning-path {
        padding: 60px 0;
    }
    
    .learning-path .section-title {
        font-size: 2rem;
    }
    
    .path-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .path-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .path-connection {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* General Mobile Improvements */
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .academy-hero {
        padding: 120px 0 60px;
    }
    
    .academy-hero .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .academy-hero .hero-text p {
        font-size: 0.95rem;
    }
    
    .academy-hero .academy-visual-container {
        width: 250px;
        height: 250px;
    }
    
    .academy-hero .floating-card {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
        padding: 1rem;
    }
    
    .academy-hero .floating-card i {
        font-size: 1rem;
    }
    
    .academy-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .academy-hero .hero-stat {
        min-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .academy-hero .stat-number {
        font-size: 2rem;
    }
    
    .academy-hero .stat-label {
        font-size: 0.75rem;
    }
    
    .access-card {
        padding: 1.2rem;
    }
    
    .access-header h3 {
        font-size: 1.3rem;
    }
    
    .access-price .price {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        font-size: 0.6rem;
        margin: 0;
        overflow: hidden;
    }
    
    .comparison-item {
        padding: 0.5rem 0.1rem;
        font-size: 0.55rem;
        line-height: 1.0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        overflow: hidden;
    }
    
    .comparison-row.header .comparison-item {
        font-size: 0.6rem;
        min-height: 45px;
    }
    
    .comparison-row:not(.header) .comparison-item:first-child {
        font-size: 0.5rem;
        padding-left: 0.3rem;
        padding-right: 0.05rem;
    }
    
    .comparison-item i {
        font-size: 0.65rem;
    }
    
    .course-card {
        padding: 1.2rem;
    }
    
    .course-header h3 {
        font-size: 1.2rem;
    }
    
    .course-content {
        padding: 1rem 0;
    }
    
    .course-details {
        gap: 0.5rem;
    }
    
    .course-topics h4 {
        font-size: 1rem;
    }
    
    .course-topics li {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .academy-feature {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .academy-feature h4 {
        font-size: 1.1rem;
    }
    
    .academy-feature p {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .academy-hero {
        padding: 80px 0 40px;
    }
    
    .academy-hero .page-hero-content {
        gap: 2rem;
    }
    
    .academy-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .academy-hero .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .academy-hero .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .academy-hero .hero-stat {
        padding: 1rem;
    }
    
    .academy-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .academy-hero .stat-label {
        font-size: 0.7rem;
    }
    
    .academy-hero .academy-visual-container {
        width: 200px;
        height: 200px;
    }
    
    .academy-hero .floating-card {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
        padding: 0.8rem;
    }
    
    .academy-hero .floating-card i {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices - Additional fixes for comparison table */
@media (max-width: 360px) {
    .comparison-table {
        font-size: 0.55rem;
    }
    
    .comparison-item {
        padding: 0.3rem 0.02rem;
        font-size: 0.5rem;
        line-height: 0.95;
        max-width: 100%;
        overflow: hidden;
    }
    
    .comparison-row.header .comparison-item {
        font-size: 0.55rem;
        min-height: 40px;
    }
    
    .comparison-row:not(.header) .comparison-item:first-child {
        font-size: 0.45rem;
        padding-left: 0.2rem;
        padding-right: 0.02rem;
    }
    
    .comparison-item i {
        font-size: 0.55rem;
    }
    
    .comparison-row {
        min-height: 45px;
    }
}
