/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   AMBIENT BACKGROUNDS & PARTICLES
   ========================================================================== */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.7;
}

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-5vh) scale(1.2);
        opacity: 0;
    }
}

/* ==========================================================================
   HERO LAYOUT
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    padding-top: 7rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;

}

/* ==========================================================================
   LEFT COLUMN CONTENT
   ========================================================================== */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.3rem;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.05);
    animation: pulseGlow 3s infinite ease-in-out;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
}



.hero-title {
    font-size: clamp(2.5rem, 3.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ==========================================================================
   CTA BUTTONS (WITH RIPPLE, GLOW, MAGNETIC EFFECTS)
   ========================================================================== */
.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    position: relative;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-emerald), rgba(16, 185, 129, 0.8));
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Focus States for Accessibility */
.btn:focus-visible {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* ==========================================================================
   TRUST FEATURES ROW
   ========================================================================== */
.trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 550px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--primary-emerald);
    color: var(--primary-emerald);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   RIGHT COLUMN ILLUSTRATION (3D HOVER, GLOW, GEOMETRY)
   ========================================================================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Islamic Geometric Background & Circles */
.islamic-geometry {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px double rgba(34, 211, 238, 0.08);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
}

.islamic-geometry::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(245, 158, 11, 0.08);
    transform: rotate(45deg);
}

.neon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
}

.ring-1 {
    width: 440px;
    height: 440px;
    border-top: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--primary-emerald);
    opacity: 0.2;
    animation: rotateRing 20s infinite linear;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-left: 1px solid var(--gold-highlight);
    opacity: 0.15;
    animation: rotateRing 14s infinite linear reverse;
}

@keyframes rotateRing {
    100% {
        transform: rotate(360deg);
    }
}

.crescent-moon {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: -10px 10px 0 0 var(--gold-highlight);
    opacity: 0.35;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 15px var(--gold-highlight));
}

/* Floating 3D Quran Object Simulation */
.quran-container {
    position: relative;
    width: 180px;
    height: 140px;
    transform-style: preserve-3d;
    animation: floatQuran 5s infinite ease-in-out;
    z-index: 15;
}

.holy-quran {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(30deg) rotateY(-25deg);
}

.quran-cover {
    position: absolute;
    background: linear-gradient(135deg, #064e3b, #022c22);
    border: 2px solid var(--gold-highlight);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.quran-cover.front {
    width: 100%;
    height: 100%;
    transform: translateZ(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quran-cover.front h1 {
    font-size: 1.75rem;
    color: var(--gold-highlight);
}

.quran-pages {
    position: absolute;
    width: 96%;
    height: 96%;
    top: 2%;
    left: 2%;
    background: #fef08a;
    transform: translateZ(2px);
    border-right: 4px solid var(--gold-highlight);
    /* Represents golden page edging */
    box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.1);
}

.rehal-stand {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 20px;
    background: linear-gradient(90deg, #1e293b, #0f172a);
    border-radius: 10px;
    border-bottom: 4px solid var(--accent-cyan);
    box-shadow: 0 15px 30px rgba(34, 211, 238, 0.2);
}

.light-ray {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 250px;
    background: linear-gradient(to bottom, rgba(34, 211, 238, 0.15), transparent);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

@keyframes floatQuran {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* ==========================================================================
   FLOATING UI CARDS & WIDGETS
   ========================================================================== */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: floatCard 6s infinite ease-in-out;
    animation-delay: var(--delay);
    z-index: 20;
    max-width: 240px;
}

.card-icon {
    font-size: 1.4rem;
}

.card-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.card-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.live-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.card-1 {
    top: 15%;
    left: -5%;
}

.card-2 {
    bottom: 25%;
    right: -5%;
}

.card-3 {
    bottom: 10%;
    left: 5%;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Simulated Interactive Video Call Window Dashboard */
.video-window-widget {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 200px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 18;
}

.video-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.video-title {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: auto;
}

.video-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.student-avatar {
    width: 45px;
    height: 45px;
    background: rgba(34, 211, 238, 0.2);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.progress-container {
    width: 100%;
}

.progress-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 78%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
    border-radius: 100px;
}

/* ==========================================================================
   BOTTOM STATISTICS BAR
   ========================================================================== */
.stats-bar {
    background: rgba(11, 18, 32, 0.85);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 0;
    position: relative;
    z-index: 30;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--text-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES & INTERACTIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(34, 211, 238, 0.05);
    }

    50% {
        box-shadow: 0 4px 30px rgba(34, 211, 238, 0.25);
        border-color: rgba(34, 211, 238, 0.4);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        /* Illustration relocates above the content text on smaller viewports */
    }

    .video-window-widget {
        right: 0;
    }
}

@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .floating-card {
        padding: 0.5rem 0.8rem;
    }

    .card-1 {
        left: 0;
        top: 5%;
    }

    .card-2 {
        right: 0;
        bottom: 15%;
    }

    .card-3 {
        left: 5%;
        bottom: 0;
    }

    .video-window-widget {
        display: none;
    }

    /* Clean layout prioritization on mobile devices */
}


/* ==========================================================================
   SECTION MAIN LAYOUT
   ========================================================================== */
.futuristic-why-choose {
    position: relative;
    padding: 140px 24px;
    background-color: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   BACKGROUND & EFFECTS (PREMIUM 2035)
   ========================================================================== */
.bg-ambient-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: var(--primary-emerald);
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: -10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    animation: floatGlow 18s ease-in-out infinite alternate-reverse;
}

/* Moving Light Streaks/Beams */
.light-beam {
    position: absolute;
    width: 1px;
    height: 400px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.3;
    filter: blur(2px);
}

.beam-1 {
    top: 20%;
    left: 15%;
    animation: moveBeam 15s linear infinite;
}

.beam-2 {
    bottom: 10%;
    right: 20%;
    animation: moveBeam 20s linear infinite reverse;
}

/* Islamic Geometric Line Art & Grid Overlay */
.geometric-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        /* Subtle Technical Grid Grid */
        linear-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.1) 1px, transparent 1px),
        /* Mimicked Islamic Star pattern using gradient arrays */
        radial-gradient(circle at 50% 50%, var(--accent-cyan) 1px, transparent 2px);
    background-size: 80px 80px, 80px 80px, 40px 40px;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   HEADER DESIGN
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px auto;
}

/* Glowing Badge */
.glowing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-emerald);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.05), inset 0 0 8px rgba(16, 185, 129, 0.1);
    margin-bottom: 24px;
}

.badge-star {
    color: var(--gold-highlight);
    text-shadow: 0 0 8px var(--gold-highlight);
}

/* Headings */
.main-heading {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.section-description {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================================================
   FEATURE GRID & PREMIUM CARDS
   ========================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    perspective: 1000px;
    /* Essential for 3D Tilt */
}

.feature-card {
    position: relative;
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 40px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: transform 0.1s ease, box-shadow var(--transition-smooth);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Card Interactive Layering */
.feature-card:hover {
    box-shadow: 0 20px 40px rgba(11, 18, 32, 0.5),
        0 0 30px rgba(34, 211, 238, 0.15);
}

/* Light Sweep Sweep effect element */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(34, 211, 238, 0.08),
            transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.feature-card:hover::before {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Precision Gold Accent Details */
.feature-card::after {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--gold-highlight);
    opacity: 0.2;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
    text-shadow: 0 0 8px var(--gold-highlight);
}

/* Dynamic JS Mouse Tracker Glow Spot */
.card-glow-tracker {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(16, 185, 129, 0.15), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.feature-card:hover .card-glow-tracker {
    opacity: 1;
}

/* Accessibility Focus States */
.feature-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.4);
}

/* Card Sub-Elements */
.card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(30px);
    /* Pushes elements outward dynamically on tilt */
}

/* Icons Design */
.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.8);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    box-shadow: inset 0 0 12px rgba(34, 211, 238, 0.1);
    transition: var(--transition-smooth);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.feature-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    animation: gentleFloat 4s ease-in-out infinite;
}

/* Stagger icon floating offsets */
.feature-card:nth-child(even) .feature-icon {
    animation-delay: -2s;
}

.feature-card:hover .icon-wrapper {
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.feature-card:hover .icon-wrapper::after {
    opacity: 1;
}

/* Titles & Typography */
.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* ==========================================================================
   ANIMATION & INTERSECTION OBSERVER CORE CLASSES
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.12;
    }

    100% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.18;
    }
}

@keyframes moveBeam {
    0% {
        transform: translateY(-100%) translateX(-50px);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(150%) translateX(50px);
        opacity: 0;
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT MATRIX
   ========================================================================== */

/* 1440px+ Desktop Screens */
@media (max-width: 1440px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
    }
}

/* 1024px Laptop/Tablet-Landscape Screens */
@media (max-width: 1120px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .futuristic-why-choose {
        padding: 100px 32px;
    }
}

/* 768px Tablet-Portrait Screens */
@media (max-width: 768px) {
    .futuristic-why-choose {
        padding: 80px 24px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .main-heading {
        margin-bottom: 16px;
    }
}

/* 480px Premium Mobile Screens */
@media (max-width: 520px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .futuristic-why-choose {
        padding: 60px 16px;
    }

    .feature-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .icon-wrapper {
        margin-bottom: 20px;
        width: 56px;
        height: 56px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }
}

/* Performance Guard: Respect user hardware settings */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-card {
        transition: none !important;
        transform: none !important;
    }

    .glow-orb,
    .light-beam,
    .feature-icon {
        animation: none !important;
    }
}

/* ==========================================================================
   SECTION STRUCTURE & LAYOUT OVERLAY
   ========================================================================== */
.quran-features-section {
    position: relative;
    padding: 120px 24px;
    background-color: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   PREMIUM BACKGROUND EFFECTS (ISLAMIC CYBERPUNK)
   ========================================================================== */
.bg-fx-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Blur Lighting Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: -15%;
    left: 20%;
    width: 550px;
    height: 550px;
    background: var(--primary-emerald);
    animation: pulseOrb 10s ease-in-out infinite alternate;
}

.orb-cyan {
    bottom: -10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    animation: pulseOrb 14s ease-in-out infinite alternate-reverse;
}

/* Technical Dynamic Light Streaks */
.neon-light-beam {
    position: absolute;
    width: 1.5px;
    height: 350px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.25;
    filter: blur(1px);
}

.beam-v1 {
    top: 10%;
    left: 8%;
    animation: sweepVertical 12s linear infinite;
}

.beam-v2 {
    bottom: 5%;
    right: 12%;
    animation: sweepVertical 16s linear infinite reverse;
}

/* Islamic Geometric & Grid Texturing */
.islamic-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2.5px);
    background-size: 64px 64px, 64px 64px, 32px 32px;
}

#features-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px auto;
}

.glowing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    margin-bottom: 24px;
    box-shadow: inset 0 0 8px rgba(34, 211, 238, 0.1);
}

.main-heading {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   INTERACTIVE FEATURES GRID
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 1200px;
}

/* ==========================================================================
   PREMIUM CARD ARCHITECTURE
   ========================================================================== */
.feature-card {
    position: relative;
    background: var(--glass-bg);
    border-radius: 22px;
    padding: 48px 36px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

/* Top Decorative Highlight Animated Line */
.card-border-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.3);
    transition: var(--transition-smooth);
    opacity: 0.7;
}

/* Floating Structural Deco Circles */
.card-deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
}

.circle-2 {
    width: 160px;
    height: 160px;
    bottom: -50px;
    left: -50px;
    opacity: 0.5;
}

/* Dynamic Mouse Glow Overlay */
.card-glow-tracker {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 140px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(34, 211, 238, 0.12), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Inner Preservation Layer for 3D pushes */
.card-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(40px);
}

/* Futuristic Icon Framework */
.icon-frame {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.8);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    box-shadow: inset 0 0 12px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
}

.card-icon {
    font-size: 2rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

/* Typography elements */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--text-light) 60%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.card-description {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 40px;
    flex-grow: 1;
}

/* ==========================================================================
   CTA BUTTON MASTER MECHANICS
   ========================================================================== */
.cta-btn {
    position: relative;
    width: max-content;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform var(--transition-smooth);
}

/* Light Sweep Sweep effect element for card */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* ==========================================================================
   THEMATIC HOVER & COMPONENT VARIANTS
   ========================================================================== */

/* Universal Card Hover Micro-Interactions */
.feature-card:hover {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(34, 211, 238, 0.3);
}

.feature-card:hover .card-glow-tracker {
    opacity: 1;
}

.feature-card:hover .card-border-anim {
    transform: scaleX(1);
}

.feature-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}

.feature-card:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .cta-btn .btn-arrow {
    transform: translateX(5px);
}

.feature-card:hover .cta-btn {
    transform: scale(1.02);
}

/* Theme Theme 1: Emerald (Quran Player) */
.theme-emerald:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(16, 185, 129, 0.15);
}

.theme-emerald .card-border-anim {
    background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
}

.btn-emerald {
    background: linear-gradient(135deg, #059669 0%, var(--primary-emerald) 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.theme-emerald:hover .icon-frame {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.btn-emerald:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
}

/* Theme Theme 2: Gold (Daily Dua) */
.theme-gold:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
}

.theme-gold .card-border-anim {
    background: linear-gradient(90deg, transparent, var(--gold-highlight), transparent);
}

.btn-gold {
    background: linear-gradient(135deg, #D97706 0%, var(--gold-highlight) 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.theme-gold:hover .icon-frame {
    border-color: var(--gold-highlight);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

/* Theme Theme 3: Cyan (Download Quran) */
.theme-cyan:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(34, 211, 238, 0.15);
}

.btn-cyan {
    background: linear-gradient(135deg, #0891B2 0%, var(--accent-cyan) 100%);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
}

.theme-cyan:hover .icon-frame {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.btn-cyan:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
}

/* Accessibility Focus States */
.feature-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   CORE SCROLL REVEAL STRUCTURES
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes pulseOrb {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }

    100% {
        transform: translateY(-25px) scale(1.08);
        opacity: 0.15;
    }
}

@keyframes sweepVertical {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    15% {
        opacity: 0.35;
    }

    85% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVE MATRIX MAPPING
   ========================================================================== */

/* Laptop / Desktop Compression */
@media (max-width: 1200px) {
    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 40px 28px;
    }
}

/* Tablet Layout Matrix */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .quran-features-section {
        padding: 90px 32px;
    }
}

/* Mobile Layout Matrix */
@media (max-width: 720px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quran-features-section {
        padding: 70px 16px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .feature-card {
        padding: 40px 24px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hardware Accelerator Safety for Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-card {
        transition: none !important;
        transform: none !important;
    }

    .ambient-orb,
    .neon-light-beam,
    .card-icon {
        animation: none !important;
    }
}

/* ==========================================================================
   CORE PLATFORM SECTION SECTION STRUCTURE
   ========================================================================== */
.quran-platform-section {
    position: relative;
    padding: 120px 24px;
    background-color: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.platform-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   PREMIUM CYBER-ISLAMIC BACKGROUND PHENOMENA
   ========================================================================== */
.platform-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.14;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: var(--primary-emerald);
    animation: floatingOrbGlow 14s ease-in-out infinite alternate;
}

.orb-cyan {
    bottom: -5%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: var(--accent-cyan);
    animation: floatingOrbGlow 20s ease-in-out infinite alternate-reverse;
}

.moving-light-beam {
    position: absolute;
    width: 1px;
    height: 450px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.2;
    filter: blur(2px);
}

.beam-alpha {
    top: 15%;
    left: 25%;
    animation: beamTravelVertical 18s linear infinite;
}

.beam-beta {
    bottom: 10%;
    right: 30%;
    animation: beamTravelVertical 24s linear infinite reverse;
}

/* Structural Islamic Pattern & Techno Grid Hybrid Layer */
.islamic-cyber-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.1) 1px, transparent 1px),
        /* Mimicked Islamic geometric point arrays via cross radial patterns */
        radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2.5px);
    background-size: 80px 80px, 80px 80px, 40px 40px;
}

#platform-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTION HEADER GRAPHICS
   ========================================================================== */
.platform-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.1);
    margin-bottom: 24px;
}

.platform-heading {
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   WORKSPACE MAIN TWO-COLUMN MATRIX
   ========================================================================== */
.platform-workspace-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

/* ==========================================================================
   LEFT PANEL: HIGH TECH LUXURY ISLAMIC DASHBOARD ENGINE
   ========================================================================== */
.dashboard-viewport {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    will-change: transform;
}

.dashboard-frame-container {
    background: rgba(11, 18, 32, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(34, 211, 238, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* Top bar graphics windowing emulator */
.dashboard-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-controls span:nth-child(1) {
    background-color: #EF4444;
}

.window-controls span:nth-child(2) {
    background-color: #F59E0B;
}

.window-controls span:nth-child(3) {
    background-color: #10B981;
}

.dashboard-search-bar {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-family: monospace;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Panel Layout Core Engine */
.dashboard-core-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Common Generic Panel Attributes */
.dash-panel {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dash-panel:hover {
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-2px);
}

.dash-panel h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Micro-floating cycles inside dashboard mockup */
.floating-ui-1 {
    animation: miniFloatCycle 6s ease-in-out infinite alternate;
}

.floating-ui-2 {
    animation: miniFloatCycle 7s ease-in-out infinite alternate-reverse 0.5s;
}

.floating-ui-3 {
    animation: miniFloatCycle 8s ease-in-out infinite alternate 1s;
}

/* Panel 1 Styling: Profile */
.profile-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    grid-column: span 1;
}

.profile-avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--primary-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(16, 185, 129, 0.3);
}

.avatar-icon {
    font-size: 1.2rem;
}

.profile-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.course-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Panel 2 Styling: Live Class Timer */
.live-class-panel {
    grid-column: span 1;
    border-left: 3px solid var(--primary-emerald);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-emerald);
    box-shadow: 0 0 8px var(--primary-emerald);
    animation: pulseBlink 1.5s infinite;
}

.live-class-timer {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 8px 0;
}

.time-block small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 1px;
}

.panel-meta-text {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Panel 3 Styling: Quran Progress Tracker */
.quran-progress-panel {
    grid-column: span 2;
}

.quran-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.gold-text {
    color: var(--gold-highlight);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.2);
}

.linear-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}

.linear-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
    border-radius: 100px;
}

.panel-footer-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
}

/* Panel 4 Styling: Analytics Progress Data Graphics */
.analytics-panel {
    grid-column: span 1;
}

.chart-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.circular-progress-box {
    position: relative;
    width: 64px;
    height: 64px;
}

.circular-progress-box svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 4;
}

.circle-fill-anim {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-in-out;
}

.circular-progress-box .counter-text {
    position: absolute;
    top: 42%;
    left: 44%;
    transform: translate(-50%, -50%);
    font-size: 0.82rem;
    font-weight: 700;
}

.circular-progress-box .pct-sign {
    position: absolute;
    top: 38%;
    left: 72%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
    color: var(--text-muted);
}

.chart-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mini Bar Elements */
.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.chart-bar {
    width: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
}

.chart-bar.active-bar {
    background: var(--primary-emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.chart-bar span {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* Panel 5 Styling: Homework */
.homework-panel {
    grid-column: span 1;
}

.badge-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.panel-tag {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold-highlight);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-cyan {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.homework-assignment-text {
    font-size: 0.76rem;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 8px;
}

.teacher-feedback-note {
    font-size: 0.66rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: 8px;
    border-left: 2px solid var(--accent-cyan);
}

/* Panel 6 Styling: Report Card */
.report-panel {
    grid-column: span 2;
}

.report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-glow-green {
    font-size: 0.78rem;
    color: var(--primary-emerald);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
    font-weight: 500;
}

.grade-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-highlight), #D97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.notification-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   RIGHT SIDE: MULTI-COLUMN COMPACT TILES GRID
   ========================================================================== */
.features-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-tile {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Mouse Tracker Spot overlay */
.tile-glow-tracer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 100px at var(--m-x, 0px) var(--m-y, 0px), rgba(34, 211, 238, 0.1), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tile-inner {
    position: relative;
    z-index: 5;
    transform: translateZ(25px);
    /* Push out content slightly inside tilt framework */
}

.tile-icon-frame {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(11, 18, 32, 0.8);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
}

.tile-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.tile-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Light Sweep effect for Cards */
.feature-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.04), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* Micro-Interaction States on Tiles Hover */
.feature-tile:hover {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(34, 211, 238, 0.1);
}

.feature-tile:hover .tile-glow-tracer {
    opacity: 1;
}

.feature-tile:hover .tile-icon-frame {
    border-color: var(--accent-cyan);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.25);
}

.feature-tile:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyboard accessibility outline normalization */
.feature-tile:focus-visible,
.integration-node:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   INTEGRATED LEARNING PLATFORMS SUBSECTION (FOOTER MAPPINGS)
   ========================================================================== */
.integrations-container {
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.integrations-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Horizontal Floating Node Track Flex */
.integrations-row-scroller {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* Node Elements Structure */
.integration-node {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    padding: 14px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: nodeFloatCycle 5s ease-in-out infinite alternate;
}

/* Apply continuous varied offsets into floating arrays */
.integration-node:nth-child(2n) {
    animation-delay: -1s;
    animation-duration: 5.5s;
}

.integration-node:nth-child(3n) {
    animation-delay: -2s;
    animation-duration: 6s;
}

.node-glow {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.node-icon {
    font-size: 1.2rem;
}

.node-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Integration node hover features */
.integration-node:hover {
    border-color: var(--accent-cyan);
    background: rgba(11, 18, 32, 0.9);
    transform: scale(1.05) translateY(-4px) !important;
    /* Overrule native running frame animations temporarily */
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.15);
}

.integration-node:hover .node-glow {
    opacity: 1;
}

/* ==========================================================================
   SCROLL INTERSECTION ENGINE STANDARD SETS
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.triggered {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   KEYFRAME ENGINE MATRICES
   ========================================================================== */
@keyframes floatingOrbGlow {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.12;
    }

    100% {
        transform: translateY(-30px) scale(1.06);
        opacity: 0.16;
    }
}

@keyframes beamTravelVertical {
    0% {
        transform: translateY(-100%) translateX(-30px);
        opacity: 0;
    }

    20% {
        opacity: 0.35;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(120vh) translateX(30px);
        opacity: 0;
    }
}

@keyframes miniFloatCycle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

@keyframes nodeFloatCycle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

@keyframes pulseBlink {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATION MATRIX
   ========================================================================== */

/* Laptop / Compressed Monitors Viewports */
@media (max-width: 1200px) {
    .platform-workspace-grid {
        grid-template-columns: 1fr;
        /* Drop side columns down to clean stack rows */
        gap: 60px;
    }

    .dashboard-viewport {
        max-width: 760px;
        margin: 0 auto;
    }
}

/* Tablet Screens Viewports */
@media (max-width: 840px) {
    .quran-platform-section {
        padding: 90px 32px;
    }

    .platform-header {
        margin-bottom: 60px;
    }
}

/* Small Smartphone Viewports */
@media (max-width: 580px) {
    .quran-platform-section {
        padding: 60px 16px;
    }

    .dashboard-viewport {
        padding: 0;
    }

    .dashboard-frame-container {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .dashboard-core-layout {
        grid-template-columns: 1fr;
        /* Structural panel drop back into single layouts */
    }

    .dash-panel {
        grid-column: span 1 !important;
    }

    .features-wrapper-grid {
        grid-template-columns: 1fr;
        /* Double columns convert down into unified layout rows */
        gap: 16px;
    }

    .feature-tile {
        padding: 24px 20px;
    }

    .integrations-row-scroller {
        gap: 12px;
    }

    .integration-node {
        width: 100%;
        /* Nodes spread cleanly out to uniform horizontal button widths */
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Accessibility Standard Rules for Reduced Motion Flags */
@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-tile,
    .integration-node,
    .dash-panel {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .bg-orb,
    .moving-light-beam,
    .live-dot {
        animation: none !important;
    }
}

/* ==========================================================================
   SECTION MAIN HOUSING CONTAINER
   ========================================================================== */
.courses-section {
    position: relative;
    padding: 120px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   PREMIUM DIGITAL BACKGROUND ELEMENTS
   ========================================================================== */
.bg-ambience-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Depth Generating Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: -10%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: var(--primary-emerald);
    animation: orbFloatTrack 12s ease-in-out infinite alternate;
}

.orb-cyan {
    bottom: -10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    animation: orbFloatTrack 16s ease-in-out infinite alternate-reverse;
}

/* Digital Glowing Laser Line Layers */
.light-ray {
    position: absolute;
    width: 1.5px;
    height: 400px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.18;
}

.ray-alpha {
    top: 5%;
    right: 8%;
    animation: rayTravelVertical 15s linear infinite;
}

.ray-beta {
    bottom: 5%;
    left: 12%;
    animation: rayTravelVertical 20s linear infinite reverse;
}

/* Subtle Geometric Matrix Layer */
.islamic-geo-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2px);
    background-size: 64px 64px, 64px 64px, 32px 32px;
}

#ambient-star-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTION HEADER TYPOGRAPHY
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px auto;
}

.glowing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    box-shadow: inset 0 0 8px rgba(34, 211, 238, 0.1);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 22px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan), var(--primary-emerald));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientShift 6s linear infinite;
}

.section-desc {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   COURSE SYSTEM RESPONSIVE GRID MATRIX
   ========================================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 1400px;
}

/* ==========================================================================
   PREMIUM COURSE CARD ARCHITECTURE
   ========================================================================== */
.course-card {
    position: relative;
    background: var(--glass-bg);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform-style: preserve-3d;
    cursor: pointer;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

/* Animated Border Top Accent Line */
.card-border-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.25);
    transition: var(--transition-smooth);
    z-index: 10;
}

/* Soft Decorative Inner Orbs */
.card-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.dot-1 {
    width: 140px;
    height: 140px;
    top: -30px;
    right: -30px;
}

.dot-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
    opacity: 0.6;
}

/* Dynamic Vector Guided Mouse Glow Spotlight Overlay */
.card-cursor-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(34, 211, 238, 0.12), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Card Media Header Frame */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: rgba(11, 18, 32, 0.5);
    transform: translateZ(10px);
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.img-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 101%);
    z-index: 5;
}

/* Card Typography & Layout Body */
.card-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 5;
    transform: translateZ(30px);
}

.course-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.course-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Meta Data Alignment Metrics Row */
.meta-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 28px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    font-size: 1rem;
}

.meta-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Performance Category Labels */
.meta-text[class^="badge-"] {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-beginner {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-emerald);
}

.badge-inter {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold-highlight);
}

.badge-advanced {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
}

.badge-all {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

/* ==========================================================================
   LEARN MORE BUTTON ARCHITECTURE
   ========================================================================== */
.learn-more-btn {
    position: relative;
    width: max-content;
    padding: 12px 26px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-arrow {
    font-size: 1.05rem;
    transition: transform var(--transition-smooth);
}

/* Light Sweep Reflect Layer across entire Card body */
.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* ==========================================================================
   MICRO-INTERACTION HOVER VARIANT MATRIX
   ========================================================================== */
.course-card:hover {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(34, 211, 238, 0.3);
}

.course-card:hover .card-cursor-glow {
    opacity: 1;
}

.course-card:hover .card-border-edge {
    transform: scaleX(1);
}

.course-card:hover .course-img {
    transform: scale(1.06);
}

.course-card:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(.4, 0, .2, 1);
}

.course-card:hover .learn-more-btn .btn-arrow {
    transform: translateX(4px);
}

.course-card:hover .learn-more-btn {
    transform: scale(1.02);
}

/* Theme Configuration Theme 1: Emerald Theme Modifiers */
.theme-emerald:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(16, 185, 129, 0.15);
}

.theme-emerald .card-border-edge {
    background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
}

.btn-emerald {
    background: linear-gradient(135deg, #059669 0%, var(--primary-emerald) 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.btn-emerald:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
}

/* Theme Configuration Theme 2: Cyan Theme Modifiers */
.theme-cyan:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(34, 211, 238, 0.15);
}

.btn-cyan {
    background: linear-gradient(135deg, #0891B2 0%, var(--accent-cyan) 100%);
    box-shadow: 0 4px 14px rgba(34, 211, 238, 0.2);
}

.btn-cyan:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
}

/* Theme Configuration Theme 3: Gold Theme Modifiers */
.theme-gold:hover {
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
}

.theme-gold .card-border-edge {
    background: linear-gradient(90deg, transparent, var(--gold-highlight), transparent);
}

.btn-gold {
    background: linear-gradient(135deg, #D97706 0%, var(--gold-highlight) 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

/* Focus Accessible Indicators */
.course-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   SCROLL INTERSECTION ANIMATION WRAPPER
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATION TIMELINE KEYFRAMES
   ========================================================================== */
@keyframes orbFloatTrack {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }

    100% {
        transform: translateY(-20px) scale(1.06);
        opacity: 0.14;
    }
}

@keyframes rayTravelVertical {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    15% {
        opacity: 0.3;
    }

    85% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes textGradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN VIEWPORT BREAKPOINTS
   ========================================================================== */

/* Laptop Grid Viewports Compression */
@media (max-width: 1200px) {
    .courses-grid {
        gap: 24px;
    }

    .card-content {
        padding: 28px 24px;
    }
}

/* Tablet Layout Matrix Viewports Breakpoint */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .courses-section {
        padding: 90px 32px;
    }
}

/* Compact Mobile Viewports Breakpoint */
@media (max-width: 680px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .courses-section {
        padding: 70px 16px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .course-card {
        border-radius: 20px;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .learn-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hardware Accelerator Safety Rules for Reduced Motion Flags */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .course-card {
        transition: none !important;
        transform: none !important;
    }

    .course-img {
        transition: none !important;
    }

    .glow-orb,
    .light-ray,
    .gradient-text {
        animation: none !important;
    }
}

/* ==========================================================================
   MAIN ROADMAP HOUSING CONTEXT
   ========================================================================== */
.journey-section {
    position: relative;
    padding: 140px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journey-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   PREMIUM AMBIENT GRAPHIC LAYERS
   ========================================================================== */
.journey-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* High-Definition Luminous Gas Blurs */
.bg-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.13;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: 5%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: var(--primary-emerald);
    animation: luxuryFloatOrb 15s ease-in-out infinite alternate;
}

.orb-cyan {
    bottom: 5%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: var(--accent-cyan);
    animation: luxuryFloatOrb 22s ease-in-out infinite alternate-reverse;
}

/* Kinetic Vertical Laser Vectors */
.cyber-light-ray {
    position: absolute;
    width: 1px;
    height: 480px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.15;
}

.ray-left {
    left: 15%;
    top: 10%;
    animation: vectorTravel 20s linear infinite;
}

.ray-right {
    right: 15%;
    bottom: 10%;
    animation: vectorTravel 25s linear infinite reverse;
}

/* Hybrid Technical Islamic Grid Array */
.islamic-geo-matrix {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2px);
    background-size: 80px 80px, 80px 80px, 40px 40px;
}

#journey-star-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   TYPOGRAPHIC HEADER COMPONENTS
   ========================================================================== */
.journey-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 100px auto;
}

.cyber-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.08);
    margin-bottom: 24px;
}

.journey-title {
    font-size: clamp(2.5rem, 4.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.animated-gradient-text {
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan), var(--primary-emerald));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowTextGradient 5s linear infinite;
}

.journey-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   TIMELINE PLATFORM INTERFACE VIEWPORT
   ========================================================================== */
.timeline-workspace {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

/* Continuous Center Line Track Backbone */
.timeline-backbone-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    z-index: 1;
}

/* Scroll Triggered Dynamic Fill Overlay */
.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Regulated inside Javascript runtime loops */
    background: linear-gradient(to bottom, var(--primary-emerald), var(--accent-cyan));
    box-shadow: 0 0 15px var(--accent-cyan);
    transition: height 0.1s linear;
}

/* Kinetic Traveling Light Laser Particle Pulse */
.timeline-pulse-laser {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), var(--primary-emerald), transparent);
    transform: translateX(-50%);
    border-radius: 100px;
    filter: drop-shadow(0 0 8px var(--accent-cyan));
    animation: laserTravelDown 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ==========================================================================
   ROW PACK MATRIX ARCHITECTURE
   ========================================================================== */
.timeline-node-row {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 70px;
    z-index: 5;
}

.timeline-node-row:last-child {
    margin-bottom: 0;
}

.left-align {
    justify-content: flex-start;
    padding-right: 50%;
}

.right-align {
    justify-content: flex-end;
    padding-left: 50%;
}

/* ==========================================================================
   TIMELINE STATIONARY GLOW MARKERS
   ========================================================================== */
.timeline-node-marker {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.marker-core-pulse {
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: transparent;
    transition: background-color 0.4s ease;
}

/* Marker State Activation Signalling Triggers via Scroll Track Engine */
.timeline-node-marker.active-glow {
    border-color: var(--accent-cyan);
    background: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-cyan), inset 0 0 4px var(--accent-cyan);
}

.timeline-node-marker.active-glow .marker-core-pulse {
    background: var(--primary-emerald);
    box-shadow: 0 0 8px var(--primary-emerald);
    animation: markerBlinkPulse 1.8s ease-in-out infinite alternate;
}

/* ==========================================================================
   PREMIUM HIGH-TECH GLASSMORPHISM ROADMAP CARDS
   ========================================================================== */
.journey-card {
    position: relative;
    width: 90%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 32px;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), inset 0 0 20px rgba(34, 211, 238, 0.02);
    transform-style: preserve-3d;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
    cursor: pointer;
    animation: globalCardFloat 6s ease-in-out infinite alternate;
}

/* Stagger floating cycle parameters over distinct step nodes */
.timeline-node-row:nth-child(2n) .journey-card {
    animation-delay: -1.5s;
    animation-duration: 6.5s;
}

.timeline-node-row:nth-child(3n) .journey-card {
    animation-delay: -3s;
    animation-duration: 7s;
}

.left-align .journey-card {
    margin-right: auto;
    margin-left: 40px;
}

.right-align .journey-card {
    margin-left: auto;
    margin-right: 40px;
}

/* Micro Border Top Edge Accents */
.card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.25);
    transition: var(--transition-smooth);
    z-index: 10;
}

/* Numeric Floating Index Tag */
.step-counter-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: monospace;
    color: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(11, 18, 32, 0.4);
    transition: var(--transition-smooth);
}

/* Interactive Vector Vector Cursor Tracker Overlay Spot */
.card-mouse-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--c-x, 0px) var(--c-y, 0px), rgba(34, 211, 238, 0.1), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Internal Core Flex Configuration Maps */
.card-inner-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    transform: translateZ(25px);
}

.card-icon-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: rgba(11, 18, 32, 0.8);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
}

.card-body-text {
    display: flex;
    flex-direction: column;
}

.card-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-step-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Reflect Sweep Frame Effect */
.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.04), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* ==========================================================================
   CARD HOVER GRAPHICAL PHENOMENA
   ========================================================================== */
.journey-card:hover {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(34, 211, 238, 0.32);
    box-shadow: 0 25px 55px rgba(11, 18, 32, 0.7), 0 0 30px rgba(34, 211, 238, 0.12);
}

.journey-card:hover .card-mouse-glow {
    opacity: 1;
}

.journey-card:hover .card-top-accent {
    transform: scaleX(1);
}

.journey-card:hover .step-counter-badge {
    color: var(--accent-cyan);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.1);
}

.journey-card:hover .card-icon-avatar {
    border-color: var(--primary-emerald);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.journey-card:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyboard Accessibility Outline Standards */
.journey-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   SCROLL REVEAL CLASSIFICATION DEFINITIONS
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade-up.active-trigger {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   CORE INTERACTIVE KEYFRAME DICTIONARIES
   ========================================================================== */
@keyframes luxuryFloatOrb {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.11;
    }

    100% {
        transform: translateY(-25px) scale(1.05);
        opacity: 0.15;
    }
}

@keyframes vectorTravel {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes laserTravelDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes globalCardFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

@keyframes markerBlinkPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes flowTextGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS CONFIGURATION MATRIX
   ========================================================================== */

/* Laptop Grid Compressions */
@media (max-width: 1200px) {
    .left-align .journey-card {
        margin-left: 20px;
    }

    .right-align .journey-card {
        margin-right: 20px;
    }

    .journey-card {
        padding: 28px;
    }
}

/* Tablet Screens Viewport Configuration Model */
@media (max-width: 992px) {
    .timeline-backbone-track {
        left: 40px;
        transform: none;
    }

    .timeline-pulse-laser {
        left: 40px;
        transform: translateX(-50%);
    }

    .timeline-node-marker {
        left: 40px;
        transform: translate(-50%, -50%);
    }

    .timeline-node-row {
        padding-left: 80px !important;
        padding-right: 0 !important;
        margin-bottom: 50px;
    }

    .left-align,
    .right-align {
        justify-content: flex-start;
    }

    .left-align .journey-card,
    .right-align .journey-card {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .journey-header {
        margin-bottom: 70px;
    }

    .journey-section {
        padding: 100px 32px;
    }
}

/* Mobile Screens Viewport Configuration Model */
@media (max-width: 600px) {
    .timeline-backbone-track {
        left: 24px;
    }

    .timeline-pulse-laser {
        left: 24px;
    }

    .timeline-node-marker {
        left: 24px;
    }

    .timeline-node-row {
        padding-left: 56px !important;
        margin-bottom: 40px;
    }

    .journey-section {
        padding: 70px 16px;
    }

    .journey-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .card-inner-layout {
        gap: 16px;
        flex-direction: column;
    }

    .card-icon-avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.35rem;
        border-radius: 12px;
    }

    .step-counter-badge {
        top: auto;
        bottom: 20px;
        right: 20px;
        font-size: 0.95rem;
        padding: 1px 6px;
    }
}

/* Reduced Motion Optimization Guards */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .journey-card {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .timeline-pulse-laser,
    .bg-glow-orb,
    .cyber-light-ray,
    .animated-gradient-text,
    .marker-core-pulse {
        animation: none !important;
    }

    .timeline-progress-fill {
        transition: none !important;
    }
}


/* ==========================================================================
   MAIN SECTION CASING
   ========================================================================== */
.benefits-section {
    position: relative;
    padding: 140px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.benefits-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   PREMIUM CYBER-ISLAMIC BACKGROUND LAYER
   ========================================================================== */
.benefits-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ambient-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.blur-emerald {
    top: 10%;
    left: 5%;
    width: 550px;
    height: 550px;
    background: var(--primary-emerald);
    animation: backgroundOrbMove 14s ease-in-out infinite alternate;
}

.blur-cyan {
    bottom: 15%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    animation: backgroundOrbMove 18s ease-in-out infinite alternate-reverse;
}

.islamic-digital-grid {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2px);
    background-size: 70px 70px, 70px 70px, 35px 35px;
}

.cyber-light-beam {
    position: absolute;
    width: 2px;
    height: 500px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.12;
}

.beam-left {
    left: 8%;
    top: 20%;
    animation: verticalBeamRun 16s linear infinite;
}

.beam-right {
    right: 8%;
    bottom: 20%;
    animation: verticalBeamRun 22s linear infinite reverse;
}

#benefits-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   TYPOGRAPHIC SECTION HEADER
   ========================================================================== */
.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.glowing-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.08);
    margin-bottom: 24px;
}

.benefits-title {
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 22px;
}

.gradient-accent-text {
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan), var(--primary-emerald));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientRun 5s linear infinite;
}

.benefits-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   WORKSPACE DUAL SPLIT LAYOUT
   ========================================================================== */
.benefits-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 70px;
}

/* ==========================================================================
   LEFT SIDE: ADVANCED CSS ISLAMIC PLATFORM VISUAL RIG
   ========================================================================== */
.illustration-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.vector-scene-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 480px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Celestial Backdrop Skyline Elements */
.scene-skyline {
    position: absolute;
    inset: 0;
    height: 55%;
    background: linear-gradient(to bottom, #070d1a, transparent);
}

.crescent-moon-neon {
    position: absolute;
    top: 35px;
    left: 45px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: -9px 9px 0 0 var(--gold-highlight);
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.6));
    animation: steadyFloat 5s ease-in-out infinite alternate;
}

/* Mosque Structural CSS Vector Layout */
.mosque-silhouette-vector {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0.18;
}

.dome-vector {
    width: 70px;
    height: 70px;
    background: var(--primary-emerald);
    border-radius: 70px 70px 0 0;
    position: relative;
}

.dome-vector::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--primary-emerald);
}

.minaret-vector {
    width: 14px;
    height: 110px;
    background: var(--primary-emerald);
    position: absolute;
    bottom: 0;
}

.nv-left {
    left: 10px;
    border-radius: 4px 4px 0 0;
}

.nv-right {
    right: 10px;
    border-radius: 4px 4px 0 0;
}

/* Dashboard Casing Window Frame */
.digital-dashboard-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 82%;
    height: 250px;
    background: rgba(11, 18, 32, 0.85);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 211, 238, 0.1);
    overflow: hidden;
    animation: steadyFloat 6s ease-in-out infinite alternate -1s;
}

.dashboard-header-bar {
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.dash-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-r {
    background: #EF4444;
}

.dot-y {
    background: #F59E0B;
}

.dot-g {
    background: #10B981;
}

.dash-url-bar {
    margin-left: 14px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 12px;
    border-radius: 4px;
    width: 65%;
}

.dashboard-viewport {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: calc(100% - 28px);
}

/* Live Video Frame Module */
.teacher-stream-window {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.live-rec-indicator {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    background: #EF4444;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    animation: blinkIndicator 1.5s step-end infinite;
}

.avatar-silhouette-teacher {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    opacity: 0.75;
}

.teacher-head {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--text-muted);
    margin-bottom: 4px;
    border: 2px solid var(--accent-cyan);
}

.teacher-body {
    width: 44px;
    height: 35px;
    background: var(--text-muted);
    border-radius: 16px 16px 0 0;
}

.teacher-label-tag {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.58rem;
    color: var(--text-light);
    white-space: nowrap;
    background: rgba(11, 18, 32, 0.8);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Digital Sacred Book Representation */
.digital-quran-stand-rig {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quran-wooden-rehal {
    display: flex;
    transform: perspective(120px) rotateX(15deg);
    z-index: 5;
}

.rehal-wing-left,
.rehal-wing-right {
    width: 45px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid var(--primary-emerald);
    padding: 6px;
}

.rehal-wing-left {
    border-radius: 6px 0 0 6px;
    transform: rotateY(20deg);
}

.rehal-wing-right {
    border-radius: 0 6px 6px 0;
    transform: rotateY(-20deg);
}

.quran-page-lines {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 4px, var(--text-muted) 4px, var(--text-muted) 6px, transparent 6px);
    background-size: 100% 9px;
    opacity: 0.4;
}

.glowing-quran-aura {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--primary-emerald);
    filter: blur(25px);
    opacity: 0.45;
    z-index: 1;
}

/* Auxiliary Floating UI Overlay Snippets */
.floating-glass-card {
    position: absolute;
    background: rgba(11, 18, 32, 0.65);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.card-student {
    bottom: 45px;
    left: 25px;
    animation: steadyFloat 5.5s ease-in-out infinite alternate -2.5s;
}

.student-avatar-sim {
    font-size: 0.72rem;
    font-weight: 600;
}

.signal-wifi-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.signal-wifi-wave span {
    width: 3px;
    background: var(--primary-emerald);
    border-radius: 2px;
    animation: barPulse 1s ease-in-out infinite alternate;
}

.signal-wifi-wave span:nth-child(1) {
    height: 4px;
    animation-delay: 0.1s;
}

.signal-wifi-wave span:nth-child(2) {
    height: 8px;
    animation-delay: 0.3s;
}

.signal-wifi-wave span:nth-child(3) {
    height: 12px;
    animation-delay: 0.5s;
}

.card-analytics {
    top: 55px;
    right: 25px;
    animation: steadyFloat 7s ease-in-out infinite alternate -0.5s;
}

.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.chart-bar {
    width: 4px;
    height: var(--h);
    background: var(--accent-cyan);
    border-radius: 1px;
}

.analytics-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Secondary Ornamental Geometric Nodes */
.floating-geo-shape {
    position: absolute;
    border: 1px dashed rgba(34, 211, 238, 0.25);
    pointer-events: none;
}

.shape-alpha {
    top: 40px;
    right: 60px;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    animation: linearRotate 15s linear infinite;
}

.shape-beta {
    bottom: 60px;
    right: 80px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-style: dotted;
    animation: steadyFloat 4s ease-in-out infinite alternate;
}

/* ==========================================================================
   RIGHT SIDE: UTILITY GLASSMORPHISM CARDS MATRIX
   ========================================================================== */
.cards-column {
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 28px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
    cursor: pointer;
}

.card-edge-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.2);
    transition: var(--transition-smooth);
    z-index: 5;
}

.card-spotlight-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 100px at var(--m-x, 0px) var(--m-y, 0px), rgba(34, 211, 238, 0.1), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 5;
}

.card-benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 5;
}

.card-benefit-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 5;
}

/* Reflect Sweep Frame Effect */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.03), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* Card Interaction Behaviors */
.benefit-card:hover {
    background-color: rgba(15, 23, 42, 0.8);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 40px rgba(11, 18, 32, 0.6), 0 0 25px rgba(34, 211, 238, 0.1);
}

.benefit-card:hover .card-spotlight-glow {
    opacity: 1;
}

.benefit-card:hover .card-edge-highlight {
    transform: scaleX(1);
}

.benefit-card:hover .card-icon-container {
    border-color: var(--primary-emerald);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.benefit-card:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(.4, 0, .2, 1);
}

.benefit-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   BOTTOM REALTIME ANALYTICAL METRICS BLOCK
   ========================================================================== */
.stats-panel-wrapper {
    margin-top: 60px;
    width: 100%;
}

.stats-glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.stats-interior-matrix {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.stat-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon-wrapper {
    font-size: 1.8rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.stat-numeric-display {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.counter-digit {
    background: linear-gradient(135deg, var(--text-light) 30%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-suffix {
    color: var(--gold-highlight);
    margin-left: 2px;
}

.stat-label-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-divider-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* ==========================================================================
   ENGINE VISUAL INTERSECTION TRANSITION RULES
   ========================================================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATION KEYFRAME DICTIONARIES
   ========================================================================== */
@keyframes backgroundOrbMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }

    100% {
        transform: translateY(-25px) scale(1.05);
        opacity: 0.14;
    }
}

@keyframes verticalBeamRun {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes textGradientRun {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes steadyFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -10px);
    }
}

@keyframes linearRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blinkIndicator {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes barPulse {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.2);
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSIVENESS MEDIA BREAKPOINTS
   ========================================================================== */

@media (max-width: 1150px) {
    .benefits-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .illustration-column {
        order: -1;
        /* Pushes the illustrative model above items during row configuration */
    }
}

@media (max-width: 992px) {
    .benefits-section {
        padding: 90px 32px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-interior-matrix {
        flex-direction: column;
        gap: 40px;
    }

    .stats-divider-line {
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }

    .stats-glass-panel {
        padding: 40px 24px;
    }
}

@media (max-width: 580px) {
    .benefits-section {
        padding: 70px 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 24px;
    }

    .vector-scene-box {
        height: 400px;
    }

    .digital-dashboard-frame {
        width: 90%;
        height: 220px;
    }

    .dashboard-viewport {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .card-student {
        bottom: 20px;
        left: 10px;
    }

    .card-analytics {
        top: 20px;
        right: 10px;
    }
}

/* Reduced Motion Safeguard */
@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .benefit-card,
    .card-icon-container,
    .chart-bar,
    .vector-scene-box {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .ambient-blur,
    .cyber-light-beam,
    .gradient-accent-text,
    .crescent-moon-neon,
    .digital-dashboard-frame,
    .live-rec-indicator,
    .signal-wifi-wave span {
        animation: none !important;
    }
}

/* ==========================================================================
   PRICING MAIN VIEWPORT BLOCK CONTAINER
   ========================================================================== */
.pricing-section {
    position: relative;
    padding: 140px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   PREMIUM VISUAL FX LAYER ARCHITECTURE
   ========================================================================== */
.pricing-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* High-Definition Gas Ambient Luminous Blurs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: -10%;
    right: 15%;
    width: 650px;
    height: 650px;
    background: var(--primary-emerald);
    animation: luxuryFloatAmbient 18s ease-in-out infinite alternate;
}

.orb-cyan {
    bottom: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    animation: luxuryFloatAmbient 22s ease-in-out infinite alternate-reverse;
}

/* Kinetic Digital Moving Framework Array */
.moving-grid-matrix {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridTrackMove 35s linear infinite;
}

/* Hybrid Technical Islamic Line Array Overlay */
.islamic-line-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2px);
    background-size: 30px 30px;
}

#pricing-star-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   TYPOGRAPHIC SECTION HEADER ELEMENTS
   ========================================================================== */
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.08);
    margin-bottom: 24px;
}

.pricing-title {
    font-size: clamp(2.4rem, 4.4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 22px;
}

.gradient-text-flow {
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan), var(--primary-emerald));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: runTextGradient 5s linear infinite;
}

.pricing-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   PRICING DATA MATRIX GRID ARCHITECTURE
   ========================================================================== */
.pricing-grid-matrix {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

/* ==========================================================================
   PREMIUM HOVER TILT GLASSMORPHISM CARD ELEMENTS
   ========================================================================== */
.pricing-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(34, 211, 238, 0.02);
    transform-style: preserve-3d;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
    cursor: pointer;
    animation: stationaryFloatEngine 6s ease-in-out infinite alternate;
}

/* Cycle stagger floating states across distinct child rows */
.pricing-grid-matrix>.pricing-card:nth-child(1) {
    animation-delay: 0s;
}

.pricing-grid-matrix>.pricing-card:nth-child(2) {
    animation-delay: -1.2s;
}

.pricing-grid-matrix>.pricing-card:nth-child(3) {
    animation-delay: -2.4s;
}

.pricing-grid-matrix>.pricing-card:nth-child(4) {
    animation-delay: -3.6s;
}

.pricing-grid-matrix>.pricing-card:nth-child(5) {
    animation-delay: -4.8s;
}

.card-interior {
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(25px);
    position: relative;
    z-index: 5;
}

/* Micro Top Edge Linear Border Accents */
.card-border-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.25);
    transition: var(--transition-smooth);
    z-index: 10;
}

/* Interactive Cursor Tracking Glow Spot */
.card-glow-tracker {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 110px at var(--glow-x, 0px) var(--glow-y, 0px), rgba(34, 211, 238, 0.08), transparent 85%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Card Internal Data Configuration Modules */
.card-icon-header {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.plan-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}

.plan-price-block {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-prefix {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.price-cycle {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features-list li {
    font-size: 0.88rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-emerald);
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* Premium Interface Call To Action Buttons */
.plan-cta-btn {
    position: relative;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.plan-cta-btn span {
    position: relative;
    z-index: 5;
}

.plan-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

/* ==========================================================================
   FEATURED/POPULAR STRATEGIC NODE SPECS (CARD 3)
   ========================================================================== */
.featured-card {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(11, 22, 35, 0.85);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35), 0 0 35px rgba(16, 185, 129, 0.08);
}

.featured-card .card-border-top {
    background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
}

.featured-card .card-icon-header {
    border-color: rgba(16, 185, 129, 0.25);
    color: var(--primary-emerald);
    box-shadow: inset 0 0 12px rgba(16, 185, 129, 0.1);
}

.popular-ribbon-badge {
    position: absolute;
    top: 24px;
    right: -32px;
    background: linear-gradient(90deg, var(--gold-highlight), #E08700);
    color: #0B1220;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 32px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 15;
}

.featured-btn {
    background: linear-gradient(90deg, var(--primary-emerald), rgba(34, 211, 238, 0.8));
    border: none;
    color: #0B1220;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.featured-btn::before {
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-emerald));
}

/* Reflect Light Sweep Setup */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.04), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* ==========================================================================
   CARD INTERACTIVE HOVER MOTION MECHANICS
   ========================================================================== */
.pricing-card:hover {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 30px 60px rgba(7, 11, 20, 0.8), 0 0 30px rgba(34, 211, 238, 0.12);
}

.featured-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 60px rgba(7, 11, 20, 0.8), 0 0 35px rgba(16, 185, 129, 0.2);
}

.pricing-card:hover .card-glow-tracker {
    opacity: 1;
}

.pricing-card:hover .card-border-top {
    transform: scaleX(1);
}

.pricing-card:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(.4, 0, .2, 1);
}

.pricing-card:hover .card-icon-header {
    border-color: var(--accent-cyan);
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.featured-card:hover .card-icon-header {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.pricing-card:hover .plan-cta-btn {
    border-color: transparent;
    color: #0B1220;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.2);
}

.pricing-card:hover .plan-cta-btn::before {
    opacity: 1;
}

.featured-card:hover .featured-btn {
    color: #0B1220;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
}

.pricing-card:focus-visible {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan);
}

/* ==========================================================================
   BOTTOM CTA COMPACT GLASS PORTAL PANEL
   ========================================================================== */
.pricing-footer-panel {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 48px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-panel-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.footer-panel-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 5;
}

.footer-panel-text {
    max-width: 750px;
}

.panel-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.panel-desc {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Interactive Dynamic Ripple CTA Button */
.panel-ripple-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
    border: none;
    border-radius: 14px;
    color: #0B1220;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-ripple-btn span {
    position: relative;
    z-index: 5;
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-ripple-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-emerald));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

/* Footer Panel Interactive Responses */
.pricing-footer-panel:hover {
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(34, 211, 238, 0.05);
}

.panel-ripple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45), 0 0 20px rgba(34, 211, 238, 0.2);
}

.panel-ripple-btn:hover ::before {
    opacity: 1;
}

.panel-ripple-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Standard Ripple Span Architecture injected via script system */
.ripple-wave-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: triggerRippleEffect 0.6s linear;
    pointer-events: none;
    z-index: 2;
}

/* ==========================================================================
   TRANSITION HOOK ENGINE CLASSIFICATIONS
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.15, 0.85, 0.15, 1),
        transform 0.85s cubic-bezier(0.15, 0.85, 0.15, 1);
}

.reveal-fade-up.is-triggered {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATION DICTIONARY KEYFRAMES
   ========================================================================== */
@keyframes luxuryFloatAmbient {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }

    100% {
        transform: translateY(-30px) scale(1.04);
        opacity: 0.15;
    }
}

@keyframes gridTrackMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 1000px;
    }
}

@keyframes runTextGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes stationaryFloatEngine {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes triggerRippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   MEDIA CONTROLS RESPONSIVE BREAKPOINT CONFIGURATIONS
   ========================================================================== */

/* Laptop Grid Layering Map (3 + 2 Configuration) */
@media (max-width: 1300px) {
    .pricing-grid-matrix {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }

    .pricing-grid-matrix>.pricing-card:nth-child(1),
    .pricing-grid-matrix>.pricing-card:nth-child(2),
    .pricing-grid-matrix>.pricing-card:nth-child(3) {
        grid-column: span 2;
    }

    .pricing-grid-matrix>.pricing-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .pricing-grid-matrix>.pricing-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Tablet Layout Map (2 Columns Config) */
@media (max-width: 992px) {
    .pricing-section {
        padding: 100px 32px;
    }

    .pricing-grid-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid-matrix>.pricing-card {
        grid-column: auto !important;
    }

    .pricing-grid-matrix>.pricing-card:nth-child(5) {
        grid-column: span 2 !important;
        max-width: calc(50% - 10px);
        margin: 0 auto;
        width: 100%;
    }

    .footer-panel-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-panel-text {
        max-width: 100%;
    }
}

/* Compact Mobile Infrastructure Layer */
@media (max-width: 680px) {
    .pricing-section {
        padding: 80px 16px;
    }

    .pricing-grid-matrix {
        grid-template-columns: 1fr;
    }

    .pricing-grid-matrix>.pricing-card {
        grid-column: auto !important;
        max-width: 100% !important;
        min-height: auto;
    }

    .pricing-footer-panel {
        padding: 32px 24px;
    }

    .panel-ripple-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Screen Configuration Parameters For Accessibility Safeguards */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .pricing-card {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .bg-orb,
    .moving-grid-matrix,
    .gradient-text-flow,
    .panel-ripple-btn,
    .btn-arrow,
    .pricing-card::after {
        animation: none !important;
    }
}


/* ==========================================================================
   MAIN SECTION HOOK HOUSING
   ========================================================================== */
.faq-hub-section {
    position: relative;
    padding: 140px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-core-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   KINETIC AMBIENT BACKGROUND MATRIX ENGINE
   ========================================================================== */
.faq-ambient-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.11;
    mix-blend-mode: screen;
}

.sphere-emerald {
    top: -5%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: var(--primary-emerald);
    animation: backgroundGlowFloat 16s ease-in-out infinite alternate;
}

.sphere-cyan {
    bottom: -5%;
    right: 10%;
    width: 550px;
    height: 550px;
    background: var(--accent-cyan);
    animation: backgroundGlowFloat 20s ease-in-out infinite alternate-reverse;
}

.cyber-moving-grid {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 65px 65px;
    animation: dynamicGridPan 40s linear infinite;
}

.islamic-geometric-lines {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 50% 50%, var(--primary-emerald) 1.5px, transparent 2px);
    background-size: 32px 32px;
}

#faq-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   TYPOGRAPHIC SECTION HEADER ELEMENTS
   ========================================================================== */
.faq-hub-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 80px auto;
}

.neon-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.08);
    margin-bottom: 24px;
}

.faq-section-title {
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 22px;
}

.animated-gradient-text {
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan), var(--primary-emerald));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowTitleGradient 5s linear infinite;
}

.faq-section-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   ACCORDION MATRIX COLUMN INFRASTRUCTURE
   ========================================================================== */
.faq-accordion-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    align-items: start;
}

.faq-accordion-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================================================
   PREMIUM GLASSMORPHISM ACCORDION NODES
   ========================================================================== */
.faq-accordion-node {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(34, 211, 238, 0.02);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
    transform-style: preserve-3d;
}

.card-edge-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: scaleX(0.2);
    transition: var(--transition-smooth);
    z-index: 10;
}

.card-glow-follower {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(34, 211, 238, 0.08), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Interactive Dispatcher Header Buttons */
.faq-trigger-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 5;
}

.faq-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    transition: var(--transition-smooth);
    animation: structuralMiniFloat 5s ease-in-out infinite alternate;
}

.faq-accordion-node:nth-child(even) .faq-icon-wrapper {
    animation-delay: -2s;
}

.faq-question-text {
    font-size: clamp(0.98rem, 1.1vw, 1.15rem);
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* Advanced CSS Cross Symbol Indicator Module */
.faq-cross-indicator {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-cross-indicator::before,
.faq-cross-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    border-radius: 2px;
    transition: background-color 0.4s ease;
}

/* Horizontal Line Layer */
.faq-cross-indicator::before {
    width: 16px;
    height: 2px;
}

/* Vertical Line Layer */
.faq-cross-indicator::after {
    width: 2px;
    height: 16px;
}

/* Collapsible Smooth Kinetic Pane Logic */
.faq-collapsible-pane {
    height: 0;
    overflow: hidden;
    position: relative;
    z-index: 4;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pane-inner-content {
    padding: 0 28px 28px 90px;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 16px;
}

/* Light Sweep Reflect Setup */
.faq-accordion-node::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.03), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

/* Item State Activation Maps */
.faq-accordion-node:hover {
    background-color: rgba(15, 23, 42, 0.82);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: 0 20px 40px rgba(7, 11, 20, 0.6), 0 0 25px rgba(34, 211, 238, 0.1);
}

.faq-accordion-node:hover .card-glow-follower {
    opacity: 1;
}

.faq-accordion-node:hover .card-edge-highlight {
    transform: scaleX(1);
}

.faq-accordion-node:hover::after {
    left: 150%;
    transition: all 1.2s cubic-bezier(.4, 0, .2, 1);
}

.faq-accordion-node:hover .faq-icon-wrapper {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

/* Open State Visual Properties rules */
.faq-accordion-node.is-expanded {
    background-color: rgba(11, 22, 35, 0.88);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.08);
}

.faq-accordion-node.is-expanded .card-edge-highlight {
    background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
    transform: scaleX(1);
}

.faq-accordion-node.is-expanded .faq-icon-wrapper {
    border-color: var(--primary-emerald);
    color: var(--primary-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.faq-accordion-node.is-expanded .faq-question-text {
    color: var(--primary-emerald);
}

.faq-accordion-node.is-expanded .faq-cross-indicator {
    transform: rotate(135deg);
}

.faq-accordion-node.is-expanded .faq-cross-indicator::before,
.faq-accordion-node.is-expanded .faq-cross-indicator::after {
    background-color: var(--primary-emerald);
}

.faq-trigger-button:focus-visible {
    outline: none;
    background: rgba(34, 211, 238, 0.05);
}

/* ==========================================================================
   BOTTOM CTA GLASS PORTAL CARD PANEL
   ========================================================================== */
.faq-footer-cta {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 48px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cta-internal-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-flex-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 5;
}

.cta-text-group {
    max-width: 760px;
}

.cta-heading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cta-paragraph-desc {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Advanced Ripple Fluid Button Component */
.cta-action-ripple-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
    border: none;
    border-radius: 14px;
    color: #0B1220;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-btn-label {
    position: relative;
    z-index: 5;
}

.action-btn-arrow {
    font-size: 1.1rem;
    position: relative;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-action-ripple-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-emerald));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

/* Bottom CTA Layout States responses */
.faq-footer-cta:hover {
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(34, 211, 238, 0.05);
}

.cta-action-ripple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45), 0 0 20px rgba(34, 211, 238, 0.2);
}

.cta-action-ripple-btn:hover::before {
    opacity: 1;
}

.cta-action-ripple-btn:hover .action-btn-arrow {
    transform: translateX(5px);
}

/* Ripple Generation Target Elements injected dynamically by javascript */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: executeRippleMotion 0.6s linear;
    pointer-events: none;
    z-index: 2;
}

/* ==========================================================================
   INTERSECTION SYSTEM TRANSITION ANIMATORS
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.15, 0.85, 0.15, 1),
        transform 0.85s cubic-bezier(0.15, 0.85, 0.15, 1);
}

.reveal-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ANIMATION INTERACTIVE DICTIONARY KEYFRAMES
   ========================================================================== */
@keyframes backgroundGlowFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.09;
    }

    100% {
        transform: translateY(-30px) scale(1.03);
        opacity: 0.14;
    }
}

@keyframes dynamicGridPan {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 1000px;
    }
}

@keyframes flowTitleGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes structuralMiniFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-4px);
    }
}

@keyframes executeRippleMotion {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVENESS MEDIA BREAKPOINTS HOOK MANAGEMENT
   ========================================================================== */

/* Laptop Compression Adaptation Threshold */
@media (max-width: 1100px) {
    .faq-accordion-matrix {
        gap: 20px;
    }

    .faq-pane-inner-content {
        padding-left: 28px;
        /* Fallback to nested standard padding structure if display squashes */
    }
}

/* Tablet Stack Interface (Single Accordion Alignment Row) */
@media (max-width: 992px) {
    .faq-hub-section {
        padding: 100px 32px;
    }

    .faq-accordion-matrix {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin: 0 auto 50px auto;
    }

    .cta-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-text-group {
        max-width: 100%;
    }
}

/* Mobile Compact Interface Infrastructure Layer */
@media (max-width: 600px) {
    .faq-hub-section {
        padding: 80px 16px;
    }

    .faq-trigger-button {
        padding: 20px;
        gap: 14px;
    }

    .faq-icon-wrapper {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.15rem;
    }

    .faq-pane-inner-content {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .faq-footer-cta {
        padding: 32px 20px;
    }

    .cta-action-ripple-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Motion Cancellation Fallbacks for Accessibility Guidelines */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .faq-accordion-node,
    .faq-collapsible-pane,
    .faq-cross-indicator {
        transition: none !important;
        transform: none !important;
    }

    .faq-icon-wrapper,
    .glow-sphere,
    .cyber-moving-grid,
    .animated-gradient-text,
    .faq-accordion-node::after {
        animation: none !important;
    }
}