/* ================================================================
   Landing Page - Absensi Digital
   Consistent with main style.css dark theme
   ================================================================ */

/* ---- Smooth Scroll ---- */
html {
    scroll-behavior: smooth;
}

/* ================================================================
   Navbar
   ================================================================ */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 1rem 0;
    transition: var(--transition);
}

.landing-navbar.scrolled {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.landing-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.landing-navbar .navbar-brand .brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.landing-navbar .navbar-brand .brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.landing-navbar .navbar-nav .nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.landing-navbar .navbar-nav .nav-link:hover,
.landing-navbar .navbar-nav .nav-link.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.08);
}

.landing-navbar .btn-login-nav {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-navbar .btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Hamburger btn override */
.landing-navbar .navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.landing-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ================================================================
   Hero Section
   ================================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../img/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Animated background orbs - match login page */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: heroFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::before {
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.12;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}

.hero-section::after {
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.08;
    bottom: -80px;
    left: -60px;
    animation-delay: 5s;
}

/* Third orb via extra element */
.hero-orb-extra {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    opacity: 0.07;
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroFloat 12s ease-in-out infinite 3s;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.08); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

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

.hero-stat-item {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.hero-stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-stat-item .stat-icon-hero {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.hero-stat-item:nth-child(1) .stat-icon-hero {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
}

.hero-stat-item:nth-child(2) .stat-icon-hero {
    background: var(--success-light);
    color: var(--success);
}

.hero-stat-item:nth-child(3) .stat-icon-hero {
    background: var(--warning-light);
    color: var(--warning);
}

.hero-stat-item:nth-child(4) .stat-icon-hero {
    background: var(--info-light);
    color: var(--info);
}

.hero-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-item .stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================================================
   Section Common Styles
   ================================================================ */
.landing-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   About Section
   ================================================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 41, 59, 0.3) 50%, var(--bg-dark) 100%);
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(99, 102, 241, 0.1);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
}

.about-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   Features Section
   ================================================================ */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1)::before { background: var(--gradient-primary); }
.feature-card:nth-child(2)::before { background: var(--gradient-success); }
.feature-card:nth-child(3)::before { background: var(--gradient-accent); }
.feature-card:nth-child(4)::before { background: var(--gradient-warning); }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-light);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--success-light);
    color: var(--success);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-light);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--warning-light);
    color: var(--warning);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ================================================================
   Role Section
   ================================================================ */
.role-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 41, 59, 0.3) 50%, var(--bg-dark) 100%);
}

.role-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.role-card.role-admin::before { background: var(--gradient-primary); }
.role-card.role-guru::before { background: var(--gradient-accent); }

.role-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.12);
}

.role-card.role-admin:hover { border-color: var(--primary); }
.role-card.role-guru:hover { border-color: var(--accent); }

.role-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.role-admin .role-avatar {
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-light);
}

.role-guru .role-avatar {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-light);
}

.role-card:hover .role-avatar {
    transform: scale(1.08) rotate(-3deg);
}

.role-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.role-card .role-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.role-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.role-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.role-feature-list li i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.role-admin .role-feature-list li i {
    color: var(--primary-light);
}

.role-guru .role-feature-list li i {
    color: var(--accent-light);
}

/* ================================================================
   CTA Section
   ================================================================ */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Decorative orbs within CTA */
.cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-cta {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.55);
    color: white;
}

/* ================================================================
   Footer
   ================================================================ */
.landing-footer {
    background: var(--bg-sidebar);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-brand span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.footer-info .school-name {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================================================================
   Scroll Reveal Animation
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-illustration {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .landing-navbar .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .landing-section {
        padding: 3.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-stat-item {
        padding: 0.875rem;
    }

    .hero-stat-item .stat-number {
        font-size: 1.25rem;
    }

    .about-card, .feature-card, .role-card {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ================================================================
   Light Mode Overrides for Landing Page
   ================================================================ */

/* Smooth transition for landing page elements */
.landing-navbar,
.hero-visual-card,
.hero-stat-item,
.about-card,
.feature-card,
.role-card,
.cta-card,
.landing-footer,
.section-badge,
.hero-badge {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar light mode */
body.light-mode .landing-navbar.scrolled {
    background: rgba(248, 250, 252, 0.92);
    border-bottom-color: var(--border-color);
}

body.light-mode .landing-navbar .navbar-toggler {
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Hero section - hide dark orbs in light mode */
body.light-mode .hero-section::before {
    opacity: 0.06;
}

body.light-mode .hero-section::after {
    opacity: 0.04;
}

body.light-mode .hero-orb-extra {
    opacity: 0.04;
}

/* Hero stat items */
body.light-mode .hero-stat-item {
    background: rgba(124, 58, 237, 0.04);
    border-color: var(--border-color);
}

body.light-mode .hero-visual-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 20px rgba(124, 58, 237, 0.06);
}

/* About section background */
body.light-mode .about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(241, 245, 249, 0.5) 50%, var(--bg-dark) 100%);
}

/* Cards light mode */
body.light-mode .about-card,
body.light-mode .feature-card,
body.light-mode .role-card,
body.light-mode .cta-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.light-mode .about-card:hover,
body.light-mode .feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(124, 58, 237, 0.06);
}

body.light-mode .role-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(124, 58, 237, 0.06);
}

/* Role section background */
body.light-mode .role-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(241, 245, 249, 0.5) 50%, var(--bg-dark) 100%);
}

/* CTA light mode */
body.light-mode .cta-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .cta-card::after {
    opacity: 0.03;
}

/* Footer light mode */
body.light-mode .landing-footer {
    background: var(--bg-card);
}

/* Section badges */
body.light-mode .section-badge,
body.light-mode .hero-badge {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.12);
}

/* About icon backgrounds */
body.light-mode .about-icon {
    background: rgba(124, 58, 237, 0.08);
}

/* Feature icon backgrounds */
body.light-mode .feature-card:nth-child(1) .feature-icon {
    background: rgba(124, 58, 237, 0.08);
}

body.light-mode .feature-card:nth-child(3) .feature-icon {
    background: rgba(37, 99, 235, 0.08);
}

/* Role avatar backgrounds */
body.light-mode .role-admin .role-avatar {
    background: rgba(124, 58, 237, 0.08);
}

body.light-mode .role-guru .role-avatar {
    background: rgba(37, 99, 235, 0.08);
}

/* CTA icon */
body.light-mode .cta-icon {
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.1);
}

/* Secondary button */
body.light-mode .btn-hero-secondary {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

body.light-mode .btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.04);
}

/* Mobile navbar collapse light mode */
@media (max-width: 991.98px) {
    body.light-mode .landing-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }
}

