/* Global Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --dark-bg: #0b0c10; /* Richer dark tone */
    --darker-bg: #050508; /* Deepest tone with slight purple/blue tint */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-gradient: linear-gradient(135deg, #818cf8 0%, #c084fc 100%); /* Softer, richer gradient */
}

body {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.85); /* Softer base text color */
    font-family: 'Outfit', sans-serif;
    line-height: 1.7; /* Improved readability */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em; /* Tighter modern headings */
    color: #fff;
}

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

.btn-gradient {
    background: var(--text-gradient);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother interaction */
}

.btn-gradient:hover {
    transform: translateY(-2px) scale(1.02); /* Slight scale */
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.35), 0 0 0 1px rgba(255,255,255,0.1) inset; /* Enhanced glow + inner ring */
    color: white;
}
.btn-gradient:active {
    transform: translateY(0) scale(0.98);
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--darker-bg);
}

/* Promotional image frame – consistent with spam-gateway page */
#heroCarousel.glass-card,
.section-padding .glass-card img.img-fluid {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

[data-bs-theme="light"] #heroCarousel.glass-card,
[data-bs-theme="light"] .section-padding .glass-card img.img-fluid {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

#heroCarousel.glass-card:hover {
    transform: none;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px); /* Stronger blur for richer depth */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Inner shadow effect */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover:not(.no-hover) {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar-glass {
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.5rem 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar-glass .navbar-brand {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.navbar-glass .navbar-brand .navbar-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    opacity: 0.85; /* Slight transparency by default */
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    opacity: 1; /* Glow effect on hover */
    transform: translateY(-1px);
}

[data-bs-theme="light"] .navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Hamburger */
.nav-hamburger {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Icon Buttons */
.nav-icon-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.nav-icon-btn:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

[data-bs-theme="light"] .nav-icon-btn {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: #475569;
}

[data-bs-theme="light"] .nav-icon-btn:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

.nav-icon-btn .flag-emoji {
    font-size: 1.15rem;
    line-height: 1;
}

/* Login button */
.nav-login-btn {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    transition: all 0.2s;
}

.nav-login-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

[data-bs-theme="light"] .nav-login-btn {
    color: #334155;
    border-color: rgba(0, 0, 0, 0.12);
}

[data-bs-theme="light"] .nav-login-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1e293b;
}

/* Divider */
.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

[data-bs-theme="light"] .nav-divider {
    background: rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.nav-cta-btn {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    padding: 0.45rem 1.2rem !important;
}

/* ═══════ Mega Dropdown ═══════ */
.nav-mega-dropdown .dropdown-toggle::after {
    display: none;
}

.nav-mega-menu {
    background: rgba(15, 17, 21, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04);
    margin-top: 0.5rem !important;
    animation: megaFadeIn 0.2s ease;
    min-width: 320px;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
    color: #fff;
}

.mega-item:hover .mega-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mega-arrow {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    color: var(--primary-color);
}

.mega-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.mega-title {
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

.mega-desc {
    font-size: 0.72rem;
    opacity: 0.45;
    line-height: 1.3;
    margin-top: 1px;
}

/* Language dropdown */
.nav-lang-menu {
    border-radius: 0.75rem;
    padding: 0.35rem;
    background: rgba(15, 17, 21, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-lang-menu .dropdown-item {
    border-radius: 0.5rem;
    padding: 0.5rem 0.85rem;
    font-weight: 500;
    transition: background 0.15s;
}

.nav-lang-menu .dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
}

.nav-lang-menu .dropdown-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.1));
    color: var(--primary-color);
}

/* Light theme overrides */
[data-bs-theme="light"] .nav-mega-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="light"] .mega-item {
    color: #334155;
}

[data-bs-theme="light"] .mega-item:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
    color: #1e293b;
}

[data-bs-theme="light"] .nav-lang-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive: mobile mega dropdown */
@media (max-width: 991.98px) {
    .nav-mega-menu {
        position: static !important;
        border: none;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0.5rem 0 !important;
    }

    .nav-mega-menu .row {
        min-width: auto !important;
    }

    .nav-mega-menu .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mega-item {
        padding: 0.75rem !important;
    }

    .nav-actions {
        padding-top: 1rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-divider {
        display: none !important;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-actions .btn {
    padding: 0.4rem 0.75rem;
}

/* Main content offset for fixed navbar */
main {
    padding-top: 80px;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    color: white;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Pricing preset cards */
.preset-card {
    transition: all 0.25s ease;
    color: #fff;
}

.preset-card:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px);
}

.preset-card.active {
    border-color: rgba(99, 102, 241, 0.6) !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.preset-card.active .preset-icon {
    opacity: 0.4 !important;
}

.preset-content {
    padding-right: 0;
}

.preset-label {
    font-size: 0.95rem;
    line-height: 1.3;
}

.preset-detail {
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
}

.preset-icon {
    font-size: 1.75rem;
}

@media (max-width: 576px) {
    .preset-detail {
        font-size: 0.7rem;
    }

    .preset-icon {
        font-size: 1.4rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    /* Offset for fixed navbar */
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.badge-shine {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Features */
.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Special Gateway Section */
.glow-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-20%, -20%);
    z-index: 0;
}

.custom-list li i {
    font-size: 1.2rem;
}

/* Footer */
.hover-opacity-100:hover {
    opacity: 1 !important;
}

.spacing-1 {
    letter-spacing: 1px;
}

.placeholder-light::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-dashboard {
    animation: float 6s ease-in-out infinite;
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Dark theme utilities */
.bg-dark-subtle {
    background-color: rgba(255, 255, 255, 0.03);
}

.form-control.bg-transparent,
.form-control:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

.form-range {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text-gradient);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
    transition: transform 0.2s;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.form-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

/* Preset package cards */
.preset-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.preset-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.preset-card.active,
.preset-btn.active {
    border-color: var(--primary-color) !important;
    background: rgba(99, 102, 241, 0.15) !important;
    color: #fff !important;
}

/* Pricing Calculator Styles */
#mailboxTable input[type="range"]::-webkit-slider-thumb,
#pricingForm input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.2s;
}

#mailboxTable input[type="range"]::-webkit-slider-thumb:hover,
#pricingForm input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.delete-row-btn {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.delete-row-btn:hover {
    opacity: 1;
    color: #ef4444 !important;
    /* Tailwind Red-500 equivalent */
}

/* Promotional Visuals */
.hero-illustration-wrapper,
.carousel-inner {
    position: relative;
    z-index: 1;
}

.carousel-item img {
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
    mix-blend-mode: screen;
}

.floating-animation {
    animation: float-promo 6s ease-in-out infinite;
}

@keyframes float-promo {
    0% {
        transform: translateY(0px);
    }

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

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

.security-illustration-wrapper img,
.sync-illustration-wrapper img {
    transition: transform 0.5s ease;
    mix-blend-mode: screen;
}

.security-illustration-wrapper:hover img,
.sync-illustration-wrapper:hover img {
    transform: scale(1.02);
}

/* ===== LIGHT THEME ===== */
[data-bs-theme="light"] body {
    background-color: #f0f2f8 !important;
    color: #1e293b !important;
}

/* Navbar */
[data-bs-theme="light"] .navbar-glass {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="light"] .navbar .nav-link {
    color: #334155 !important;
}

[data-bs-theme="light"] .navbar .nav-link:hover {
    color: #6366f1 !important;
}

/* Hero section */
[data-bs-theme="light"] .hero-section {
    background: linear-gradient(135deg, #e8ecf4 0%, #dde3f0 50%, #d1d8ea 100%) !important;
}

[data-bs-theme="light"] .hero-bg-glow {
    opacity: 0.15;
}

[data-bs-theme="light"] .hero-section h1 {
    color: #0f172a !important;
}

[data-bs-theme="light"] .hero-section .text-light,
[data-bs-theme="light"] .hero-section .lead {
    color: #475569 !important;
}

/* Glass cards */
[data-bs-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="light"] .glass-card:hover {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

/* Buttons */
[data-bs-theme="light"] .glass-btn,
[data-bs-theme="light"] .btn-outline-light {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #334155 !important;
}

[data-bs-theme="light"] .glass-btn:hover,
[data-bs-theme="light"] .btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    color: #1e293b !important;
}

/* Badge */
[data-bs-theme="light"] .badge-shine {
    background: rgba(99, 102, 241, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    color: #4f46e5 !important;
}

/* Icon box */
[data-bs-theme="light"] .icon-box {
    background: rgba(0, 0, 0, 0.04);
}

/* Sections */
[data-bs-theme="light"] .bg-darker {
    background-color: #e4e8f2 !important;
}

[data-bs-theme="light"] h1, [data-bs-theme="light"] .h1,
[data-bs-theme="light"] h2, [data-bs-theme="light"] .h2,
[data-bs-theme="light"] h3, [data-bs-theme="light"] .h3,
[data-bs-theme="light"] h4, [data-bs-theme="light"] .h4,
[data-bs-theme="light"] h5, [data-bs-theme="light"] .h5,
[data-bs-theme="light"] h6, [data-bs-theme="light"] .h6 {
    color: #0f172a !important;
}

[data-bs-theme="light"] .text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Opacity text → readable dark in light mode */
[data-bs-theme="light"] .opacity-75 {
    opacity: 1 !important;
    color: #475569 !important;
}

[data-bs-theme="light"] .opacity-50 {
    opacity: 1 !important;
    color: #64748b !important;
}

/* Text overrides */
[data-bs-theme="light"] .text-light {
    color: #334155 !important;
}

[data-bs-theme="light"] .text-white {
    color: #1e293b !important;
}

[data-bs-theme="light"] .text-white-50 {
    color: #64748b !important;
}

/* Footer */
[data-bs-theme="light"] footer,
[data-bs-theme="light"] footer.bg-darker {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

[data-bs-theme="light"] footer .opacity-50,
[data-bs-theme="light"] footer .opacity-75 {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-bs-theme="light"] footer h5 {
    color: #e2e8f0 !important;
}

[data-bs-theme="light"] footer a.text-light,
[data-bs-theme="light"] footer .text-light {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-bs-theme="light"] footer a.text-light:hover {
    color: #fff !important;
}

[data-bs-theme="light"] footer .border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Form controls - landing pages */
[data-bs-theme="light"] .form-control.bg-transparent,
[data-bs-theme="light"] .form-control:focus {
    background-color: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #1e293b !important;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

/* Auth pages */
[data-bs-theme="light"] .form-control.text-light {
    color: #1e293b !important;
}

[data-bs-theme="light"] .form-check-label {
    color: #475569 !important;
}

/* Borders */
[data-bs-theme="light"] .border-white-10 {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* Carousel & promotional images – remove blend modes in light theme */
[data-bs-theme="light"] .carousel-item img,
[data-bs-theme="light"] img[style*="mix-blend-mode"],
[data-bs-theme="light"] .glass-card img {
    mix-blend-mode: normal !important;
}

/* Pricing page specifics */
[data-bs-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-bs-theme="light"] .pricing-card .price-amount {
    color: #0f172a !important;
}

[data-bs-theme="light"] .preset-card {
    color: #334155 !important;
}

[data-bs-theme="light"] .preset-card.active,
[data-bs-theme="light"] .preset-btn.active {
    color: #4f46e5 !important;
    background: rgba(99, 102, 241, 0.1) !important;
}

/* Custom list items */
[data-bs-theme="light"] .custom-list span {
    color: #334155 !important;
}

/* Placeholder */
[data-bs-theme="light"] .placeholder-light::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

/* Form range */
[data-bs-theme="light"] .form-range {
    background: rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .bg-dark-subtle {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Glow circle */
[data-bs-theme="light"] .glow-circle {
    opacity: 0.1;
}