/* ==========================================================================
   Hero Enhanced — Advenno Dark OLED + Glassmorphism Layer
   Layers on top of base hero styles in style.css.
   ========================================================================== */


/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */

@keyframes hero-mesh-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes hero-particle-drift {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(-120px) translateX(40px); opacity: 0; }
}

@keyframes hero-particle-drift-alt {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    25%  { opacity: 0.7; }
    75%  { opacity: 0.7; }
    100% { transform: translateY(-90px) translateX(-30px); opacity: 0; }
}

@keyframes hero-border-glow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes hero-badge-pulse {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

@keyframes hero-gradient-text {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes hero-orb-float {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.05); }
    66%  { transform: translate(-20px, 15px) scale(0.97); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes hero-line-sweep {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes hero-fade-in-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-stagger-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   1. Enhanced Hero Container
   ========================================================================== */

.hero-enhanced {
    position: relative;
    min-height: 85vh;
    padding-top: 140px;
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse 80% 60% at 20% 40%,
            rgba(34, 211, 238, 0.04) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 60% 80% at 80% 30%,
            rgba(139, 92, 246, 0.04) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 70% 50% at 50% 80%,
            rgba(59, 130, 246, 0.03) 0%,
            transparent 60%
        );
    background-size: 200% 200%;
    animation: hero-mesh-shift 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Floating particle dots */
.hero-enhanced::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    top: 30%;
    left: 15%;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.5);
    box-shadow:
        60vw 10vh 0 0 rgba(139, 92, 246, 0.35),
        25vw 60vh 0 0 rgba(34, 211, 238, 0.3),
        75vw 45vh 0 0 rgba(59, 130, 246, 0.3),
        40vw 20vh 0 1px rgba(34, 211, 238, 0.2),
        85vw 70vh 0 0 rgba(139, 92, 246, 0.25),
        10vw 75vh 0 1px rgba(59, 130, 246, 0.2),
        55vw 80vh 0 0 rgba(34, 211, 238, 0.2);
    animation: hero-particle-drift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}


/* ==========================================================================
   2. Enhanced Hero Badge
   ========================================================================== */

.hero-badge-enhanced {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    z-index: 2;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

/* Animated gradient border overlay */
.hero-badge-enhanced::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        rgba(34, 211, 238, 0.3),
        rgba(139, 92, 246, 0.3),
        rgba(59, 130, 246, 0.3),
        rgba(34, 211, 238, 0.3)
    );
    background-size: 200% 100%;
    animation: hero-border-glow 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Pulsing dot indicator */
.hero-badge-enhanced .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan, #22D3EE);
    animation: hero-badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}


/* ==========================================================================
   3. Enhanced Hero Title
   ========================================================================== */

.hero-title-enhanced {
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.hero-title-enhanced .text-gradient {
    background: linear-gradient(
        135deg,
        var(--accent-cyan, #22D3EE),
        var(--accent-blue, #3B82F6),
        var(--accent-violet, #8B5CF6),
        var(--accent-cyan, #22D3EE)
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-text 8s linear infinite;
    text-shadow: none; /* text-shadow doesn't work on clipped text, use filter instead */
}

/* Glow effect via drop-shadow on a wrapper or directly */
.hero-title-enhanced .text-gradient-glow {
    filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.15));
}


/* ==========================================================================
   4. Enhanced Hero Description
   ========================================================================== */

.hero-description-enhanced {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 2;
    animation: hero-fade-in-up 0.8s ease-out 0.2s both;
}


/* ==========================================================================
   5. Enhanced Hero CTA Buttons
   ========================================================================== */

.hero-cta-enhanced {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: hero-fade-in-up 0.8s ease-out 0.35s both;
}

/* Primary CTA */
.hero-cta-enhanced .btn-primary,
.hero-cta-enhanced .btn-enhanced-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-blue, #3B82F6), var(--accent-violet, #8B5CF6));
    color: #fff;
    border: none;
    border-radius: var(--radius-lg, 12px);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.hero-cta-enhanced .btn-primary:hover,
.hero-cta-enhanced .btn-enhanced-primary:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.35),
        0 0 60px rgba(139, 92, 246, 0.15);
    filter: brightness(1.1);
}

/* Secondary CTA — glassmorphism */
.hero-cta-enhanced .btn-secondary,
.hero-cta-enhanced .btn-enhanced-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary, #F1F5F9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg, 12px);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.hero-cta-enhanced .btn-secondary:hover,
.hero-cta-enhanced .btn-enhanced-secondary:hover {
    transform: scale(1.02);
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

/* Arrow icon animation on hover */
.hero-cta-enhanced .btn-primary .btn-icon,
.hero-cta-enhanced .btn-secondary .btn-icon,
.hero-cta-enhanced .btn-enhanced-primary .btn-icon,
.hero-cta-enhanced .btn-enhanced-secondary .btn-icon {
    transition: transform 0.3s ease;
}

.hero-cta-enhanced .btn-primary:hover .btn-icon,
.hero-cta-enhanced .btn-enhanced-primary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-cta-enhanced .btn-secondary:hover .btn-icon,
.hero-cta-enhanced .btn-enhanced-secondary:hover .btn-icon {
    transform: translateX(4px);
}


/* ==========================================================================
   6. Enhanced Trust Bar
   ========================================================================== */

.trust-bar-enhanced {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 12px);
    z-index: 2;
}

/* Subtle gradient top border */
.trust-bar-enhanced::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 211, 238, 0.3),
        rgba(139, 92, 246, 0.3),
        transparent
    );
    border-radius: 1px;
}

.trust-bar-enhanced .trust-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #6B7280);
    font-weight: 600;
    white-space: nowrap;
}

.trust-bar-enhanced .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md, 8px);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    animation: hero-stagger-in 0.5s ease-out both;
}

/* Stagger children */
.trust-bar-enhanced .trust-badge:nth-child(2) { animation-delay: 0.08s; }
.trust-bar-enhanced .trust-badge:nth-child(3) { animation-delay: 0.16s; }
.trust-bar-enhanced .trust-badge:nth-child(4) { animation-delay: 0.24s; }
.trust-bar-enhanced .trust-badge:nth-child(5) { animation-delay: 0.32s; }
.trust-bar-enhanced .trust-badge:nth-child(6) { animation-delay: 0.40s; }
.trust-bar-enhanced .trust-badge:nth-child(7) { animation-delay: 0.48s; }
.trust-bar-enhanced .trust-badge:nth-child(8) { animation-delay: 0.56s; }

.trust-bar-enhanced .trust-badge:hover {
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.08);
    transform: translateY(-1px);
}

.trust-bar-enhanced .trust-badge i,
.trust-bar-enhanced .trust-badge .trust-icon {
    color: var(--accent-cyan, #22D3EE);
    font-size: 1rem;
}


/* ==========================================================================
   7. Enhanced Hero Stats Row
   ========================================================================== */

.hero-stats-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: var(--space-xl);
    position: relative;
    z-index: 2;
    animation: hero-fade-in-up 0.8s ease-out 0.5s both;
}

.hero-stats-enhanced .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    position: relative;
}

/* Glass separator between stats */
.hero-stats-enhanced .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(34, 211, 238, 0.2),
        rgba(139, 92, 246, 0.2),
        transparent
    );
}

.hero-stats-enhanced .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-cyan, #22D3EE), var(--accent-blue, #3B82F6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-stats-enhanced .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    font-weight: 500;
}


/* ==========================================================================
   8. Enhanced Hero Background Effects
   ========================================================================== */

/* Glow orbs — larger, softer, slower */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    contain: layout style;
}

.hero-glow-orb--cyan {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    top: 5%;
    right: 5%;
    filter: blur(60px);
    animation: hero-orb-float 20s ease-in-out infinite;
}

.hero-glow-orb--violet {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
    top: 35%;
    left: -5%;
    filter: blur(70px);
    animation: hero-orb-float 20s ease-in-out infinite -7s;
}

.hero-glow-orb--blue {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: 5%;
    right: 15%;
    filter: blur(65px);
    animation: hero-orb-float 20s ease-in-out infinite -13s;
}

/* Grid overlay */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    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;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
}

/* Animated gradient line below hero */
.hero-gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(34, 211, 238, 0.4) 30%,
        rgba(59, 130, 246, 0.2) 50%,
        rgba(139, 92, 246, 0.4) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: hero-line-sweep 6s linear infinite;
    z-index: 1;
}


/* ==========================================================================
   9. Enhanced Page Hero (service / solution pages)
   ========================================================================== */

.page-hero-enhanced {
    position: relative;
    min-height: 60vh;
    padding-top: 140px;
    padding-bottom: var(--space-3xl, 64px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-enhanced .hero-enhanced::before {
    /* Inherit the mesh background from main hero */
    opacity: 0.7;
}

/* Breadcrumb styling */
.page-hero-enhanced .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted, #6B7280);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.page-hero-enhanced .breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.page-hero-enhanced .breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan, #22D3EE);
    transition: width 0.3s ease;
}

.page-hero-enhanced .breadcrumb a:hover {
    color: var(--accent-cyan, #22D3EE);
}

.page-hero-enhanced .breadcrumb a:hover::after {
    width: 100%;
}

.page-hero-enhanced .breadcrumb .separator {
    color: var(--text-muted, #6B7280);
    opacity: 0.5;
}

.page-hero-enhanced .breadcrumb .current {
    color: var(--text-primary);
}

/* Icon accent next to badge */
.page-hero-enhanced .hero-badge-enhanced .badge-icon {
    font-size: 0.9rem;
    color: var(--accent-cyan, #22D3EE);
}

.page-hero-enhanced .hero-title-enhanced {
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero-enhanced .hero-description-enhanced {
    font-size: 1.1rem;
}


/* ==========================================================================
   10. Responsive Overrides
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-enhanced {
        min-height: 80vh;
        padding-top: 120px;
    }

    .hero-title-enhanced {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .hero-description-enhanced {
        font-size: 1.1rem;
    }

    .hero-stats-enhanced .stat-value {
        font-size: 1.5rem;
    }

    .hero-stats-enhanced .stat-item {
        padding: 0 20px;
    }

    .page-hero-enhanced {
        min-height: 55vh;
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .hero-enhanced {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--space-3xl, 64px);
    }

    .hero-title-enhanced {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-description-enhanced {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-cta-enhanced {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-enhanced .btn-primary,
    .hero-cta-enhanced .btn-secondary,
    .hero-cta-enhanced .btn-enhanced-primary,
    .hero-cta-enhanced .btn-enhanced-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-stats-enhanced {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stats-enhanced .stat-item {
        padding: 0 16px;
    }

    .hero-stats-enhanced .stat-item + .stat-item::before {
        display: none;
    }

    .trust-bar-enhanced {
        padding: 16px 20px;
        gap: 12px;
    }

    .trust-bar-enhanced .trust-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .page-hero-enhanced {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: var(--space-2xl, 48px);
    }

    .hero-grid-lines {
        display: none;
    }

    .hero-glow-orb--cyan,
    .hero-glow-orb--violet,
    .hero-glow-orb--blue {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-enhanced {
        padding-top: 100px;
    }

    .hero-title-enhanced {
        font-size: clamp(1.5rem, 7vw, 2rem);
        letter-spacing: -0.01em;
    }

    .hero-description-enhanced {
        font-size: 0.95rem;
    }

    .hero-badge-enhanced {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-stats-enhanced .stat-value {
        font-size: 1.25rem;
    }

    .hero-stats-enhanced .stat-label {
        font-size: 0.72rem;
    }

    .hero-grid-lines {
        display: none;
    }

    .hero-glow-orb--cyan,
    .hero-glow-orb--violet,
    .hero-glow-orb--blue {
        width: 180px;
        height: 180px;
        filter: blur(50px);
    }

    .page-hero-enhanced {
        padding-top: 100px;
    }

    .page-hero-enhanced .breadcrumb {
        font-size: 0.78rem;
    }
}


/* ==========================================================================
   11. Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-enhanced::before,
    .hero-enhanced::after,
    .hero-badge-enhanced .badge-dot,
    .hero-title-enhanced .text-gradient,
    .hero-glow-orb--cyan,
    .hero-glow-orb--violet,
    .hero-glow-orb--blue,
    .hero-gradient-line,
    .hero-badge-enhanced::before {
        animation: none;
    }

    .hero-description-enhanced,
    .hero-cta-enhanced,
    .hero-stats-enhanced,
    .trust-bar-enhanced .trust-badge {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-cta-enhanced .btn-primary:hover,
    .hero-cta-enhanced .btn-secondary:hover,
    .hero-cta-enhanced .btn-enhanced-primary:hover,
    .hero-cta-enhanced .btn-enhanced-secondary:hover {
        transform: none;
    }

    .hero-cta-enhanced .btn-primary:hover .btn-icon,
    .hero-cta-enhanced .btn-secondary:hover .btn-icon,
    .hero-cta-enhanced .btn-enhanced-primary:hover .btn-icon,
    .hero-cta-enhanced .btn-enhanced-secondary:hover .btn-icon {
        transform: none;
    }

    .trust-bar-enhanced .trust-badge:hover {
        transform: none;
    }

    .hero-enhanced::before { animation: none; }
    .hero-badge-enhanced::before { animation: none; }
    .text-gradient { animation: none; }
}


/* ==========================================================================
   12. Light Mode Overrides
   ========================================================================== */

[data-theme="light"] .hero-enhanced::before {
    background: radial-gradient(
            ellipse 80% 60% at 20% 40%,
            rgba(34, 211, 238, 0.06) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 60% 80% at 80% 30%,
            rgba(139, 92, 246, 0.05) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 70% 50% at 50% 80%,
            rgba(59, 130, 246, 0.04) 0%,
            transparent 60%
        );
}

[data-theme="light"] .hero-enhanced::after {
    background: rgba(59, 130, 246, 0.3);
    box-shadow:
        60vw 10vh 0 0 rgba(139, 92, 246, 0.2),
        25vw 60vh 0 0 rgba(34, 211, 238, 0.2),
        75vw 45vh 0 0 rgba(59, 130, 246, 0.2),
        40vw 20vh 0 1px rgba(34, 211, 238, 0.15),
        85vw 70vh 0 0 rgba(139, 92, 246, 0.15),
        10vw 75vh 0 1px rgba(59, 130, 246, 0.15),
        55vw 80vh 0 0 rgba(34, 211, 238, 0.15);
}

[data-theme="light"] .hero-badge-enhanced {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

[data-theme="light"] .hero-badge-enhanced::before {
    background: linear-gradient(
        90deg,
        rgba(59, 130, 246, 0.25),
        rgba(139, 92, 246, 0.25),
        rgba(34, 211, 238, 0.25),
        rgba(59, 130, 246, 0.25)
    );
    background-size: 200% 100%;
}

[data-theme="light"] .hero-cta-enhanced .btn-secondary,
[data-theme="light"] .hero-cta-enhanced .btn-enhanced-secondary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--text-primary);
}

[data-theme="light"] .hero-cta-enhanced .btn-secondary:hover,
[data-theme="light"] .hero-cta-enhanced .btn-enhanced-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

[data-theme="light"] .trust-bar-enhanced {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .trust-bar-enhanced::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.2),
        rgba(139, 92, 246, 0.2),
        transparent
    );
}

[data-theme="light"] .trust-bar-enhanced .trust-badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .trust-bar-enhanced .trust-badge:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.06);
}

[data-theme="light"] .hero-stats-enhanced .stat-item + .stat-item::before {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(59, 130, 246, 0.15),
        rgba(139, 92, 246, 0.15),
        transparent
    );
}

[data-theme="light"] .hero-glow-orb--cyan {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow-orb--violet {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow-orb--blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-lines {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-gradient-line {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.25) 30%,
        rgba(139, 92, 246, 0.15) 50%,
        rgba(34, 211, 238, 0.25) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
}

[data-theme="light"] .page-hero-enhanced .breadcrumb a:hover {
    color: var(--accent-blue, #3B82F6);
}

[data-theme="light"] .page-hero-enhanced .breadcrumb a::after {
    background: var(--accent-blue, #3B82F6);
}
