@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Luxury Medical Palette */
    --primary: #0F172A;              /* Midnight Blue */
    --primary-light: #0EA5E9;        /* Surgical Blue */
    --secondary: #38BDF8;            /* Sky */
    --accent: #2DD4BF;               /* Teal/Mint */
    --surface: #FFFFFF;
    --background: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Gradients */
    --grad-primary: #0F172A;
    --grad-medical: #0EA5E9;
    --grad-surface: #FFFFFF;
    
    /* Shadows */
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lux: 0 20px 50px -12px rgba(15, 23, 42, 0.12);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Custom Scrollbar - Global */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
    border: 2px solid #F1F5F9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 #F1F5F9;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* --- Premium Layout & Utilities --- */

.lux-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px); /* Optimized from 20px for performance */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.medical-chip {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-light);
}

.btn-lux {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-lux-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-lux-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.4);
}

.btn-lux-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-lux-outline:hover {
    background: var(--primary);
    color: white;
}

/* --- Dynamic Grid System --- */
.lux-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 4rem;
    background: white;
}

.stat-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 5px;
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: #E2E8F0;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.lux-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lux-grid-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* --- Global Image Framing --- */
.lux-grid-feature > div:has(img), .lux-grid-2 > div:has(img) {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    display: block;
}

.lux-grid-feature img, .lux-grid-2 img {
    width: 100%;
    max-width: 550px; /* Constrain width for a more compact look */
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lux);
    display: block;
    margin: 0 auto; /* Center if it hits max-width */
}

@media (max-width: 992px) {
    .lux-grid-2, .lux-grid-feature {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lux-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lux-stats-grid [style*="width: 1px"] {
        display: none;
    }
}

/* --- Navigation --- */

.site-nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 5%;
}

.site-nav.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-light);
}

/* Invisible nav fix on inner pages with dark headers */
.nav-lux:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}
.nav-lux:not(.scrolled) .nav-links a:hover {
    color: white;
}
.nav-lux:not(.scrolled) .brand-logo {
    filter: brightness(0) invert(1);
}
.nav-lux:not(.scrolled) .brand-name {
    color: white !important;
}

/* --- Hero Slider & Section --- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-zoom {
    animation: zoomOut 10s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    z-index: 2;
}

.hero .lux-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 220px 2rem 150px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -4px;
    color: white;
}

.hero-content h1 span {
    background: var(--grad-medical);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    line-height: 1.5;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    white-space: nowrap;
}

.trust-item i {
    color: var(--primary-light);
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-light);
    width: 60px;
}

.inner-hero {
    padding: 180px 0 100px;
    background: var(--grad-primary);
    color: white;
    text-align: center;
}

.inner-hero h1 span {
    background: var(--grad-medical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.float-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lux);
    background: white;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Course Preview Grid --- */

.preview-section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-grid {
    display: grid;
    grid-gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.course-lux-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    border: 1px solid transparent;
}

.course-lux-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lux);
    border-color: rgba(14, 165, 233, 0.2);
}

.course-lux-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-lux-body {
    padding: 2rem;
}

/* --- Page Specific Elements --- */

.filter-bar {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-top: -50px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: #F8FAFC;
    color: var(--text-muted);
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: white;
    border-color: #E2E8F0;
}

.filter-btn.active {
    background: var(--primary-light);
    color: white;
}

.feature-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lux);
}

/* --- Brand Logos --- */

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* --- Login Modal --- */

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-popup {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lux);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-input-lux {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    transition: all 0.3s;
    outline: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.form-input-lux:focus {
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.cta-box {
    background: var(--grad-primary);
    padding: 80px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    margin-top: 100px;
}

/* --- Footer --- */

footer {
    background: #0F172A;
    color: white;
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Authentication Portal --- */
.auth-container {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.auth-sidebar {
    background: url('https://images.unsplash.com/photo-1576091160550-2173599bd14e?auto=format&fit=crop&q=80&w=1000') no-repeat center center/cover;
    box-shadow: inset 0 0 0 2000px rgba(15, 23, 42, 0.8);
    background-size: cover;
    background-position: center;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.auth-content {
    padding: 5rem;
}

.auth-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Form Groups & Input Icons --- */

.form-group-lux {
    margin-bottom: 2rem;
}

.form-group-lux label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i, .input-wrapper svg {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 5;
    transition: color 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border-radius: 16px;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.input-wrapper input:focus + i, 
.input-wrapper input:focus + svg {
    color: var(--primary-light);
}

/* --- Feature List & Course Actions --- */
.feature-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-box {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-main);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; 
}

.course-price {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-main);
}

/* --- Responsive Design Queries --- */

@media (max-width: 1200px) {
    .hero-content h1 { font-size: 4.5rem; }
}

@media (max-width: 992px) {
    .site-nav { padding: 0 1.5rem; }
    .mobile-nav-toggle { 
        display: flex; 
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(14, 165, 233, 0.1);
        border-radius: 12px;
        color: var(--primary); 
    }
    
    .nav-lux:not(.scrolled) .mobile-nav-toggle {
        color: white;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        width: auto;
        color: var(--primary) !important;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s 0.2s;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-content h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
    .cta-box { padding: 60px 2rem; }
}

@media (max-width: 768px) {
    .site-nav { height: 75px; }
    .brand-logo { height: 35px; }

    .hero .lux-container { padding-top: 150px; padding-bottom: 60px; }
    .hero-content h1 { font-size: 2.75rem; letter-spacing: -1.5px; padding: 0 0.5rem; }
    .hero-content p { font-size: 1.05rem; line-height: 1.6; padding: 0 1rem; margin-bottom: 2.5rem; }
    
    .trust-bar { 
        flex-direction: column;
        gap: 1.5rem; 
        margin-top: 3.5rem; 
        padding-top: 2rem; 
        align-items: center;
        width: 100%;
    }
    .trust-item { font-size: 0.85rem; }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3.5rem;
    }
    
    .hero-cta-group .btn-lux {
        width: 100%;
        justify-content: center;
    }

    .lux-stats-grid {
        padding: 3.5rem 1rem;
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-num { font-size: 3rem; }

    .lux-grid-feature, .lux-grid-2, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .section-head h2 { font-size: 2rem; letter-spacing: -1px; }
    .section-head p { font-size: 1rem; padding: 0 1rem; }
    
    .glass-card { padding: 2.5rem 1.25rem; }
    
    .course-lux-body { padding: 1.5rem; }
    .course-lux-body h3 { font-size: 1.25rem; }

    .course-grid { 
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .cta-box { padding: 4rem 1.5rem; text-align: center; }
    .cta-box h2 { font-size: 2rem; margin-bottom: 1.5rem; }
    .cta-box p { font-size: 1rem; margin-bottom: 2rem; }
    
    /* Feature List Mobile */
    .feature-item { gap: 15px; }
    .feature-icon-box { width: 50px; height: 50px; border-radius: 12px; }
    .feature-item h4 { font-size: 1.1rem; }
    
    .course-action-row { gap: 0.5rem; }
    .course-price { font-size: 1.1rem; }
    /* Mobile Image Refinement */
    .lux-grid-feature img, .lux-grid-2 img {
        min-height: 220px;
        max-height: 320px;
    }
    
    footer .lux-container > div:last-child {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .inner-hero { padding: 120px 0 60px; }
    .inner-hero h1 { font-size: 2.5rem; }
    
    .filter-bar { padding: 1rem; gap: 0.5rem; }
    .filter-btn { padding: 8px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.25rem; }
    .hero-content p { font-size: 1rem; }
    .btn-lux { width: 100%; justify-content: center; }
    .hero-content div[style*="display: flex"] { flex-direction: column; width: 100%; }
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 500px;
}

.faq-item .chevron {
    transition: transform 0.3s;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

/* --- Support Cards --- */
.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #F1F5F9;
    text-align: center;
    transition: all 0.4s;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
    border-color: var(--primary-light);
}

.support-icon-box {
    width: 60px;
    height: 60px;
    background: #F8FAFC;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-light);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity; /* GPU Acceleration Hint */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

