/* IA PREMIUM THEME - ABSOLUTE PERFECTION */
:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    --premium-gradient: linear-gradient(135deg, #002244 0%, #001220 100%);
    --accent-glow: 0 0 40px rgba(255, 180, 0, 0.15);
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Global Fixes for IA Page */
/* Global Fixes for IA Page */
.service-hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white) !important;
    padding-top: var(--header-height);
    /* New Tech Background */
    background: #002244;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    z-index: 1;
}

.service-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../pattern-noise.png');
    /* Basic texture if available, else standard elegant noise */
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Hide Video Elements */
.hero-video,
.hero-overlay {
    display: none !important;
}

/* Aurora Background Animation */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001220;
    overflow: hidden;
    z-index: 0;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* More vibrant, visible aurora colors */
    background: radial-gradient(circle at 50% 50%, rgba(50, 10, 100, 0.4), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 50, 255, 0.2), transparent 50%);
    filter: blur(80px);
    animation: auroraMove 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes auroraMove {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    100% {
        transform: rotate(10deg) translate(-20px, 20px);
    }
}

/* Event Card Aesthetic */
.hero-event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-radius: 40px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 180, 0, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(255, 180, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.event-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFB400 0%, #FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.hero-buttons-container .btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Specific button styles that were inline */
.hero-buttons-container .btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .hero-buttons-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons-container .btn {
        width: 100%;
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.scarcity-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 15px;
}

/* Floating Hyper-Premium Shapes */
.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Softer blur */
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    transition: transform 0.5s ease-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #ffb400;
    /* Gold */
    top: -150px;
    right: -100px;
    opacity: 0.15;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #003366;
    /* Lighter Navy */
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-3 {
    display: none;
    /* Remove extra noise */
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white) !important;
    width: 100%;
}

.hero-content h1 {
    color: var(--white) !important;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

/* New Info Pills */
.hero-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.info-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-pill i {
    color: var(--secondary);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Button Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-shimmer {
    background: linear-gradient(110deg, #ffb400 20%, #ffcf40 40%, #ffb400 60%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    border: none;
}

/* Header Correction */
.header {
    background: var(--primary) !important;
    border-bottom: 2px solid var(--secondary) !important;
}

.logo img {
    background: transparent !important;
}

/* Helper Classes */
.highlight-secondary {
    color: var(--secondary) !important;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    font-weight: 800;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stat-circle {
    width: 140px;
    height: 140px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 180, 0, 0.05);
}

/* Brand Storytelling Section */
.section-storytelling {
    background: #002244;
    /* Brand Navy */
    position: relative;
    overflow: hidden;
    color: white !important;
}

.tech-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 180, 0, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.5;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #FFB400 !important;
    /* Brand Gold */
    margin-top: 15px;
    letter-spacing: -2px;
}

.story-text-modern {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
}

.story-highlights {
    margin: 40px 0;
}

.highlight-box {
    background: rgba(255, 180, 0, 0.1);
    border-left: 4px solid #FFB400;
    padding: 25px;
    border-radius: 0 20px 20px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.highlight-box i {
    font-size: 2rem;
    color: #FFB400;
}

/* Stats Grid Modern */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 35px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.stat-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 180, 0, 0.3);
}

.stat-card-glass.featured {
    background: rgba(255, 180, 0, 0.05);
    border-color: rgba(255, 180, 0, 0.2);
}

.stat-icon {
    font-size: 1.8rem;
    color: #FFB400;
    margin-bottom: 20px;
}

.stat-number-wrapper {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFB400;
}

.stat-card-glass p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 20px;
    line-height: 1.4;
}

.stat-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label.negative {
    background: rgba(255, 77, 77, 0.15);
    color: #FF4D4D;
}

.stat-label.positive {
    background: rgba(0, 255, 136, 0.15);
    color: #00FF88;
}

.stat-label.warning {
    background: rgba(255, 180, 0, 0.15);
    color: #FFB400;
}

.stat-label.info {
    background: rgba(0, 150, 255, 0.15);
    color: #0096FF;
}

@media (max-width: 992px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Turmas / Dates Section */
.turma-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    text-align: center;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.turma-card.featured {
    background: rgba(255, 180, 0, 0.05);
    border-color: var(--secondary);
    position: relative;
}

.turma-badge {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.turma-date {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 800;
}

.turma-list li {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.turma-list i {
    color: var(--secondary);
}

.vagas-alert {
    padding: 10px 25px;
    background: rgba(255, 77, 77, 0.1);
    color: #FF4D4D;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 77, 77, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Glass Card Premium 2.0 */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.glass-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--secondary);
    box-shadow:
        0 30px 60px rgba(255, 180, 0, 0.15),
        inset 0 0 0 1px rgba(255, 180, 0, 0.2);
}

.card-glow-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 180, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.glass-card-premium:hover .card-glow-inner {
    opacity: 1;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s ease;
}

.card-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: all 0.5s ease;
}

.glass-card-premium:hover .card-icon-wrapper {
    background: var(--secondary);
    transform: rotateY(180deg);
}

.glass-card-premium:hover .card-icon-wrapper i {
    color: var(--primary);
    transform: rotateY(-180deg);
}

/* Modern Typography and Section elements */
.title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.shuffle-text {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.divider-glow {
    width: 100px;
    height: 4px;
    background: var(--secondary);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.5);
}

.divider-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerMove 3s infinite;
}

@keyframes dividerMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Section Mesh Background */
.section-light {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 180, 0, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(0, 34, 68, 0.02) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 180, 0, 0.03) 0, transparent 50%);
}

/* Typography Perfection */
.highlight-ia {
    color: var(--secondary) !important;
    background: none;
    -webkit-text-fill-color: initial;
    font-weight: 900;
}

.txt-type {
    border-right: 3px solid var(--secondary);
    padding-right: 5px;
    animation: blink 0.9s infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: var(--secondary)
    }

    50% {
        border-color: transparent
    }
}

/* RESPONSIVE PERFECTION - MOBILE FIRST FIXES */
@media (max-width: 992px) {
    .header .container {
        padding: 0 15px !important;
    }

    .menu-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-actions {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 110px !important;
        /* Slightly more space for fixed header */
        padding-bottom: 40px !important;
        display: block !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }

    .highlight-ia {
        font-size: 2.2rem !important;
        display: block !important;
        margin-top: 5px !important;
    }

    .hero-pills {
        gap: 8px !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
    }

    .info-pill {
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 20px !important;
        margin: 20px 0 30px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 300px !important;
        /* Standard Index Width */
        margin: 0 auto !important;
        gap: 15px !important;
        /* Exact Index Gap */
        padding: 0 !important;
    }

    .btn-large {
        width: 100% !important;
        padding: 14px 28px !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }

    .hero-trust-bar {
        flex-direction: row !important;
        /* Horizontal is better if it fits */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 30px 10px 0 !important;
    }

    .trust-item {
        justify-content: center !important;
        font-size: 0.8rem !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.08);
        /* Distinct pills */
        padding: 5px 15px;
        border-radius: 50px;
    }

    .comparison-premium {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .comp-card {
        padding: 30px 20px !important;
    }

    /* Event Card Mobile Optimization */
    .hero-event-card {
        padding: 30px 20px !important;
        /* Dramsatically reduced padding */
        border-radius: 25px !important;
        margin-top: 20px !important;
    }

    .event-badge {
        font-size: 0.75rem !important;
        padding: 6px 15px !important;
        margin-bottom: 20px !important;
    }

    .event-title {
        font-size: 2.2rem !important;
        /* Smaller title */
        margin-bottom: 15px !important;
    }

    .event-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
    }

    .event-details {
        gap: 15px !important;
        /* Tighter Details */
        margin-bottom: 25px !important;
        padding-bottom: 25px !important;
        flex-wrap: wrap;
        /* Ensure they don't squash */
    }

    .detail-item {
        font-size: 0.9rem !important;
    }

    .btn-block {
        padding: 16px !important;
        font-size: 1rem !important;
    }
}

/* Animations Core */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Fixes */
.fas,
.fab,
.fa-solid {
    display: inline-block !important;
    visibility: visible !important;
}

/* =========================================
   MOBILE STICKY FOOTER
   ========================================= */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 18, 32, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    /* Ensure it's block so we can toggle transform */
}

.mobile-sticky-footer.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-label {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sticky-price {
    font-size: 1.2rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
}

.sticky-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-btn {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    /* Modern rounded corners */
    background: var(--secondary) !important;
    color: var(--primary) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Button Pulse Animation */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 180, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, 0);
    }
}

.sticky-btn.pulse-active {
    animation: btnPulse 2s infinite;
}

.sticky-btn i {
    margin-left: 5px;
}

/* Hide on Desktop */
@media (min-width: 768px) {
    .mobile-sticky-footer {
        display: none !important;
    }
}

/* WhatsApp Shift for Sticky Footer */
.whatsapp-float {
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000 !important;
}

.whatsapp-float.shifted {
    bottom: 130px !important;
    /* Moves button up */
}


/* Tooltip Shift for Sticky Footer */
.whatsapp-tooltip {
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000 !important;
}

.whatsapp-tooltip.shifted {
    bottom: 205px !important;
    /* Moves tooltip up (Button pos + ~75px) */
}

/* =========================================
   FEATURES & SPOTLIGHT ENHANCEMENTS
   ========================================= */
.features-interaction-area {
    position: relative;
    overflow: hidden;
}

.mouse-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-interaction-area:hover .mouse-spotlight {
    opacity: 1;
}

.feature-card-modern {
    padding-bottom: 70px !important;
}

.feature-tag {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFB400;
    letter-spacing: 1px;
    background: rgba(255, 180, 0, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.card-icon-wrapper.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-card-modern:hover .card-icon-wrapper {
    animation-play-state: paused;
    color: #FFB400;
}

/* Comparison Section Enhancements */
.comparison-grid {
    align-items: stretch;
}

.comparison-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.comparison-card-modern.ai-student {
    background: rgba(255, 180, 0, 0.03);
    border-color: rgba(255, 180, 0, 0.2);
}

.comparison-card-modern.featured:hover {
    transform: translateY(-10px);
    border-color: #FFB400;
    box-shadow: 0 20px 50px rgba(255, 180, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.card-header i {
    font-size: 2.5rem;
}

.common-student .card-header i {
    color: #FF4D4D;
}

.ai-student .card-header i {
    color: #FFB400;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.comparison-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

.comparison-list li i {
    font-size: 1rem;
    margin-top: 4px;
}

.common-student .comparison-list li i {
    color: #FF4D4D;
}

.ai-student .comparison-list li i {
    color: #FFB400;
}

.card-status {
    margin-top: 30px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-alert {
    background: rgba(255, 77, 77, 0.1);
    color: #FF4D4D;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.status-success {
    background: rgba(255, 180, 0, 0.1);
    color: #FFB400;
    border: 1px solid rgba(255, 180, 0, 0.2);
}

[data-reveal-stagger] {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ai-student [data-reveal-stagger] {
    transform: translateX(20px);
}

[data-reveal-stagger].reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .comparison-card-modern {
        padding: 40px 30px;
    }
}

/* Timeline & Curriculum Section */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #FFB400, transparent);
    z-index: 0;
}

.timeline-grid {
    gap: 100px !important;
}

.curriculum-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.timeline-node {
    position: relative;
}

.node-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #FFB400;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.5);
    z-index: 2;
    transform: translateY(-50%);
}

.timeline-node.right .node-dot {
    right: -60px;
    left: auto;
}

/* Card on left, dot on its right */
.timeline-node.left .node-dot {
    left: -60px;
    right: auto;
}

/* Card on right, dot on its left */

.curriculum-header-premium {
    position: relative;
    margin-bottom: 30px;
}

.module-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: -1;
}

.module-phase {
    display: inline-block;
    color: #FFB400;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.curriculum-card-premium h3 {
    font-size: 1.8rem;
    color: #002244;
    font-weight: 800;
}

.list-check-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check-modern li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.list-check-modern li:last-child {
    border-bottom: none;
}

.list-check-modern i {
    color: #FFB400;
    font-size: 1.2rem;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.list-check-modern li:hover i {
    transform: scale(1.2) rotate(10deg);
}

.curriculum-card-premium:hover {
    transform: translateY(-10px);
    border-color: #FFB400;
    box-shadow: 0 30px 60px rgba(255, 180, 0, 0.1);
}

@media (max-width: 992px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-node.right .node-dot,
    .timeline-node.left .node-dot {
        left: -30px;
        right: auto;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px !important;
        padding-left: 50px;
    }
}

.timeline-node {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-node.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-dark {
    background: radial-gradient(circle at center, #003366 0%, #002244 100%);
    position: relative;
    overflow: hidden;
}

/* Rewards & Bonus Section */
.rewards-grid {
    perspective: 1000px;
    gap: 30px !important;
}

.reward-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px 30px;
    position: relative;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.3), transparent, rgba(255, 180, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: all 0.4s ease;
}

.reward-card.featured {
    background: rgba(255, 180, 0, 0.03);
    border-color: rgba(255, 180, 0, 0.2);
}

.reward-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #FFB400;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 180, 0, 0.1);
}

.reward-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFB400;
    color: #002244;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.reward-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #FFB400;
    position: relative;
    transition: all 0.4s ease;
}

.reward-card:hover .reward-icon-wrapper {
    background: #FFB400;
    color: #002244;
    transform: scale(1.1);
}

.reward-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.reward-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reward-tag {
    display: inline-block;
    color: #FFB400;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-reveal="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal="zoom-in"].reveal-visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .reward-card {
        padding: 40px 20px;
    }
}

/* Testimonials Section */
.testimonials-grid {
    gap: 30px !important;
}

.testimonial-card-modern {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 180, 0, 0.1);
    border-color: rgba(255, 180, 0, 0.3);
}

.featured-testimonial {
    border-color: rgba(255, 180, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.testimonial-meta span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
}

.google-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 1.2rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: #FFB400;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-body p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
}

/* New Fade-Up Animation Support */
[data-reveal="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal="fade-up"].reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .testimonial-card-modern {
        padding: 30px;
    }
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Location Section Overhaul */
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 180, 0, 0.1);
    color: #FFB400;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 180, 0, 0.2);
}

.location-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;
}

.location-title span {
    color: #FFB400;
}

.location-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 30px;
}

.location-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-modern {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.feature-item-modern:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 180, 0, 0.2);
    transform: translateX(10px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB400;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
}

.map-frame-premium {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay-glass {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 100px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-title {
        font-size: 2.8rem;
    }

    .map-frame-premium {
        height: 400px;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-footer {
        display: none;
    }
}

/* Schedule Section Redesign - Premium Event Card */
.section-light {
    background: #f8faff;
    color: #001a4d;
    position: relative;
}

.section-light .highlight-secondary {
    color: #001a4d;
}

.section-light .section-subtitle {
    color: rgba(0, 26, 77, 0.7);
}

.event-card-container {
    max-width: 900px;
    margin: 60px auto 0;
    perspective: 1000px;
}

.event-card-premium {
    background: #ffffff;
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    display: flex;
    box-shadow: 0 40px 120px rgba(0, 26, 77, 0.08);
    border: 1px solid rgba(0, 26, 77, 0.03);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.event-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 60px 150px rgba(0, 26, 77, 0.12);
}

/* Left Column - Date Showcase */
.event-date-side {
    background: #001a4d;
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.event-date-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.1) 0%, transparent 100%);
}

.date-badge-top {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFB400;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.date-big-num {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.date-month-txt {
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 6px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Right Column - Info & Action */
.event-info-side {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.event-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #001a4d;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event-tagline {
    font-size: 1.1rem;
    color: rgba(0, 26, 77, 0.6);
    margin-bottom: 40px;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.logistic-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logistic-icon {
    width: 45px;
    height: 45px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001a4d;
    font-size: 1.1rem;
}

.logistic-text strong {
    display: block;
    font-size: 0.95rem;
    color: #001a4d;
}

.logistic-text span {
    font-size: 0.85rem;
    color: rgba(0, 26, 77, 0.5);
}

.event-footer-action {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: auto;
}

.event-price-display {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: rgba(0, 26, 77, 0.4);
    text-transform: uppercase;
    font-weight: 700;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #001a4d;
}

@media (max-width: 900px) {
    .event-card-premium {
        flex-direction: column;
    }

    .event-date-side {
        padding: 40px;
        min-width: unset;
    }

    .event-info-side {
        padding: 40px 30px;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-footer-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .event-footer-action .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* Pricing Section Redesign - Elite Card */
.pricing-card-elite {
    background: #ffffff;
    border-radius: 50px;
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 26, 77, 0.08);
    border: 1px solid rgba(0, 26, 77, 0.03);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
}

.pricing-card-elite::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.offer-badge-elite {
    display: inline-block;
    background: #f0f4ff;
    color: #4a90e2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pricing-header-elite h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001a4d;
    margin-bottom: 10px;
}

.pricing-tagline-elite {
    font-size: 1.1rem;
    color: rgba(0, 26, 77, 0.5);
    margin-bottom: 45px;
}

.anchor-price-box {
    margin-bottom: 15px;
    opacity: 0.6;
}

.anchor-label {
    font-size: 0.9rem;
    color: #001a4d;
    margin-right: 10px;
}

.anchor-value {
    text-decoration: line-through;
    font-weight: 600;
    color: #ff4d4f;
}

.main-price-ticker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    background: #f8faff;
    padding: 40px;
    border-radius: 30px;
}

.installment-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001a4d;
    margin-bottom: 5px;
}

.price-big-value {
    font-size: 5.5rem;
    font-weight: 900;
    color: #FFB400;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.price-currency {
    font-size: 2rem;
    margin-top: 15px;
}

.price-decimals {
    font-size: 2.2rem;
    margin-top: 15px;
}

.full-price-note {
    font-size: 1.1rem;
    color: #001a4d;
    font-weight: 700;
    margin-top: 10px;
    opacity: 0.8;
}

.benefits-list-elite {
    list-style: none;
    padding: 30px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(0, 26, 77, 0.05);
    border-bottom: 1px solid rgba(0, 26, 77, 0.05);
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list-elite li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #001a4d;
}

.benefits-list-elite i {
    color: #10B981;
    font-size: 1.2rem;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(0, 26, 77, 0.4);
    font-weight: 700;
    text-align: center;
}

.trust-item i {
    font-size: 1.4rem;
    color: #FFB400;
}

@media (max-width: 768px) {
    .pricing-card-elite {
        padding: 50px 25px;
    }

    .price-big-value {
        font-size: 4rem;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-list-elite {
        padding: 20px 0;
    }
}

/* Pricing Section Redesign - Dark Glass-Gold Elite */
.pricing-card-dark-elite {
    background: rgba(0, 26, 77, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 180, 0, 0.2);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
}

.pricing-card-dark-elite::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offer-badge-gold {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFB400);
    color: #001a4d;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.2);
}

.pricing-header-dark h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-tagline-dark {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.anchor-box-dark {
    margin-bottom: 20px;
}

.anchor-label-dark {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 12px;
}

.anchor-val-dark {
    text-decoration: line-through;
    font-weight: 600;
    color: rgba(255, 77, 79, 0.8);
    font-size: 1.2rem;
}

.price-ticker-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-ticker-dark .installment-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price-ticker-dark .price-big-dark {
    font-size: 6rem;
    font-weight: 950;
    color: #FFB400;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-shadow: 0 0 30px rgba(255, 180, 0, 0.3);
}

.price-ticker-dark .currency-dark {
    font-size: 2.2rem;
    margin-top: 18px;
    color: rgba(255, 180, 0, 0.6);
}

.price-ticker-dark .decimals-dark {
    font-size: 2.5rem;
    margin-top: 18px;
    color: rgba(255, 180, 0, 0.6);
}

.full-price-dark {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-top: 15px;
}

.benefits-dark {
    list-style: none;
    padding: 40px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-dark li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.benefits-dark i {
    color: #FFB400;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(255, 180, 0, 0.3));
}

.trust-badges-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.trust-item-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    text-align: center;
}

.trust-item-dark i {
    font-size: 1.6rem;
    color: #FFB400;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pricing-card-dark-elite {
        padding: 50px 25px;
        border-radius: 35px;
    }

    .price-ticker-dark .price-big-dark {
        font-size: 4.5rem;
    }

    .trust-badges-dark {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-header-dark h3 {
        font-size: 2.2rem;
    }
}

/* Pricing Section Redesign - Ultimate Glass-Gold */
.pricing-card-ultimate {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 60px;
    padding: 100px 70px;
    position: relative;
    box-shadow:
        0 40px 150px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
}

.card-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(255, 180, 0, 0.12), transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.ultimate-badge-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.badge-ultimate {
    background: linear-gradient(90deg, #FFB400, #FFD700);
    color: #000c24;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-ultimate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerUltimate 3s infinite;
}

@keyframes shimmerUltimate {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.pricing-header-ultimate h3 {
    font-size: 4.2rem;
    font-weight: 950;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-tagline-ultimate {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    font-weight: 300;
}

.price-display-ultimate {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50px;
    padding: 60px 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.ultimate-price-label {
    font-size: 1.2rem;
    color: rgba(255, 180, 0, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.ultimate-main-price {
    font-size: 8rem;
    font-weight: 950;
    color: #FFB400;
    line-height: 0.9;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    text-shadow: 0 0 60px rgba(255, 180, 0, 0.2);
}

.ultimate-main-price .symbol {
    font-size: 2.8rem;
    margin-top: 20px;
    opacity: 0.6;
}

.ultimate-main-price .decimals {
    font-size: 3.2rem;
    margin-top: 20px;
    opacity: 0.6;
}

.ultimate-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 80px;
    padding: 0 20px;
}

.benefit-item-ultimate {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.benefit-item-ultimate:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 180, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.benefit-icon-ultimate {
    width: 60px;
    height: 60px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB400;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.benefit-text-ultimate strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.benefit-text-ultimate span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.cta-container-ultimate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 5;
    position: relative;
}

.trust-shield-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 15px 35px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 800;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

@media (max-width: 992px) {
    .ultimate-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-card-ultimate {
        padding: 70px 25px;
        border-radius: 40px;
    }

    .pricing-header-ultimate h3 {
        font-size: 3rem;
    }

    .ultimate-main-price {
        font-size: 5.5rem;
    }

    .benefit-item-ultimate {
        padding: 20px;
    }
}

/* FAQ Section Redesign - Modern Accordion */
.faq-container-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #001a4d;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: #FFB400;
}

.faq-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 26, 77, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #001a4d;
}

.faq-item.active .faq-icon {
    background: #FFB400;
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Final CTA Section - Future Ready (Brand Aligned) */
.cta-future-wrapper {
    position: relative;
    background: #001220;
    /* Brand Dark Navy */
    padding: 120px 20px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-future-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(60px);
    }
}

.cta-orb-1,
.cta-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #003366, transparent);
    /* Navy Light */
    top: -10%;
    left: 20%;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFB400, transparent);
    /* Brand Gold */
    bottom: -10%;
    right: 15%;
    animation: floatOrb 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 40px);
    }
}

.cta-future-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 180, 0, 0.1);
    /* Gold border hint */
    padding: 60px;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
}

.cta-eyebrow {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #FFB400;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.cta-future-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-future {
    background: linear-gradient(135deg, #fff 0%, #FFB400 100%);
    /* Gold Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 180, 0, 0.3);
}

.cta-future-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.btn-future-glitch {
    position: relative;
    display: inline-block;
    padding: 25px 50px;
    background: #FFB400;
    /* Brand Gold */
    color: #002244;
    /* Brand Navy Text */
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.4);
}

.btn-future-glitch:hover {
    transform: scale(1.05);
    background: #FFC800;
    box-shadow: 0 0 50px rgba(255, 180, 0, 0.6);
}

.btn-future-glitch .decoration {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    /* Stronger flare */
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-future-glitch:hover .decoration {
    left: 150%;
    transition: 0.7s;
}

@media (max-width: 768px) {
    .cta-future-title {
        font-size: 2.5rem;
    }

    .cta-future-content {
        padding: 40px 20px;
    }

    .btn-future-glitch {
        padding: 20px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
}/* Professor Authority Section */
.expert-section-navy {
    background: #002244;
    /* Brand Navy */
    position: relative;
    overflow: hidden;
    color: white;
}

.expert-section-navy::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../pattern-noise.png');
    opacity: 0.05;
    pointer-events: none;
}

.expert-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.expert-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 50% 50%, #003366, #001220);
}

.expert-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.15) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.expert-img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.expert-image-wrapper:hover .expert-img {
    transform: scale(1.05);
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 180, 0, 0.15);
    color: #FFB400;
    /* Brand Gold */
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 180, 0, 0.3);
}

.expert-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #a5c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expert-role {
    font-size: 1.5rem;
    color: #FFB400;
    margin-bottom: 30px;
    font-weight: 600;
}

.expert-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.expert-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.expert-credentials li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.expert-credentials i {
    color: #FFB400;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .expert-credentials {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .expert-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .expert-credentials li {
        justify-content: flex-start;
    }
}
/* Professor Authority 2.0 - Tech Master */
.expert-section-pro {
    position: relative;
    background: linear-gradient(135deg, #001220 0%, #002244 100%);
    padding: 150px 0;
    overflow: hidden;
    color: white;
}

/* Dynamic Background Elements */
.expert-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.expert-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.expert-wave-top .shape-fill {
    fill: #ffffff;
    /* Match previous section bg if white, or adapt */
}

/* Timeline is section-light (white/gray), so white wave is good. */
/* Bonus is section-dark (black/navy). Bottom wave should match next section. */

.expert-grid-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Visual Side: Tech Portal */
.expert-visual-pro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-halo-container {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.tech-halo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 180, 0, 0.2);
    animation: spinRight 20s linear infinite;
}

.ring-2 {
    width: 450px;
    height: 450px;
    border-style: dashed;
    animation: spinLeft 30s linear infinite;
}

.ring-3 {
    width: 600px;
    height: 600px;
    border: 1px solid rgba(0, 50, 200, 0.1);
    animation: pulseHalo 4s ease-in-out infinite;
}

.expert-img-pro {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    border-radius: 40px;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease-out;
}

/* Content Side: Glass Tech */
.expert-content-pro {
    position: relative;
    z-index: 2;
}

.expert-role-badge {
    display: inline-block;
    background: rgba(255, 180, 0, 0.1);
    color: #FFB400;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 180, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.1);
}

.expert-name-glitch {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    color: white;
    position: relative;
    text-shadow: 2px 2px 0px rgba(0, 34, 68, 1);
}

/* Floating Stats Cards */
.expert-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.stat-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 180, 0, 0.3);
}

.stat-icon {
    font-size: 1.5rem;
    color: #FFB400;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes spinRight {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinLeft {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes pulseHalo {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 900px) {
    .expert-grid-pro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .expert-visual-pro {
        order: 1;
        /* Visual bottom on mobile? Or top? Usually top is better for intro. */
        order: 0;
    }

    .tech-halo-container {
        width: 350px;
        height: 350px;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 280px;
        height: 280px;
    }

    .ring-3 {
        width: 350px;
        height: 350px;
    }

    .expert-img-pro {
        max-width: 300px;
    }

    .expert-name-glitch {
        font-size: 3rem;
    }
}
/* Professor Authority 3.0 - Clean Premium */
.expert-section-clean {
    background-color: #002244;
    /* Brand Navy */
    background-image: radial-gradient(circle at 70% 30%, #003366 0%, #002244 60%);
    padding: 100px 0;
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.expert-grid-clean {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image Styling */
.expert-img-wrapper-clean {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 180, 0, 0.3);
    /* Thin Gold Border */
    transition: transform 0.4s ease;
    background: #001220;
}

.expert-img-wrapper-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border-color: #FFB400;
}

.expert-img-clean {
    width: 100%;
    display: block;
    /* Clean image, no masking */
    transition: transform 0.6s ease;
}

.expert-img-wrapper-clean:hover .expert-img-clean {
    transform: scale(1.03);
}

/* Content Styling */
.expert-content-clean {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFB400;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.expert-name-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    letter-spacing: -1px;
}

.expert-role-clean {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.expert-bio-clean {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 600px;
}

.expert-list-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.expert-item-clean {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.expert-item-clean i {
    color: #FFB400;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .expert-grid-clean {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .expert-img-wrapper-clean {
        max-width: 350px;
        margin: 0 auto;
    }

    .expert-content-clean {
        align-items: center;
        /* Center align for mobile */
    }

    .expert-list-clean {
        width: 100%;
        max-width: 400px;
        text-align: left;
    }

    .expert-name-clean {
        font-size: 2.5rem;
    }
}
/* Standard Teacher Card (Ported from home.css) */
.teacher-section-standard {
    background: #002244;
    /* Brand Navy for contrast */
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.teacher-card-standard {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 34, 68, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 34, 68, 0.05);
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.teacher-card-standard:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.teacher-visual-standard {
    height: 380px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: #003366;
    /* Fallback/Background */
    background: radial-gradient(circle at 50% 50%, #004080 0%, #002244 100%);
}

.teacher-img-wrapper-standard {
    width: 380px;
    /* Force width to match main site feel */
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.teacher-img-standard {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* changed back to cover for full fill */
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.teacher-card-standard:hover .teacher-img-standard {
    transform: scale(1.05);
}

.teacher-info-standard {
    padding: 30px;
    background: #ffffff;
    text-align: left;
    position: relative;
    z-index: 5;
}

.teacher-info-standard h3 {
    margin-bottom: 8px;
    color: #002244;
    /* Primary Navy */
    font-size: 1.8rem;
    font-weight: 800;
}

/* Decorative Line */
.teacher-info-standard h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #FFB400;
    /* Secondary Gold */
    margin-top: 8px;
    border-radius: 2px;
}

.teacher-info-standard p {
    font-size: 1rem;
    color: #4b5563;
    /* Gray-600 */
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 15px;
}

.teacher-social-standard {
    display: flex;
    gap: 15px;
}

.social-icon-standard {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    /* Gray-100 */
    color: #002244;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
}

.social-icon-standard:hover {
    background: #002244;
    color: #ffffff;
    transform: translateY(-3px);
}
