:root {
    --primary: #6D4E99;
    --accent: #E8674F;
    --accent-2: #009C71;
    --bg-dark: #020617;
    --bg-surface: #282828;
    --text-main: #F7F7F7;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Ramadan UI Refresh (tokens) */
    --ram-card-radius: 22px;
    --ram-chip-radius: 999px;
    --ram-gold: #f5c842;
    --ram-gold-muted: rgba(245, 200, 66, 0.14);
    --ram-card-border: rgba(245, 200, 66, 0.22);
    --ram-card-glow: 0 0 46px rgba(232, 103, 79, 0.12);
    --ram-garland-height: 70px;
    --ram-garland-wire-y: 16px;
    --ram-garland-step: 38px;
    --ram-garland-ornament-w: 50px;
    --ram-garland-ornament-h: 64px;
    --ram-garland-center-w: 44px;
    --ram-garland-center-h: 66px;
}

@media (max-width: 768px) {
    :root {
        --ram-garland-height: 58px;
        --ram-garland-wire-y: 14px;
        --ram-garland-step: 34px;
        --ram-garland-ornament-w: 42px;
        --ram-garland-ornament-h: 54px;
        --ram-garland-center-w: 38px;
        --ram-garland-center-h: 56px;
    }
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at top left, rgba(109, 78, 153, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(232, 103, 79, 0.25), transparent 60%),
        radial-gradient(circle at center, rgba(0, 156, 113, 0.18), transparent 55%),
        var(--bg-dark);
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

/* ===============================
   Background FX (waves / grid / beams / particles / stars)
   =============================== */
.background-effects,
.particles,
.grid-overlay,
.dynamic-lighting,
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.background-effects { z-index: -3; }
.grid-overlay,
.dynamic-lighting,
.particles,
.stars { z-index: -2; }

.grid-overlay,
.wave,
.bg-orb {
    will-change: transform;
}
.light-beam,
.particle {
    will-change: transform, opacity;
}

html.fx-paused .grid-overlay,
html.fx-paused .wave,
html.fx-paused .light-beam,
html.fx-paused .particle,
html.fx-paused .star,
html.fx-paused .bg-orb,
html.fx-paused .landing-footer-inner::before {
    animation-play-state: paused !important;
}

.grid-overlay {
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(109, 78, 153, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 40, 40, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 40s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 103, 79, 0.06) 0%, transparent 70%);
    animation: waveAnimation 20s linear infinite;
}
.wave:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 25s;
    background: radial-gradient(circle, rgba(109, 78, 153, 0.045) 0%, transparent 70%);
}
.wave:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(0, 156, 113, 0.055) 0%, transparent 70%);
}
@keyframes waveAnimation {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    box-shadow: 0 0 6px currentColor;
}
.particle:nth-child(odd) {
    background: radial-gradient(circle, var(--accent), transparent);
    color: var(--accent);
}
.particle:nth-child(even) {
    background: radial-gradient(circle, var(--accent-2), transparent);
    color: var(--accent-2);
}
.particle:nth-child(3n) {
    background: radial-gradient(circle, var(--primary), transparent);
    color: var(--primary);
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%,90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.dynamic-lighting { overflow: hidden; }

.light-beam {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(232, 103, 79, 0.9), transparent);
    opacity: 0.06;
    animation: lightBeam 8s infinite;
}
.light-beam:nth-child(1) { left: 15%; }
.light-beam:nth-child(2) {
    left: 35%;
    animation-delay: 2s;
    background: linear-gradient(180deg, transparent, rgba(109, 78, 153, 0.95), transparent);
}
.light-beam:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    background: linear-gradient(180deg, transparent, rgba(0, 156, 113, 0.9), transparent);
}
.light-beam:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
}
@keyframes lightBeam {
    0%,100% { opacity: 0.06; transform: scaleY(0); }
    50%     { opacity: 0.28; transform: scaleY(1); }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--accent);
    animation: twinkle 3s infinite;
}
@keyframes twinkle {
    0%,100% { opacity: 0.35; transform: scale(1); }
    50%     { opacity: 1; transform: scale(1.6); }
}

/* Orbs layer (lowest) */
.animated-bg-wrapper {
    position: fixed;
    inset: 0;
    z-index: -4;
    overflow: hidden;
    pointer-events: none;
}
.bg-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: orbPulse 20s ease-in-out infinite alternate;
}
.bg-orb.orb-1 {
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(109, 78, 153, 0.95), transparent 65%);
    animation-delay: 0s;
}
.bg-orb.orb-2 {
    bottom: -250px;
    left: -200px;
    background: radial-gradient(circle, rgba(232, 103, 79, 0.9), transparent 70%);
    animation-delay: 4s;
}
.bg-orb.orb-3 {
    top: 40%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 156, 113, 0.7), transparent 70%);
    animation-delay: 8s;
}
@keyframes orbPulse {
    0%   { transform: translate3d(0, 0, 0) scale(1);   opacity: 0.5; }
    50%  { transform: translate3d(40px, -30px, 0) scale(1.15); opacity: 0.9; }
    100% { transform: translate3d(-40px, 40px, 0) scale(1.05); opacity: 0.6; }
}

/* ===============================
   Layout / Sections
   =============================== */
section {
    padding: 4rem 1.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

@supports (content-visibility: auto) {
    section.reveal {
        content-visibility: auto;
        contain-intrinsic-size: 900px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e5e7eb, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.section-header p {
    color: #e2e8f0;
    font-size: 1.05rem;
}

/* ===============================
   Scroll Reveal (JS gated)
   =============================== */
.js-enabled .reveal,
.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.45s ease-out,
        transform 0.45s ease-out;
    will-change: opacity, transform;
}
.reveal.is-visible,
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   Glassmorphism Cards
   =============================== */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(40, 40, 40, 0.85),
        rgba(15, 23, 42, 0.85)
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateY(0) translateZ(0);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(148, 163, 184, 0.04);
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left,
                rgba(252, 211, 77, 0.16),
                transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    mix-blend-mode: soft-light;
    pointer-events: none;
}
.glass-card:hover {
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.75),
        0 0 25px rgba(109, 78, 153, 0.25);
    border-color: rgba(232, 103, 79, 0.35);
    background: linear-gradient(
        135deg,
        rgba(40, 40, 40, 0.95),
        rgba(15, 23, 42, 0.95)
    );
}
.glass-card:hover::before { opacity: 1; }

.info-card {
    padding: 1.6rem 1.5rem;
    border-color: rgba(148, 163, 184, 0.18);
}

/* ===============================
   Hero / Seasonal Banner
   =============================== */
.seasonal-banner {
    background: radial-gradient(circle at top right,
                    rgba(232, 103, 79, 0.4),
                    transparent 55%),
                radial-gradient(circle at bottom left,
                    rgba(109, 78, 153, 0.45),
                    transparent 60%),
                linear-gradient(135deg,
                    rgba(40, 40, 40, 0.9),
                    rgba(15, 23, 42, 0.96));
    border-radius: 26px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(109, 78, 153, 0.4);
}
.seasonal-banner::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    opacity: 0;
    mix-blend-mode: soft-light;
    animation: bannerGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes bannerGlow {
    0%   { opacity: 0; transform: translate3d(0, 0, 0); }
    100% { opacity: 1; transform: translate3d(40px, -20px, 0); }
}

.seasonal-tag {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #fff;
    padding: 0.45rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    box-shadow:
        0 8px 25px rgba(232, 103, 79, 0.55),
        0 0 18px rgba(232, 103, 79, 0.65);
}

.hero-metrics {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2.3rem;
    flex-wrap: wrap;
}
.hero-metrics-item {
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.45);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    text-align: center;
    min-width: 170px;
}
.hero-metrics-item span:first-child {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e5e7eb, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-metrics-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-glow {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #fff;
    padding: 0.8rem 2.3rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 10px 30px rgba(232, 103, 79, 0.55);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease,
        opacity 0.25s ease;
    text-decoration: none;
}
.btn-glow:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 16px 40px rgba(232, 103, 79, 0.75),
        0 0 25px rgba(109, 78, 153, 0.7);
    filter: brightness(1.05);
}

.btn-ghost {
    background: transparent;
    border-radius: 999px;
    padding: 0.8rem 2.3rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: var(--text-main);
    cursor: pointer;
    transition: 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-ghost:hover {
    border-color: var(--primary);
    background: radial-gradient(circle at top,
                    rgba(109, 78, 153, 0.22),
                    transparent 60%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.7rem;
}
.mini-feature {
    padding: 1.4rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.55);
    box-shadow:
        inset 0 0 0 1px rgba(148, 163, 184, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.mini-feature h4 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
}
.mini-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 103, 79, 0.35);
    background: rgba(15, 23, 42, 0.75);
    box-shadow:
        inset 0 0 0 1px rgba(148, 163, 184, 0.06),
        0 22px 55px rgba(0, 0, 0, 0.55);
}
.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(232, 103, 79, 0.15), rgba(109, 78, 153, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(232, 103, 79, 0.3);
    transition: all 0.3s ease;
    position: relative;
}
.glass-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(232, 103, 79, 0.6);
    box-shadow: 0 10px 30px rgba(232, 103, 79, 0.4);
}

/* Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.course-img {
    height: 190px;
    border-radius: 18px;
    background: radial-gradient(circle at top, #1e293b, #020617);
    margin-bottom: 1.4rem;
    position: relative;
    overflow: hidden;
}
.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.course-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%);
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}
.glass-card:hover .course-img::after {
    opacity: 1;
    transform: translateX(120%);
    transition: transform 0.65s ease-out, opacity 0.3s ease-out;
}
.glass-card:hover .course-img img { transform: scale(1.06); }

.badge-level {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(40, 40, 40, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.75rem;
    color: #facc15;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Course CTA */
.course-actions {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 0.75rem;
    align-items: end;
}
.term-offer {
    position: relative;
    padding-top: 18px;
}
.discount-badge {
    position: absolute;
    top: 0;
    right: 14px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0b1020;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px 999px 999px 14px;
    box-shadow: 0 14px 34px rgba(251,191,36,0.22);
    z-index: 2;
    white-space: nowrap;
}
.discount-badge::after{
    content: '';
    position: absolute;
    right: 22px;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: rotate(45deg);
    border-radius: 0 0 10px 0;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}
.btn-term{
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.96rem;
    letter-spacing: 0.2px;
    box-shadow:
        0 16px 40px rgba(232, 103, 79, 0.70),
        0 0 34px rgba(109, 78, 153, 0.55);
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
    overflow: hidden;
}
.btn-term::before{
    content:'';
    position:absolute;
    inset:-45%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.term-offer:hover .btn-term::before{ opacity: 1; }

.btn-monthly{
    width: 100%;
    justify-content: center;
    border-color: rgba(148, 163, 184, 0.35);
    color: rgba(226, 232, 240, 0.92);
    background: rgba(15, 23, 42, 0.35);
}
.btn-monthly:hover{
    border-color: rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.55);
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.7rem;
}
.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: conic-gradient(from 140deg,
                #4b5563,
                #111827,
                #6D4E99,
                #E8674F,
                #4b5563);
    padding: 2px;
    position: relative;
}
.user-avatar::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: radial-gradient(circle at top,
                    #1f2937,
                    #020617);
}

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(109, 78, 153, 0.45);
    background: radial-gradient(circle at top,
                    rgba(109, 78, 153, 0.45),
                    rgba(2, 6, 23, 1));
}
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ */
.faq-item {
    background: rgba(15, 23, 42, 0.7);
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 1.3rem 1.5rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.25s ease;
}
.faq-item:hover {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(109, 78, 153, 0.6);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.75);
}
.faq-question {
    font-weight: 600;
    font-size: 1.02rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-answer {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Newsletter */
.newsletter-box {
    background: radial-gradient(circle at top,
                    rgba(109, 78, 153, 0.45),
                    rgba(2, 6, 23, 0.98));
    padding: 3rem 2.5rem;
    border-radius: 26px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(109, 78, 153, 0.55);
}
.input-group {
    display: flex;
    max-width: 520px;
    margin: 1.5rem auto 0;
    gap: 0.8rem;
}
.input-field {
    flex: 1;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s ease;
}
.input-field::placeholder { color: rgba(148, 163, 184, 0.85); }
.input-field:focus {
    border-color: rgba(232, 103, 79, 0.8);
    box-shadow: 0 0 0 1px rgba(232, 103, 79, 0.4);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
    opacity: 0.95;
}
.payment-txt {
    padding: 10px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    min-width: 180px;
    text-align: center;
}
.payment-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}
.payment-brands {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    z-index: 9999;
    cursor: pointer;
    color: #ffffff;
    animation: floatPulse 2.4s ease-in-out infinite;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float img,
.whatsapp-float svg {
    width: 34px;
    height: 34px;
    filter: brightness(1.1);
    display: block;
}
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.whatsapp-float::after {
    content: "تواصل معنا";
    position: absolute;
    right: 70px;
    background: rgba(15, 23, 42, 0.95);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.landing-footer {
    position: relative;
    margin-top: 3rem;
    padding: 3rem 1.5rem 2rem;
    max-width: 1200px;
    margin-inline: auto;
}
.landing-footer-inner {
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at top,
                    rgba(15, 23, 42, 0.85),
                    rgba(2, 6, 23, 0.98));
    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(109, 78, 153, 0.55);
    padding: 2.5rem 2.2rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}
.landing-footer-inner::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.32) 50%,
                transparent 100%);
    transform: translateX(-120%);
    opacity: 0.8;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: footerShine 9s linear infinite;
}
@keyframes footerShine {
    0%   { transform: translateX(-120%) translateY(0); }
    50%  { transform: translateX(0) translateY(-10px); }
    100% { transform: translateX(120%) translateY(0); }
}
.landing-footer-brand-title {
    font-size: 1.6rem;
    font-weight: 800;
}
.landing-footer-brand-title span { color: var(--accent); }
.landing-footer-brand-text {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.landing-footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}
.landing-footer-col-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #e5e7eb;
}
.landing-footer-link {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}
.landing-footer-link:hover {
    color: var(--accent);
    transform: translateX(-3px);
}
.landing-footer-contact {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.landing-footer-contact a {
    color: inherit;
    text-decoration: none;
    direction: ltr;
    unicode-bidi: embed;
}
.landing-footer-contact a:hover { color: var(--accent); }

.landing-footer-socials-wrapper {
    grid-column: 1 / -1;
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}
.landing-footer-socials-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.landing-footer-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.landing-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #e5e7eb;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.landing-footer-socials a:hover {
    background: var(--accent);
    border-color: transparent;
    transform: translateY(-1px);
}
.landing-footer-socials a.instagram {
    background: radial-gradient(circle at 30% 30%,
                #fdf497 0%, #fdf497 15%,
                #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    color: #ffffff;
}
.landing-footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin-top: 1.8rem;
    padding-top: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
.landing-footer-credit a {
    color: var(--accent);
    text-decoration: none;
    direction: ltr;
    unicode-bidi: embed;
}
.landing-footer-credit a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
    body { scroll-behavior: auto; }

    .grid-overlay,
    .wave,
    .light-beam,
    .particle,
    .star,
    .bg-orb,
    .landing-footer-inner::before,
    .whatsapp-float {
        animation: none !important;
    }

    .glass-card,
    .btn-glow,
    .btn-ghost,
    .mini-feature,
    .store-btn {
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    section { padding-inline: 1rem; }
    .section-header h2 { font-size: 1.7rem; }
    .seasonal-banner { padding-inline: 1.5rem; }

    .glass-card {
        padding: 1.5rem 1.25rem;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    }

    .hero-metrics { gap: 1rem; }
    .hero-metrics-item { min-width: 150px; }
    .grid-overlay { opacity: 0.18; background-size: 80px 80px; }
    .bg-orb { filter: blur(65px); opacity: 0.55; }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-glow,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .landing-footer { padding-inline: 1rem; }
    .landing-footer-inner {
        padding: 2rem 1.5rem;
        grid-template-columns: minmax(0, 1fr);
    }

    .course-actions {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .js-enabled .reveal,
    .js-enabled .reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* ===============================
   App Stores Card
   =============================== */
.app-stores-card{
    padding: 2.4rem 2.2rem;
    border-color: rgba(232, 103, 79, 0.22);
    background: radial-gradient(circle at top right,
                rgba(232, 103, 79, 0.18),
                transparent 55%),
              radial-gradient(circle at bottom left,
                rgba(109, 78, 153, 0.22),
                transparent 60%),
              linear-gradient(135deg,
                rgba(40, 40, 40, 0.92),
                rgba(15, 23, 42, 0.92));
}

.app-stores-inner{
    display:grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.app-stores-pill{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.45rem 1.1rem;
    border-radius: 999px;
    font-weight:700;
    font-size:.85rem;
    color:#0b1020;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 14px 35px rgba(251,191,36,0.18);
}

.app-stores-title{
    margin-top: 1rem;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 900;
    line-height: 1.35;
}

.app-stores-desc{
    margin-top: .8rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 58ch;
}

.app-stores-actions{
    margin-top: 1.4rem;
    display:flex;
    gap: .9rem;
    flex-wrap: wrap;
}

.store-btn{
    flex: 1;
    min-width: 240px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: .9rem;
    padding: .95rem 1.1rem;
    border-radius: 18px;
    text-decoration:none;
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}
.store-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(232, 103, 79, 0.45);
    box-shadow: 0 22px 55px rgba(0,0,0,.62), 0 0 22px rgba(109, 78, 153, 0.25);
    filter: brightness(1.03);
}
.store-ic{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg, rgba(232,103,79,.18), rgba(109,78,153,.18));
    border: 1px solid rgba(255,255,255,.10);
    flex: 0 0 auto;
}
.store-btn-play .store-ic{ color: rgba(226,232,240,.95); }
.store-btn-apple .store-ic{ color: rgba(226,232,240,.95); }

.store-txt{
    display:flex;
    flex-direction: column;
    gap: .1rem;
    text-align:right;
    flex: 1 1 auto;
}
.store-txt small{
    color: rgba(148,163,184,.95);
    font-weight: 600;
    font-size: .78rem;
}
.store-txt strong{
    font-size: 1.05rem;
    letter-spacing: .2px;
}
.store-arrow{
    opacity: .85;
    font-weight: 900;
}

.app-stores-hint{
    margin-top: 1.15rem;
    display:flex;
    align-items:center;
    gap:.55rem;
    color: rgba(148,163,184,.95);
    font-size: .9rem;
}
.hint-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 18px rgba(232,103,79,.5);
}

/* Right visual */
.app-stores-visual{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
}
.phone-mock{
    width: 210px;
    height: 420px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(148,163,184,.22);
    box-shadow: 0 30px 70px rgba(0,0,0,.65);
    position: relative;
    overflow: hidden;
    transform: rotate(-6deg);
}
.phone-notch{
    position:absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    border-radius: 999px;
    background: rgba(2,6,23,.65);
    border: 1px solid rgba(255,255,255,.06);
}
.phone-screen{
    position:absolute;
    inset: 44px 14px 14px;
    border-radius: 24px;
    background: radial-gradient(circle at top,
                rgba(109, 78, 153, 0.35),
                rgba(2, 6, 23, 1));
    border: 1px solid rgba(255,255,255,.06);
    padding: 14px;
}
.mini-card{
    height: 90px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232,103,79,.18), rgba(109,78,153,.18));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(148,163,184,.06);
}
.mini-row{
    margin-top: 12px;
    height: 14px;
    border-radius: 999px;
    background: rgba(226,232,240,.14);
}
.mini-row:nth-child(3){ width: 85%; }
.mini-row:nth-child(4){ width: 70%; }
.mini-row:nth-child(5){ width: 90%; }

.glow-bubble{
    position:absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    filter: blur(60px);
    opacity: .55;
    mix-blend-mode: screen;
}
.bubble-1{
    right: 0;
    top: 10%;
    background: radial-gradient(circle, rgba(232,103,79,.85), transparent 70%);
}
.bubble-2{
    left: 0;
    bottom: 5%;
    background: radial-gradient(circle, rgba(0,156,113,.65), transparent 70%);
}

/* Responsive */
@media (max-width: 900px){
    .app-stores-inner{
        grid-template-columns: 1fr;
    }
    .app-stores-visual{
        order: -1;
        min-height: 200px;
    }
    .phone-mock{
        transform: rotate(0deg) scale(.92);
    }
}
.store-ic svg { display: block; }
.store-btn-play .store-ic { color: rgba(255,255,255,.95); }
.store-btn-play:hover .store-ic { color: #fff; }

/* ===============================
   Homepage UX additions (chips / stepper / tabs / command bar / sticky CTA)
   =============================== */

/* Hero chips */
.hero-cta {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-chips {
    margin: 0.4rem 0 1.1rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.hero-chip {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(15, 23, 42, 0.45);
    color: rgba(226, 232, 240, 0.92);
    border-radius: 999px;
    padding: 0.46rem 1.05rem;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.hero-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(232, 103, 79, 0.55);
    box-shadow: 0 14px 35px rgba(0,0,0,0.55);
}
.hero-chip.is-active {
    border-color: transparent;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(232, 103, 79, 0.35);
}
.hero-chip--icon {
    padding: 0.46rem 0.65rem;
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.hero-chip:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 2px;
}

/* Quick steps (stepper) */
.quick-steps {
    padding: 1.7rem 1.6rem;
}
.quick-steps__head {
    text-align: center;
    margin-bottom: 1.15rem;
}
.quick-steps__title {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0;
}
.quick-steps__desc {
    margin-top: 0.45rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.98rem;
}
.quick-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    position: relative;
}
.quick-steps__list::before,
.quick-steps__list::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    left: 18px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 999px;
    pointer-events: none;
}
.quick-steps__list::before {
    background: rgba(148, 163, 184, 0.22);
    opacity: 0.6;
}
.quick-steps__list::after {
    background: linear-gradient(90deg, transparent, rgba(232, 103, 79, 0.9), transparent);
    background-size: 200% 100%;
    opacity: 0.6;
    animation: quickStepsGlow 4.2s ease-in-out infinite;
}
@keyframes quickStepsGlow {
    0%   { background-position: 160% 0; }
    100% { background-position: -160% 0; }
}
.quick-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.55);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.04);
}
.quick-step__num {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0b1020;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border: 1px solid rgba(255,255,255,0.28);
    flex: 0 0 auto;
}
.quick-step__text {
    font-weight: 800;
    color: rgba(226, 232, 240, 0.95);
}

/* Courses toolbar (stage chips + plan tabs) */
.courses-toolbar {
    padding: 1.05rem 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.courses-toolbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.stage-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.stage-chip {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(226, 232, 240, 0.92);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.stage-chip:hover {
    border-color: rgba(232, 103, 79, 0.45);
    background: rgba(15, 23, 42, 0.55);
}
.stage-chip.is-active {
    border-color: transparent;
    background: linear-gradient(90deg, rgba(232, 103, 79, 0.95), rgba(109, 78, 153, 0.95));
    box-shadow: 0 14px 34px rgba(232, 103, 79, 0.25);
    color: #fff;
}

.plan-tabs {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.32);
    overflow: hidden;
}
.plan-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(226, 232, 240, 0.85);
    padding: 0.55rem 0.95rem;
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.plan-tab:hover {
    background: rgba(255, 255, 255, 0.06);
}
.plan-tab.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
.stage-chip:focus-visible,
.plan-tab:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 2px;
}

/* Course footer (single CTA) */
.badge-plan {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(40, 40, 40, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.45);
    font-size: 0.74rem;
    color: rgba(226, 232, 240, 0.92);
    font-weight: 900;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.course-footer {
    margin-top: 1.1rem;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.course-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.course-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.course-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
}
.course-price-currency {
    display: flex;
    align-items: baseline;
    font-size: 1.18rem;
    color: #ffffff;
}
.course-price-currency .riyal-icon {
    margin: 0;
    margin-left: 0.25rem;
    margin-inline-start: 0.25rem;
}
.course-price {
    font-size: 1.18rem;
    font-weight: 950;
    letter-spacing: 0.2px;
    color: #ffffff;
}
.course-plan-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(148, 163, 184, 0.9);
}
.course-offer-pill {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 950;
    color: #0b1020;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 14px 35px rgba(251,191,36,0.18);
    white-space: nowrap;
}
.course-cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 16px;
    text-decoration: none;
}

/* Filter hiding */
.js-course-card.is-hidden {
    display: none !important;
}

/* Image skeleton shimmer (perceived speed) */
html.home-enhanced .course-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(255, 255, 255, 0.05) 8%,
        rgba(255, 255, 255, 0.14) 18%,
        rgba(255, 255, 255, 0.05) 33%);
    background-size: 200% 100%;
    animation: courseShimmer 1.45s linear infinite;
    opacity: 0.55;
    pointer-events: none;
}
@keyframes courseShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
html.home-enhanced .course-img.is-loaded::before {
    opacity: 0;
    animation: none;
    transition: opacity 0.35s ease;
}
/* Images remain visible; shimmer sits behind until loaded. */

/* Click-to-load video */
.video-click {
    cursor: pointer;
}
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: transparent;
    border: 0;
    padding: 0;
    z-index: 3;
    cursor: pointer;
}
.video-overlay__icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 1.15rem;
    line-height: 1;
}
.video-overlay__text {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(2, 6, 23, 0.38);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.video-click:hover .video-overlay__icon {
    transform: translateY(-2px) scale(1.04);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 22px 60px rgba(0,0,0,0.85), 0 0 22px rgba(232, 103, 79, 0.18);
}
.video-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 1.15rem;
    background:
        radial-gradient(circle at top right, rgba(232, 103, 79, 0.22), transparent 55%),
        radial-gradient(circle at bottom left, rgba(109, 78, 153, 0.26), transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(2, 6, 23, 0.85));
    pointer-events: none;
}
.video-poster__badge {
    font-weight: 950;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(2, 6, 23, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.video-poster__hint {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.9rem;
}
.video-click__btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    z-index: 3;
    cursor: pointer;
}
.video-click__btn span {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.video-click:hover .video-click__btn span {
    transform: translateY(-2px) scale(1.04);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 22px 60px rgba(0,0,0,0.85), 0 0 22px rgba(232, 103, 79, 0.18);
}
.video-click__poster {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.15rem;
    background:
        radial-gradient(circle at top right, rgba(232, 103, 79, 0.22), transparent 55%),
        radial-gradient(circle at bottom left, rgba(109, 78, 153, 0.26), transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(2, 6, 23, 0.85));
}
.video-click__poster-txt {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.video-click__poster-title {
    font-weight: 950;
    color: rgba(255, 255, 255, 0.95);
}
.video-click__poster-sub {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.9rem;
}
.video-click__btn:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 3px;
}
.video-overlay:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 3px;
}

/* Command bar */
html.command-open {
    overflow: hidden;
}
.command-bar-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8vh 1rem 1rem;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
    z-index: 10000;
}
.command-bar-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease;
}
.command-bar {
    width: min(720px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 30px 80px rgba(0,0,0,0.85);
    overflow: hidden;
    transform: translateY(-10px);
    transition: transform 0.18s ease;
}
.command-bar-backdrop.is-open .command-bar {
    transform: translateY(0);
}
.command-bar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.command-bar__title {
    font-weight: 950;
    font-size: 1.05rem;
}
.command-bar__close {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(226, 232, 240, 0.95);
    width: 38px;
    height: 38px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}
.command-bar__close:hover {
    border-color: rgba(232, 103, 79, 0.45);
    background: rgba(15, 23, 42, 0.55);
}
.command-bar__body {
    padding: 1rem 1.1rem 1.1rem;
}
.command-bar__input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(255, 255, 255, 0.95);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.command-bar__input::placeholder {
    color: rgba(148, 163, 184, 0.85);
}
.command-bar__input:focus {
    border-color: rgba(232, 103, 79, 0.7);
    box-shadow: 0 0 0 2px rgba(232, 103, 79, 0.25);
}
.command-bar__list {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-height: 320px;
    overflow: auto;
    padding-right: 4px;
}
.command-bar__item {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.28);
    border-radius: 18px;
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.95);
    text-align: right;
    transition: 0.2s ease;
}
.command-bar__item:hover {
    border-color: rgba(232, 103, 79, 0.45);
    background: rgba(15, 23, 42, 0.55);
}
.command-bar__item.is-hidden {
    display: none;
}
.command-bar__item-title {
    font-weight: 900;
}
.command-bar__item-hint {
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.9);
    direction: ltr;
    unicode-bidi: embed;
    white-space: nowrap;
}
.command-bar__footer {
    padding: 0.9rem 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(148, 163, 184, 0.95);
    font-size: 0.85rem;
}
.command-bar__kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.35);
    color: rgba(226, 232, 240, 0.95);
    font-weight: 900;
}
.command-bar__close:focus-visible,
.command-bar__item:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 2px;
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 0.65rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 9999;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s linear 0.22s;
}
.mobile-sticky-cta.is-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.mobile-sticky-cta__primary {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 12px 28px rgba(232, 103, 79, 0.28);
}
.mobile-sticky-cta__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.35);
    transition: 0.2s ease;
}
.mobile-sticky-cta__icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: transparent;
}
.mobile-sticky-cta__icon:hover {
    border-color: rgba(232, 103, 79, 0.45);
    background: rgba(15, 23, 42, 0.55);
}
.mobile-sticky-cta__icon--whatsapp:hover {
    border-color: transparent;
    filter: brightness(1.05);
}
.mobile-sticky-cta__primary:focus-visible,
.mobile-sticky-cta__icon:focus-visible {
    outline: 3px solid rgba(232, 103, 79, 0.55);
    outline-offset: 2px;
}

/* Smart motion reductions */
@media (prefers-reduced-motion: reduce) {
    .quick-steps__list::after { animation: none !important; }
    .course-img::before { animation: none !important; }
}
html.fx-paused .quick-steps__list::after,
html.fx-paused .course-img::before {
    animation-play-state: paused !important;
}

@media (max-width: 900px) {
    .courses-toolbar {
        padding: 0.95rem 1rem;
    }
}
@media (max-width: 768px) {
    .hero-chips {
        gap: 0.5rem;
    }
    .hero-chip {
        font-size: 0.9rem;
        padding: 0.45rem 0.95rem;
    }
    .quick-steps {
        padding: 1.4rem 1.2rem;
    }
    .quick-steps__list {
        grid-template-columns: 1fr;
    }
    .quick-steps__list::before,
    .quick-steps__list::after {
        display: none;
    }
    .courses-toolbar__row {
        justify-content: center;
    }
    .plan-tabs {
        width: 100%;
        justify-content: center;
    }
    .plan-tab {
        flex: 1 1 50%;
        text-align: center;
    }
    .mobile-sticky-cta {
        display: flex;
    }
    body {
        padding-bottom: 92px;
    }
    .whatsapp-float {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-sticky-cta { display: none; }
}

/* ===============================
   Header (desktop) – match landing theme
   =============================== */
@media (min-width: 992px) {
    html.home-landing-page .theme-header-1__main-mask{
        background: rgba(15, 23, 42, 0.55) !important;
        opacity: 1 !important;
    }

    html.home-landing-page .theme-header-1__main-card{
        background: var(--glass-bg) !important;
        border-color: var(--glass-border) !important;
    }

    html.home-landing-page .theme-header-1__main-card .text-dark{
        color: rgba(255, 255, 255, 0.95) !important;
    }

    html.home-landing-page .theme-header-1__main-card .text-gray-500{
        color: rgba(148, 163, 184, 0.95) !important;
    }

    html.home-landing-page .theme-header-1__main-card .bg-gray-100{
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu,
    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu__sub-menu{
        background: rgba(18, 31, 62, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 18px 55px rgba(0,0,0,0.55);
    }

    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu__item:hover{
        background: rgba(255, 255, 255, 0.06) !important;
    }

    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu__sub-menu li,
    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu__sub-menu li *{
        color: rgba(226, 232, 240, 0.92) !important;
    }

    html.home-landing-page .theme-header-1__dropdown .header-1-dropdown-menu__sub-menu li:hover *{
        color: var(--accent) !important;
    }
}

/* ===============================
   Ramadan Mode Decorations (Home only)
   =============================== */
html.home-landing-page.ramadan-mode .ramadan-decor-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

html.home-landing-page.ramadan-mode .ramadan-decor-layer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 180px;
    opacity: 0.55;
    background:
        linear-gradient(90deg,
            rgba(155, 126, 192, 0.35),
            rgba(232, 103, 79, 0.28),
            rgba(155, 126, 192, 0.35)) 0 70px / 100% 1px no-repeat,
        radial-gradient(circle at 18px 70px,
            rgba(255, 255, 255, 0.92) 0 2px,
            rgba(255, 255, 255, 0) 3px) 0 0 / 36px 120px repeat-x,
        radial-gradient(circle at 18px 70px,
            rgba(232, 103, 79, 0.42) 0 7px,
            rgba(232, 103, 79, 0) 13px) 0 0 / 36px 120px repeat-x;
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent);
    mask-image: linear-gradient(to bottom, #000 65%, transparent);
}

html.home-landing-page.ramadan-mode .ramadan-decor-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M40%208a24%2024%200%201%200%200%2048A19%2019%200%201%201%2040%208z' fill='%23E8674F'/%3E%3Cpath d='M48%2022l1.6%204.7%204.9.1-3.9%202.9%201.5%204.8-4.1-2.7-4.1%202.7%201.5-4.8-3.9-2.9%204.9-.1z' fill='%23FFFFFF'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M40%208a24%2024%200%201%200%200%2048A19%2019%200%201%201%2040%208z' fill='%236D4E99'/%3E%3Cpath d='M48%2022l1.6%204.7%204.9.1-3.9%202.9%201.5%204.8-4.1-2.7-4.1%202.7%201.5-4.8-3.9-2.9%204.9-.1z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 240px 240px, 160px 160px;
    background-position: right 40px top 115px, left 40px bottom 180px;
    filter: drop-shadow(0 18px 55px rgba(232, 103, 79, 0.12));
}

html.home-landing-page.ramadan-mode .glass-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--ram-garland-height);
    pointer-events: none;
    opacity: 0.92;
    z-index: -1;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") left 12px top 0 / var(--ram-garland-ornament-w) var(--ram-garland-ornament-h) no-repeat,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") right 12px top 0 / var(--ram-garland-ornament-w) var(--ram-garland-ornament-h) no-repeat,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") center top 0 / var(--ram-garland-center-w) var(--ram-garland-center-h) no-repeat,
        linear-gradient(90deg,
            rgba(245, 200, 66, 0.18),
            rgba(245, 200, 66, 0.38),
            rgba(245, 200, 66, 0.18)) 0 var(--ram-garland-wire-y) / 100% 1px no-repeat,
        radial-gradient(circle at 20px var(--ram-garland-wire-y),
            rgba(255, 255, 255, 0.98) 0 1.8px,
            rgba(255, 255, 255, 0) 3px) 0 0 / var(--ram-garland-step) var(--ram-garland-height) repeat-x,
        radial-gradient(circle at 20px var(--ram-garland-wire-y),
            rgba(245, 200, 66, 0.78) 0 7px,
            rgba(245, 200, 66, 0) 16px) 0 0 / var(--ram-garland-step) var(--ram-garland-height) repeat-x;
    filter:
        drop-shadow(0 0 14px rgba(245, 200, 66, 0.55))
        drop-shadow(0 0 34px rgba(245, 200, 66, 0.24));
}

html.home-landing-page.ramadan-mode .newsletter-box {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

html.home-landing-page.ramadan-mode .newsletter-box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--ram-garland-height);
    pointer-events: none;
    opacity: 0.92;
    z-index: -1;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") left 12px top 0 / var(--ram-garland-ornament-w) var(--ram-garland-ornament-h) no-repeat,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") right 12px top 0 / var(--ram-garland-ornament-w) var(--ram-garland-ornament-h) no-repeat,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Cpath d='M32%200v30' stroke='%23f5c842' stroke-opacity='.55' stroke-width='1'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%23f5c842' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' d='M32%2032a12%2012%200%201%200%200%2024a12%2012%200%201%200%200-24zm4%202a10%2010%200%201%201%200%2020a10%2010%200%201%200%200-20z' fill='%23f5c842' fill-opacity='.95'/%3E%3Cpath d='M46%2036l1.4%203.8%204%20.1-3.2%202.3%201.2%203.9-3.4-2.1-3.4%202.1%201.2-3.9-3.2-2.3%204-.1z' fill='%23f5c842' fill-opacity='.9'/%3E%3Cpath d='M20%2050l1.1%203.1%203.3%20.1-2.6%201.9%201%203.2-2.8-1.8-2.8%201.8%201-3.2-2.6-1.9%203.3-.1z' fill='%23f5c842' fill-opacity='.75'/%3E%3C/svg%3E") center top 0 / var(--ram-garland-center-w) var(--ram-garland-center-h) no-repeat,
        linear-gradient(90deg,
            rgba(245, 200, 66, 0.18),
            rgba(245, 200, 66, 0.38),
            rgba(245, 200, 66, 0.18)) 0 var(--ram-garland-wire-y) / 100% 1px no-repeat,
        radial-gradient(circle at 20px var(--ram-garland-wire-y),
            rgba(255, 255, 255, 0.98) 0 1.8px,
            rgba(255, 255, 255, 0) 3px) 0 0 / var(--ram-garland-step) var(--ram-garland-height) repeat-x,
        radial-gradient(circle at 20px var(--ram-garland-wire-y),
            rgba(245, 200, 66, 0.78) 0 7px,
            rgba(245, 200, 66, 0) 16px) 0 0 / var(--ram-garland-step) var(--ram-garland-height) repeat-x;
    filter:
        drop-shadow(0 0 14px rgba(245, 200, 66, 0.55))
        drop-shadow(0 0 34px rgba(245, 200, 66, 0.24));
}

/* ===============================
   Ramadan UI Refresh (Allowed components only)
   =============================== */
html.home-landing-page.ramadan-mode .glass-card {
    border-radius: var(--ram-card-radius);
    border-color: var(--ram-card-border);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.66),
        0 0 0 1px rgba(245, 200, 66, 0.07),
        var(--ram-card-glow);
}
html.home-landing-page.ramadan-mode .glass-card:hover {
    border-color: rgba(245, 200, 66, 0.34);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.74),
        0 0 0 1px rgba(245, 200, 66, 0.10),
        0 0 52px rgba(232, 103, 79, 0.18);
}

html.home-landing-page.ramadan-mode .ramadan-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.28rem 0.85rem;
    border-radius: var(--ram-chip-radius);
    border: 1px solid rgba(245, 200, 66, 0.32);
    color: var(--ram-gold);
    background: var(--ram-gold-muted);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(245, 200, 66, 0.10),
        0 0 18px rgba(232, 103, 79, 0.10);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}
html.home-landing-page.ramadan-mode .ramadan-ribbon::before {
    content: '☽';
    opacity: 0.95;
}
html.home-landing-page.ramadan-mode .ramadan-ribbon::after {
    content: '✦';
    opacity: 0.9;
}

html.home-landing-page.ramadan-mode .ramadan-top-banner {
    padding: 0;
    overflow: hidden;
    text-align: center;
    margin-bottom: 1.75rem;
}
html.home-landing-page.ramadan-mode .ramadan-top-banner img {
    width: 100%;
    height: auto;
    display: block;
}
html.home-landing-page.ramadan-mode .ramadan-top-banner__body {
    padding: 1.05rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
}
html.home-landing-page.ramadan-mode .ramadan-top-banner__caption {
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    line-height: 1.7;
    max-width: 980px;
}
html.home-landing-page.ramadan-mode .ramadan-top-banner__btn.btn-glow {
    background: linear-gradient(90deg, #f5c842, #ffe08a, #f5c842);
    color: #1a1202;
    font-weight: 900;
    letter-spacing: 0.01em;
    box-shadow:
        0 18px 44px rgba(245, 200, 66, 0.32),
        0 0 26px rgba(255, 255, 255, 0.10) inset;
    border: 1px solid rgba(245, 200, 66, 0.45);
}
html.home-landing-page.ramadan-mode .ramadan-top-banner__btn.btn-glow:hover {
    box-shadow:
        0 24px 60px rgba(245, 200, 66, 0.40),
        0 0 34px rgba(255, 255, 255, 0.14) inset;
    filter: brightness(1.03) saturate(1.06);
}

html.home-landing-page.ramadan-mode .hero-chip,
html.home-landing-page.ramadan-mode .stage-chip {
    border-radius: var(--ram-chip-radius);
    border-color: rgba(232, 103, 79, 0.35);
    background: rgba(2, 6, 23, 0.40);
    position: relative;
    overflow: hidden;
}
html.home-landing-page.ramadan-mode .hero-chip::after,
html.home-landing-page.ramadan-mode .stage-chip::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg,
        transparent 35%,
        rgba(255, 255, 255, 0.16) 50%,
        transparent 65%);
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}
html.home-landing-page.ramadan-mode .hero-chip:hover::after,
html.home-landing-page.ramadan-mode .stage-chip:hover::after,
html.home-landing-page.ramadan-mode .hero-chip:focus-visible::after,
html.home-landing-page.ramadan-mode .stage-chip:focus-visible::after {
    animation: ramadanShimmer 1.05s ease;
}
html.home-landing-page.ramadan-mode .hero-chip:hover::after,
html.home-landing-page.ramadan-mode .stage-chip:hover::after {
    opacity: 1;
}
html.home-landing-page.ramadan-mode .hero-chip.is-active,
html.home-landing-page.ramadan-mode .stage-chip.is-active {
    box-shadow:
        0 18px 45px rgba(232, 103, 79, 0.30),
        0 0 0 1px rgba(245, 200, 66, 0.28) inset;
}

html.home-landing-page.ramadan-mode .mini-feature {
    border-radius: calc(var(--ram-card-radius) - 2px);
    border-color: rgba(245, 200, 66, 0.18);
    background: rgba(15, 23, 42, 0.52);
    position: relative;
    overflow: hidden;
}
html.home-landing-page.ramadan-mode .mini-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at top,
        rgba(245, 200, 66, 0.12),
        transparent 58%);
    transition: opacity 0.35s ease;
}
html.home-landing-page.ramadan-mode .mini-feature:hover::before { opacity: 1; }
html.home-landing-page.ramadan-mode .mini-feature .feature-icon {
    filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.28));
}

html.home-landing-page.ramadan-mode .seasonal-banner {
    border-radius: calc(var(--ram-card-radius) + 4px);
    padding: clamp(2.2rem, 4.8vw, 3.2rem) clamp(1.4rem, 3.4vw, 2.6rem);
    border-color: rgba(245, 200, 66, 0.24);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.9),
        0 0 55px rgba(245, 200, 66, 0.10);
}
html.home-landing-page.ramadan-mode .seasonal-tag {
    border: 1px solid rgba(245, 200, 66, 0.35);
    box-shadow:
        0 10px 28px rgba(232, 103, 79, 0.35),
        0 0 18px rgba(245, 200, 66, 0.22);
}

html.home-landing-page.ramadan-mode .course-img {
    border-radius: calc(var(--ram-card-radius) - 4px);
}
html.home-landing-page.ramadan-mode .badge-level {
    border-color: rgba(245, 200, 66, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
html.home-landing-page.ramadan-mode .badge-plan {
    border-color: rgba(245, 200, 66, 0.35);
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.18), rgba(232, 103, 79, 0.18));
    color: rgba(255, 255, 255, 0.92);
}

html.home-landing-page.ramadan-mode .btn-glow,
html.home-landing-page.ramadan-mode .btn-ghost {
    position: relative;
    overflow: hidden;
}
html.home-landing-page.ramadan-mode .btn-glow::after,
html.home-landing-page.ramadan-mode .btn-ghost::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg,
        transparent 45%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 55%);
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}
html.home-landing-page.ramadan-mode .btn-glow:hover::after,
html.home-landing-page.ramadan-mode .btn-ghost:hover::after {
    opacity: 1;
    animation: ramadanShimmer 1.05s ease;
}

html.home-landing-page.ramadan-mode .faq-item {
    border-radius: 16px;
    border-color: rgba(245, 200, 66, 0.16);
}
html.home-landing-page.ramadan-mode .faq-item.open {
    border-color: rgba(245, 200, 66, 0.30);
    background: rgba(15, 23, 42, 0.92);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.75),
        0 0 22px rgba(245, 200, 66, 0.10);
}
html.home-landing-page.ramadan-mode .faq-item .faq-question span:last-child {
    transition: transform 0.2s ease;
}
html.home-landing-page.ramadan-mode .faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
}

@keyframes ramadanShimmer {
    0%   { transform: translateX(-120%); opacity: 0; }
    10%  { opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    html.home-landing-page.ramadan-mode .hero-chip:hover::after,
    html.home-landing-page.ramadan-mode .stage-chip:hover::after,
    html.home-landing-page.ramadan-mode .btn-glow:hover::after,
    html.home-landing-page.ramadan-mode .btn-ghost:hover::after {
        animation: none;
        opacity: 0;
    }
}

/* ===============================
   2026 Performance + Modern Polish
   =============================== */
html.home-landing-page body {
    background:
        radial-gradient(circle at 12% 12%, rgba(109, 78, 153, 0.24), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(232, 103, 79, 0.18), transparent 28%),
        radial-gradient(circle at 52% 78%, rgba(0, 156, 113, 0.12), transparent 32%),
        linear-gradient(180deg, #030712 0%, #020617 42%, #08111f 100%);
}

html.home-landing-page .background-effects,
html.home-landing-page .particles,
html.home-landing-page .grid-overlay,
html.home-landing-page .dynamic-lighting,
html.home-landing-page .stars,
html.home-landing-page .animated-bg-wrapper {
    contain: layout paint style;
    backface-visibility: hidden;
    transform: translateZ(0);
}

html.home-landing-page .grid-overlay {
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(109, 78, 153, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    animation-duration: 64s;
}

html.home-landing-page .wave {
    width: 160%;
    height: 160%;
    opacity: 0.5;
    animation-duration: 34s;
}
html.home-landing-page .wave:nth-child(2) { animation-duration: 40s; }
html.home-landing-page .wave:nth-child(3) { animation-duration: 48s; }
@keyframes waveAnimation {
    0% { transform: translate3d(-7%, -4%, 0) scale(1); }
    50% { transform: translate3d(6%, 4%, 0) scale(1.06); }
    100% { transform: translate3d(-7%, -4%, 0) scale(1); }
}

html.home-landing-page .particle {
    opacity: 0.52;
    box-shadow: none;
    animation-duration: 18s;
}

html.home-landing-page .light-beam {
    width: 1px;
    opacity: 0.04;
    animation-duration: 10s;
}
@keyframes lightBeam {
    0%,100% { opacity: 0.03; transform: scaleY(0); }
    50%     { opacity: 0.12; transform: scaleY(1); }
}

html.home-landing-page .bg-orb {
    width: 560px;
    height: 560px;
    filter: blur(56px);
    opacity: 0.42;
    mix-blend-mode: normal;
}
@keyframes orbPulse {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.36; }
    50%  { transform: translate3d(24px, -20px, 0) scale(1.08); opacity: 0.55; }
    100% { transform: translate3d(-24px, 26px, 0) scale(1.02); opacity: 0.4; }
}

html.home-landing-page .glass-card,
html.home-landing-page .hero-metrics-item,
html.home-landing-page .mini-feature,
html.home-landing-page .quick-step,
html.home-landing-page .newsletter-box,
html.home-landing-page .app-stores-card {
    contain: layout paint style;
    isolation: isolate;
    backface-visibility: hidden;
}

html.home-landing-page .glass-card {
    background: linear-gradient(145deg, rgba(12, 18, 32, 0.82), rgba(15, 23, 42, 0.66));
    border: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    transform-style: flat;
    box-shadow:
        0 18px 42px rgba(2, 6, 23, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html.home-landing-page .glass-card::before {
    inset: -25%;
    opacity: 0.72;
    background:
        radial-gradient(circle at top left, rgba(245, 200, 66, 0.12), transparent 42%),
        radial-gradient(circle at bottom right, rgba(109, 78, 153, 0.12), transparent 46%);
}
html.home-landing-page .glass-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
html.home-landing-page .glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 103, 79, 0.24);
    box-shadow:
        0 24px 54px rgba(2, 6, 23, 0.44),
        0 0 26px rgba(109, 78, 153, 0.12);
}

html.home-landing-page .seasonal-banner {
    background:
        radial-gradient(circle at top right, rgba(232, 103, 79, 0.26), transparent 48%),
        radial-gradient(circle at bottom left, rgba(109, 78, 153, 0.28), transparent 56%),
        linear-gradient(145deg, rgba(9, 14, 26, 0.94), rgba(15, 23, 42, 0.9));
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.52),
        0 0 34px rgba(109, 78, 153, 0.16);
}
html.home-landing-page .seasonal-banner::after {
    opacity: 0.24;
    animation-duration: 9s;
}
@keyframes bannerGlow {
    0%   { opacity: 0.08; transform: translate3d(0, 0, 0); }
    100% { opacity: 0.28; transform: translate3d(26px, -14px, 0); }
}

html.home-landing-page .hero-metrics-item,
html.home-landing-page .mini-feature,
html.home-landing-page .quick-step,
html.home-landing-page .newsletter-box,
html.home-landing-page .app-stores-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.56));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow:
        0 16px 34px rgba(2, 6, 23, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html.home-landing-page .hero-metrics-item:hover,
html.home-landing-page .mini-feature:hover,
html.home-landing-page .quick-step:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 103, 79, 0.22);
}

html.home-landing-page .course-footer,
html.home-landing-page .faq-item,
html.home-landing-page .quick-steps {
    border-color: rgba(148, 163, 184, 0.14);
}

html.fx-lite .dynamic-lighting,
html.fx-lite .stars {
    display: none;
}
html.fx-lite .wave:nth-child(3),
html.fx-lite .bg-orb.orb-3 {
    display: none;
}
html.fx-lite .grid-overlay {
    opacity: 0.1;
    background-size: 96px 96px;
}
html.fx-lite .glass-card,
html.fx-lite .seasonal-banner,
html.fx-lite .app-stores-card,
html.fx-lite .newsletter-box,
html.fx-lite .ramadan-foundation-offer {
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
}

@media (max-width: 1024px) {
    html.home-landing-page .dynamic-lighting,
    html.home-landing-page .light-beam {
        display: none;
    }

    html.home-landing-page .bg-orb {
        width: 440px;
        height: 440px;
        filter: blur(44px);
        opacity: 0.34;
    }
}

/* ===============================
   2026 Light Mode + Aurora Refinement
   =============================== */
html.home-landing-page .background-effects::before,
html.home-landing-page .background-effects::after {
    content: "";
    position: absolute;
    width: min(46vw, 540px);
    height: min(46vw, 540px);
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.28;
    pointer-events: none;
    animation: auroraFloat 22s ease-in-out infinite alternate;
}

html.home-landing-page .background-effects::before {
    top: -10%;
    right: -8%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 66%);
}

html.home-landing-page .background-effects::after {
    bottom: -14%;
    left: -10%;
    background: radial-gradient(circle, rgba(232, 103, 79, 0.16), transparent 68%);
    animation-delay: 5s;
}

@keyframes auroraFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -14px, 0) scale(1.08);
    }
    100% {
        transform: translate3d(-14px, 20px, 0) scale(1.02);
    }
}

html.home-landing-page body.light-mode {
    background:
        radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.14), transparent 32%),
        radial-gradient(circle at 88% 14%, rgba(232, 103, 79, 0.12), transparent 28%),
        radial-gradient(circle at 52% 80%, rgba(109, 78, 153, 0.10), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #f3f6fb 48%, #eef3fb 100%);
}

html.home-landing-page body.light-mode .background-effects::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 64%);
    opacity: 0.32;
}

html.home-landing-page body.light-mode .background-effects::after {
    background: radial-gradient(circle, rgba(232, 103, 79, 0.14), transparent 66%);
    opacity: 0.24;
}

html.home-landing-page body.light-mode .grid-overlay {
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.10) 1px, transparent 1px);
    background-size: 74px 74px;
}

html.home-landing-page body.light-mode .wave {
    opacity: 0.34;
}

html.home-landing-page body.light-mode .wave:nth-child(1) {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
}

html.home-landing-page body.light-mode .wave:nth-child(2) {
    background: radial-gradient(circle, rgba(109, 78, 153, 0.07) 0%, transparent 72%);
}

html.home-landing-page body.light-mode .wave:nth-child(3) {
    background: radial-gradient(circle, rgba(232, 103, 79, 0.06) 0%, transparent 74%);
}

html.home-landing-page body.light-mode .particle {
    opacity: 0.4;
}

html.home-landing-page body.light-mode .light-beam {
    opacity: 0.06;
}

html.home-landing-page body.light-mode .bg-orb {
    opacity: 0.22;
    filter: blur(52px);
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    html.home-landing-page .background-effects::before,
    html.home-landing-page .background-effects::after {
        width: min(66vw, 360px);
        height: min(66vw, 360px);
        filter: blur(18px);
        opacity: 0.2;
    }

    html.home-landing-page body.light-mode .grid-overlay {
        opacity: 0.14;
        background-size: 84px 84px;
    }
}

/* ===============================
   2026 Day Mode Card System
   =============================== */
html.home-landing-page body.light-mode {
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-border: rgba(148, 163, 184, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.84);
}

html.home-landing-page body.light-mode .section-header h2 {
    background: linear-gradient(135deg, #0f172a, #1e293b, #6d4e99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.home-landing-page body.light-mode .section-header p,
html.home-landing-page body.light-mode .quick-steps__desc,
html.home-landing-page body.light-mode .faq-answer,
html.home-landing-page body.light-mode .app-stores-desc,
html.home-landing-page body.light-mode .app-stores-hint,
html.home-landing-page body.light-mode .payment-brands,
html.home-landing-page body.light-mode .course-plan-label,
html.home-landing-page body.light-mode .store-txt small {
    color: #64748b !important;
}

html.home-landing-page body.light-mode .info-card p,
html.home-landing-page body.light-mode .seasonal-banner p,
html.home-landing-page body.light-mode .testimonials-grid .glass-card p,
html.home-landing-page body.light-mode .newsletter-box p,
html.home-landing-page body.light-mode .newsletter-box h4,
html.home-landing-page body.light-mode .faq-item p {
    color: #475569 !important;
}

html.home-landing-page body.light-mode .glass-card,
html.home-landing-page body.light-mode .hero-metrics-item,
html.home-landing-page body.light-mode .mini-feature,
html.home-landing-page body.light-mode .quick-step,
html.home-landing-page body.light-mode .newsletter-box,
html.home-landing-page body.light-mode .app-stores-card,
html.home-landing-page body.light-mode .courses-toolbar,
html.home-landing-page body.light-mode .faq-item {
    color: #0f172a;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.90));
    border-color: rgba(148, 163, 184, 0.20);
    box-shadow:
        0 18px 40px rgba(148, 163, 184, 0.16),
        0 6px 18px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html.home-landing-page body.light-mode .glass-card::before {
    inset: -22%;
    opacity: 0.92;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 38%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.10), transparent 42%),
        radial-gradient(circle at center, rgba(109, 78, 153, 0.06), transparent 52%);
    mix-blend-mode: normal;
}

html.home-landing-page body.light-mode .glass-card::after {
    border-color: rgba(255, 255, 255, 0.88);
}

html.home-landing-page body.light-mode .glass-card:hover,
html.home-landing-page body.light-mode .hero-metrics-item:hover,
html.home-landing-page body.light-mode .mini-feature:hover,
html.home-landing-page body.light-mode .quick-step:hover,
html.home-landing-page body.light-mode .faq-item:hover {
    transform: translateY(-4px) translateZ(0);
    border-color: rgba(232, 103, 79, 0.22);
    box-shadow:
        0 24px 54px rgba(148, 163, 184, 0.18),
        0 10px 26px rgba(59, 130, 246, 0.10),
        0 0 20px rgba(232, 103, 79, 0.08);
}

html.home-landing-page body.light-mode .seasonal-banner {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 48%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.12), transparent 54%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.94));
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow:
        0 24px 60px rgba(148, 163, 184, 0.18),
        0 10px 28px rgba(59, 130, 246, 0.09);
}

html.home-landing-page body.light-mode .seasonal-banner::after {
    opacity: 0.28;
    mix-blend-mode: screen;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20), transparent 68%);
    animation: daylightBannerGlow 10s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes daylightBannerGlow {
    0% {
        opacity: 0.14;
        transform: translate3d(-12px, 0, 0) scale(0.98);
    }
    100% {
        opacity: 0.30;
        transform: translate3d(16px, -10px, 0) scale(1.04);
    }
}

html.home-landing-page body.light-mode .seasonal-tag,
html.home-landing-page body.light-mode .course-offer-pill,
html.home-landing-page body.light-mode .app-stores-pill {
    box-shadow:
        0 12px 26px rgba(251, 191, 36, 0.16),
        0 4px 16px rgba(232, 103, 79, 0.10);
}

html.home-landing-page body.light-mode .hero-metrics-item {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 255, 0.78));
}

html.home-landing-page body.light-mode .hero-metrics-item span:first-child {
    background: linear-gradient(135deg, #0f172a, #2563eb, #e8674f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.home-landing-page body.light-mode .hero-metrics-item span:last-child,
html.home-landing-page body.light-mode .mini-feature h4,
html.home-landing-page body.light-mode .quick-step__text,
html.home-landing-page body.light-mode .app-stores-title,
html.home-landing-page body.light-mode .command-bar__title {
    color: #0f172a;
}

html.home-landing-page body.light-mode .mini-feature {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 246, 255, 0.84));
}

html.home-landing-page body.light-mode .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(232, 103, 79, 0.12));
    border-color: rgba(59, 130, 246, 0.18);
    box-shadow:
        0 12px 28px rgba(59, 130, 246, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html.home-landing-page body.light-mode .glass-card:hover .feature-icon {
    border-color: rgba(232, 103, 79, 0.28);
    box-shadow:
        0 14px 30px rgba(59, 130, 246, 0.12),
        0 0 18px rgba(232, 103, 79, 0.10);
}

html.home-landing-page body.light-mode .hero-chip,
html.home-landing-page body.light-mode .stage-chip,
html.home-landing-page body.light-mode .plan-tabs,
html.home-landing-page body.light-mode .plan-tab,
html.home-landing-page body.light-mode .btn-ghost {
    color: #0f172a;
}

html.home-landing-page body.light-mode .hero-chip,
html.home-landing-page body.light-mode .stage-chip {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow:
        0 10px 20px rgba(148, 163, 184, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

html.home-landing-page body.light-mode .hero-chip:hover,
html.home-landing-page body.light-mode .stage-chip:hover {
    border-color: rgba(232, 103, 79, 0.22);
    box-shadow:
        0 14px 28px rgba(59, 130, 246, 0.10),
        0 0 14px rgba(232, 103, 79, 0.06);
}

html.home-landing-page body.light-mode .hero-chip.is-active,
html.home-landing-page body.light-mode .stage-chip.is-active {
    color: #ffffff;
}

html.home-landing-page body.light-mode .plan-tabs {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(148, 163, 184, 0.20);
    box-shadow: 0 10px 24px rgba(148, 163, 184, 0.10);
}

html.home-landing-page body.light-mode .plan-tab {
    color: #475569;
}

html.home-landing-page body.light-mode .plan-tab:hover {
    background: rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .plan-tab.is-active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.12), rgba(232, 103, 79, 0.10));
    color: #0f172a;
}

html.home-landing-page body.light-mode .course-img {
    background: linear-gradient(160deg, rgba(248, 250, 255, 1), rgba(226, 232, 240, 0.95));
    box-shadow:
        inset 0 0 0 1px rgba(148, 163, 184, 0.20),
        0 10px 24px rgba(148, 163, 184, 0.14);
}

html.home-landing-page body.light-mode .course-img::after {
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.58) 50%,
        transparent 100%);
}

html.home-landing-page body.light-mode .badge-level {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.24);
    color: #7c2d12;
    box-shadow: 0 10px 22px rgba(148, 163, 184, 0.12);
}

html.home-landing-page body.light-mode .badge-plan {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.24);
    color: #334155;
    box-shadow: 0 10px 22px rgba(148, 163, 184, 0.10);
}

html.home-landing-page body.light-mode .course-footer,
html.home-landing-page body.light-mode .quick-steps {
    border-color: rgba(148, 163, 184, 0.18);
}

html.home-landing-page body.light-mode .course-price,
html.home-landing-page body.light-mode .course-price-currency,
html.home-landing-page body.light-mode .course-plan-label,
html.home-landing-page body.light-mode .course-meta-row {
    color: #0f172a;
}

html.home-landing-page body.light-mode .faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.88));
}

html.home-landing-page body.light-mode .faq-question {
    color: #0f172a;
}

html.home-landing-page body.light-mode .newsletter-box,
html.home-landing-page body.light-mode .app-stores-card {
    position: relative;
    overflow: hidden;
}

html.home-landing-page body.light-mode .newsletter-box::before,
html.home-landing-page body.light-mode .app-stores-card::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.10), transparent 38%);
    opacity: 0.9;
    pointer-events: none;
    animation: daylightCardAura 16s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes daylightCardAura {
    0% {
        transform: translate3d(-10px, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(10px, -12px, 0) scale(1.05);
    }
}

html.home-landing-page body.light-mode .newsletter-box > *,
html.home-landing-page body.light-mode .app-stores-card > * {
    position: relative;
    z-index: 1;
}

html.home-landing-page body.light-mode .input-field,
html.home-landing-page body.light-mode .payment-txt,
html.home-landing-page body.light-mode .store-btn,
html.home-landing-page body.light-mode .quick-step {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow:
        0 12px 26px rgba(148, 163, 184, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html.home-landing-page body.light-mode .input-field {
    color: #0f172a;
}

html.home-landing-page body.light-mode .input-field::placeholder {
    color: #64748b;
}

html.home-landing-page body.light-mode .input-field:focus {
    border-color: rgba(59, 130, 246, 0.38);
    box-shadow:
        0 0 0 3px rgba(59, 130, 246, 0.10),
        0 12px 26px rgba(148, 163, 184, 0.12);
}

html.home-landing-page body.light-mode .payment-label,
html.home-landing-page body.light-mode .store-btn,
html.home-landing-page body.light-mode .store-btn strong,
html.home-landing-page body.light-mode .app-stores-hint,
html.home-landing-page body.light-mode .store-arrow {
    color: #0f172a;
}

html.home-landing-page body.light-mode .store-btn:hover {
    border-color: rgba(232, 103, 79, 0.22);
    box-shadow:
        0 18px 34px rgba(148, 163, 184, 0.14),
        0 0 16px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .store-ic {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(232, 103, 79, 0.10));
    border-color: rgba(148, 163, 184, 0.18);
}

html.home-landing-page body.light-mode .store-btn-play .store-ic,
html.home-landing-page body.light-mode .store-btn-apple .store-ic,
html.home-landing-page body.light-mode .hint-dot {
    color: #2563eb;
}

html.home-landing-page body.light-mode .phone-mock {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 255, 0.82));
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow:
        0 24px 60px rgba(148, 163, 184, 0.22),
        0 10px 26px rgba(59, 130, 246, 0.10);
}

html.home-landing-page body.light-mode .phone-notch {
    background: rgba(226, 232, 240, 0.96);
    border-color: rgba(148, 163, 184, 0.18);
}

html.home-landing-page body.light-mode .phone-screen {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 255, 0.96));
    border-color: rgba(148, 163, 184, 0.18);
}

html.home-landing-page body.light-mode .mini-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(232, 103, 79, 0.10));
    border-color: rgba(148, 163, 184, 0.18);
}

html.home-landing-page body.light-mode .mini-row {
    background: rgba(148, 163, 184, 0.24);
}

html.home-landing-page body.light-mode .glow-bubble {
    opacity: 0.22;
    mix-blend-mode: multiply;
}

html.home-landing-page body.light-mode .quick-steps__list::before {
    background: rgba(148, 163, 184, 0.24);
}

html.home-landing-page body.light-mode .quick-steps__list::after {
    opacity: 0.44;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.65), rgba(232, 103, 79, 0.55), transparent);
}

html.home-landing-page body.light-mode .quick-step__num {
    box-shadow: 0 10px 22px rgba(251, 191, 36, 0.14);
}

html.fx-lite body.light-mode .newsletter-box::before,
html.fx-lite body.light-mode .app-stores-card::before,
html.fx-lite body.light-mode .seasonal-banner::after {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    html.home-landing-page body.light-mode .newsletter-box::before,
    html.home-landing-page body.light-mode .app-stores-card::before,
    html.home-landing-page body.light-mode .seasonal-banner::after {
        animation: none !important;
    }
}

/* ===============================
   2026 Day Mode Final Polish
   =============================== */
html.home-landing-page body.light-mode .glass-card,
html.home-landing-page body.light-mode .hero-metrics-item,
html.home-landing-page body.light-mode .mini-feature,
html.home-landing-page body.light-mode .quick-step,
html.home-landing-page body.light-mode .newsletter-box,
html.home-landing-page body.light-mode .app-stores-card,
html.home-landing-page body.light-mode .courses-toolbar,
html.home-landing-page body.light-mode .faq-item {
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 14px 30px rgba(148, 163, 184, 0.14),
        0 4px 14px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html.home-landing-page body.light-mode .glass-card::before {
    opacity: 0.48;
}

html.home-landing-page body.light-mode .glass-card:hover,
html.home-landing-page body.light-mode .hero-metrics-item:hover,
html.home-landing-page body.light-mode .mini-feature:hover,
html.home-landing-page body.light-mode .quick-step:hover,
html.home-landing-page body.light-mode .faq-item:hover {
    box-shadow:
        0 18px 38px rgba(148, 163, 184, 0.16),
        0 8px 18px rgba(59, 130, 246, 0.08),
        0 0 12px rgba(232, 103, 79, 0.05);
}

html.home-landing-page body.light-mode .newsletter-box::before,
html.home-landing-page body.light-mode .app-stores-card::before {
    opacity: 0.54;
    animation-duration: 22s;
}

html.home-landing-page body.light-mode .seasonal-banner::after {
    opacity: 0.18;
    animation-duration: 14s;
}

html.home-landing-page body.light-mode .glass-card h2,
html.home-landing-page body.light-mode .glass-card h3,
html.home-landing-page body.light-mode .glass-card h4,
html.home-landing-page body.light-mode .quick-steps__title,
html.home-landing-page body.light-mode .faq-question,
html.home-landing-page body.light-mode .payment-label,
html.home-landing-page body.light-mode .app-stores-title,
html.home-landing-page body.light-mode .newsletter-box h2 {
    color: #0f172a !important;
}

html.home-landing-page body.light-mode .glass-card a:not(.btn-glow):not(.btn-ghost):not(.course-cta):not(.store-btn),
html.home-landing-page body.light-mode .faq-answer a,
html.home-landing-page body.light-mode .info-card a {
    color: #2563eb !important;
}

html.home-landing-page body.light-mode .btn-glow {
    box-shadow:
        0 14px 28px rgba(232, 103, 79, 0.18),
        0 4px 12px rgba(109, 78, 153, 0.08);
}

html.home-landing-page body.light-mode .btn-glow:hover {
    box-shadow:
        0 18px 34px rgba(232, 103, 79, 0.22),
        0 6px 16px rgba(109, 78, 153, 0.10);
}

html.home-landing-page body.light-mode .btn-ghost {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow:
        0 10px 22px rgba(148, 163, 184, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

html.home-landing-page body.light-mode .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(232, 103, 79, 0.22);
    box-shadow:
        0 14px 28px rgba(148, 163, 184, 0.14),
        0 0 14px rgba(59, 130, 246, 0.06);
}

html.home-landing-page body.light-mode .quick-steps__desc,
html.home-landing-page body.light-mode .hero-metrics-item span:last-child,
html.home-landing-page body.light-mode .payment-brands,
html.home-landing-page body.light-mode .app-stores-hint,
html.home-landing-page body.light-mode .store-txt small,
html.home-landing-page body.light-mode .faq-answer,
html.home-landing-page body.light-mode .newsletter-box p,
html.home-landing-page body.light-mode .seasonal-banner p,
html.home-landing-page body.light-mode .testimonials-grid .glass-card p {
    color: #64748b !important;
}

html.home-landing-page body.light-mode .course-price,
html.home-landing-page body.light-mode .course-price-currency,
html.home-landing-page body.light-mode .course-plan-label,
html.home-landing-page body.light-mode .course-offer-pill,
html.home-landing-page body.light-mode .course-meta-row,
html.home-landing-page body.light-mode .badge-level,
html.home-landing-page body.light-mode .badge-plan {
    color: #0f172a !important;
}

html.home-landing-page body.light-mode .course-offer-pill {
    box-shadow:
        0 10px 20px rgba(251, 191, 36, 0.14),
        0 4px 10px rgba(232, 103, 79, 0.06);
}

html.home-landing-page body.light-mode .user-avatar {
    background: conic-gradient(from 140deg,
                #cbd5e1,
                #ffffff,
                #93c5fd,
                #fdba74,
                #cbd5e1);
}

html.home-landing-page body.light-mode .user-avatar::after {
    background: radial-gradient(circle at top, #ffffff, #e2e8f0);
}

/* ===============================
   2026 Premium Daylight Layer
   =============================== */
html.home-landing-page body.light-mode {
    --day-surface-1: rgba(255, 255, 255, 0.96);
    --day-surface-2: rgba(246, 249, 255, 0.94);
    --day-surface-3: rgba(239, 244, 255, 0.90);
    --day-line: rgba(148, 163, 184, 0.18);
    --day-line-strong: rgba(148, 163, 184, 0.26);
    --day-shadow-1: 0 18px 34px rgba(148, 163, 184, 0.14);
    --day-shadow-2: 0 8px 20px rgba(59, 130, 246, 0.07);
    --day-shadow-hover: 0 24px 48px rgba(148, 163, 184, 0.16);
    --day-glow-blue: rgba(59, 130, 246, 0.10);
    --day-glow-warm: rgba(232, 103, 79, 0.08);
}

html.home-landing-page body.light-mode .glass-card,
html.home-landing-page body.light-mode .hero-metrics-item,
html.home-landing-page body.light-mode .mini-feature,
html.home-landing-page body.light-mode .quick-step,
html.home-landing-page body.light-mode .newsletter-box,
html.home-landing-page body.light-mode .app-stores-card,
html.home-landing-page body.light-mode .courses-toolbar,
html.home-landing-page body.light-mode .faq-item,
html.home-landing-page body.light-mode .quick-steps {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.08), transparent 26%),
        linear-gradient(145deg, var(--day-surface-1), var(--day-surface-2) 58%, var(--day-surface-3));
    border: 1px solid var(--day-line);
    box-shadow:
        var(--day-shadow-1),
        var(--day-shadow-2),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(148, 163, 184, 0.05);
}

html.home-landing-page body.light-mode .glass-card::after,
html.home-landing-page body.light-mode .newsletter-box::after,
html.home-landing-page body.light-mode .app-stores-card::after,
html.home-landing-page body.light-mode .quick-steps::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

html.home-landing-page body.light-mode .glass-card:hover,
html.home-landing-page body.light-mode .hero-metrics-item:hover,
html.home-landing-page body.light-mode .mini-feature:hover,
html.home-landing-page body.light-mode .quick-step:hover,
html.home-landing-page body.light-mode .faq-item:hover {
    border-color: rgba(232, 103, 79, 0.18);
    box-shadow:
        var(--day-shadow-hover),
        0 10px 24px var(--day-glow-blue),
        0 0 16px var(--day-glow-warm),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

html.home-landing-page body.light-mode .seasonal-banner,
html.home-landing-page body.light-mode .ramadan-top-banner {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 36%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.10), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
    border: 1px solid var(--day-line);
    box-shadow:
        0 26px 58px rgba(148, 163, 184, 0.18),
        0 10px 24px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

html.home-landing-page body.light-mode .ramadan-top-banner {
    position: relative;
}

html.home-landing-page body.light-mode .ramadan-top-banner::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.84);
    pointer-events: none;
}

html.home-landing-page body.light-mode .btn-glow {
    background: linear-gradient(135deg, #e8674f 0%, #6d4e99 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        0 16px 28px rgba(232, 103, 79, 0.20),
        0 6px 16px rgba(109, 78, 153, 0.10);
}

html.home-landing-page body.light-mode .btn-glow:hover {
    transform: translateY(-2px) scale(1.01);
    filter: saturate(1.04) brightness(1.02);
}

html.home-landing-page body.light-mode .hero-chip,
html.home-landing-page body.light-mode .stage-chip,
html.home-landing-page body.light-mode .plan-tabs,
html.home-landing-page body.light-mode .btn-ghost,
html.home-landing-page body.light-mode .input-field,
html.home-landing-page body.light-mode .payment-txt,
html.home-landing-page body.light-mode .store-btn {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.90));
    border-color: var(--day-line-strong);
    box-shadow:
        0 10px 20px rgba(148, 163, 184, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html.home-landing-page body.light-mode .course-img,
html.home-landing-page body.light-mode .video-wrapper,
html.home-landing-page body.light-mode .phone-screen {
    border: 1px solid var(--day-line);
    box-shadow:
        0 14px 30px rgba(148, 163, 184, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

html.home-landing-page body.light-mode .video-wrapper {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.96));
    box-shadow:
        0 24px 48px rgba(148, 163, 184, 0.18),
        0 8px 20px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .video-overlay__icon,
html.home-landing-page body.light-mode .video-click__btn span {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.22);
    color: #0f172a;
    box-shadow:
        0 14px 28px rgba(148, 163, 184, 0.16),
        0 6px 16px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .video-overlay__text,
html.home-landing-page body.light-mode .video-poster__badge,
html.home-landing-page body.light-mode .video-click__poster-txt {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(148, 163, 184, 0.20);
    color: #0f172a;
}

html.home-landing-page body.light-mode .video-poster,
html.home-landing-page body.light-mode .video-click__poster {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 38%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.08), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(241, 245, 255, 0.40));
}

html.home-landing-page body.light-mode .video-poster__hint,
html.home-landing-page body.light-mode .video-click__poster-sub {
    color: #64748b;
}

html.home-landing-page body.light-mode .command-bar {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96));
    border-color: var(--day-line);
    box-shadow:
        0 28px 64px rgba(148, 163, 184, 0.20),
        0 10px 26px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .command-bar__header,
html.home-landing-page body.light-mode .command-bar__footer {
    border-color: rgba(148, 163, 184, 0.16);
}

html.home-landing-page body.light-mode .command-bar__close,
html.home-landing-page body.light-mode .command-bar__kbd,
html.home-landing-page body.light-mode .command-bar__item,
html.home-landing-page body.light-mode .command-bar__input {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.20);
    color: #0f172a;
}

html.home-landing-page body.light-mode .command-bar__input::placeholder,
html.home-landing-page body.light-mode .command-bar__item-hint,
html.home-landing-page body.light-mode .command-bar__footer {
    color: #64748b;
}

html.home-landing-page body.light-mode .command-bar__item:hover,
html.home-landing-page body.light-mode .command-bar__close:hover {
    background: rgba(248, 250, 255, 0.98);
    border-color: rgba(232, 103, 79, 0.20);
}

html.home-landing-page body.light-mode .landing-footer-inner {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.08), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
    border-color: var(--day-line);
    box-shadow:
        0 24px 56px rgba(148, 163, 184, 0.18),
        0 10px 24px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .landing-footer-inner::before {
    opacity: 0.34;
    mix-blend-mode: screen;
}

html.home-landing-page body.light-mode .landing-footer-brand-title,
html.home-landing-page body.light-mode .landing-footer-col-title,
html.home-landing-page body.light-mode .landing-footer-socials-label {
    color: #0f172a;
}

html.home-landing-page body.light-mode .landing-footer-brand-text,
html.home-landing-page body.light-mode .landing-footer-link,
html.home-landing-page body.light-mode .landing-footer-contact,
html.home-landing-page body.light-mode .landing-footer-bottom {
    color: #64748b;
}

html.home-landing-page body.light-mode .landing-footer-socials a {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.22);
    color: #334155;
    box-shadow: 0 8px 18px rgba(148, 163, 184, 0.10);
}

html.home-landing-page body.light-mode .landing-footer-bottom {
    border-top-color: rgba(148, 163, 184, 0.16);
}

html.home-landing-page body.light-mode .mobile-sticky-cta {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.92));
    border-color: rgba(148, 163, 184, 0.20);
    box-shadow:
        0 20px 40px rgba(148, 163, 184, 0.18),
        0 8px 20px rgba(59, 130, 246, 0.08);
}

html.home-landing-page body.light-mode .mobile-sticky-cta__icon {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.22);
    color: #334155;
}

html.home-landing-page body.light-mode .whatsapp-float::after {
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 12px 24px rgba(148, 163, 184, 0.16),
        0 4px 12px rgba(59, 130, 246, 0.06);
}

html.home-landing-page body.light-mode .testimonials-grid .glass-card {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
}

html.home-landing-page body.light-mode .hero-chip--icon,
html.home-landing-page body.light-mode .theme-color-toggle,
html.home-landing-page body.light-mode .store-ic,
html.home-landing-page body.light-mode .feature-icon {
    position: relative;
    overflow: hidden;
}

html.home-landing-page body.light-mode .hero-chip--icon::after,
html.home-landing-page body.light-mode .theme-color-toggle::after,
html.home-landing-page body.light-mode .store-ic::after,
html.home-landing-page body.light-mode .feature-icon::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.72) 50%, transparent 65%);
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

html.home-landing-page body.light-mode .hero-chip--icon:hover::after,
html.home-landing-page body.light-mode .theme-color-toggle:hover::after,
html.home-landing-page body.light-mode .store-btn:hover .store-ic::after,
html.home-landing-page body.light-mode .mini-feature:hover .feature-icon::after {
    opacity: 1;
    animation: daylightShine 1s ease;
}

@keyframes daylightShine {
    0% { transform: translateX(-120%); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

html.fx-lite body.light-mode .hero-chip--icon::after,
html.fx-lite body.light-mode .theme-color-toggle::after,
html.fx-lite body.light-mode .store-ic::after,
html.fx-lite body.light-mode .feature-icon::after {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    html.home-landing-page body.light-mode .hero-chip--icon:hover::after,
    html.home-landing-page body.light-mode .theme-color-toggle:hover::after,
    html.home-landing-page body.light-mode .store-btn:hover .store-ic::after,
    html.home-landing-page body.light-mode .mini-feature:hover .feature-icon::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* ===============================
   2026 Premium Nightfall Layer
   =============================== */
html.home-landing-page body .ramadan-top-banner {
    line-height: 0;
}

html.home-landing-page body .ramadan-top-banner img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: transparent !important;
    vertical-align: top;
    margin: 0 auto;
}

html.home-landing-page body .ramadan-top-banner__body {
    line-height: 1.6;
}

html.home-landing-page body.dark-mode {
    --night-surface-1: rgba(7, 12, 24, 0.92);
    --night-surface-2: rgba(10, 17, 34, 0.84);
    --night-surface-3: rgba(20, 24, 41, 0.74);
    --night-line: rgba(148, 163, 184, 0.12);
    --night-line-strong: rgba(148, 163, 184, 0.18);
    --night-shadow-1: 0 22px 54px rgba(0, 0, 0, 0.44);
    --night-shadow-2: 0 0 32px rgba(109, 78, 153, 0.12);
    --night-shadow-hover: 0 28px 62px rgba(0, 0, 0, 0.54);
    background:
        radial-gradient(circle at 12% 10%, rgba(99, 102, 241, 0.16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(232, 103, 79, 0.14), transparent 26%),
        radial-gradient(circle at 54% 82%, rgba(0, 156, 113, 0.10), transparent 30%),
        linear-gradient(180deg, #02040b 0%, #050916 42%, #091224 100%);
}

html.home-landing-page body.dark-mode .background-effects::before {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.24), transparent 64%);
    opacity: 0.34;
    animation: nightAuroraFloat 24s ease-in-out infinite alternate;
}

html.home-landing-page body.dark-mode .background-effects::after {
    background: radial-gradient(circle, rgba(232, 103, 79, 0.18), transparent 68%);
    opacity: 0.26;
    animation: nightAuroraFloat 28s ease-in-out infinite alternate-reverse;
}

html.home-landing-page body.dark-mode .dynamic-lighting::before {
    content: '';
    position: absolute;
    inset: -12%;
    background:
        conic-gradient(from 180deg at 50% 50%,
            transparent 0deg,
            rgba(109, 78, 153, 0.16) 65deg,
            rgba(232, 103, 79, 0.10) 125deg,
            transparent 200deg,
            rgba(56, 189, 248, 0.12) 300deg,
            transparent 360deg);
    filter: blur(56px);
    opacity: 0.16;
    pointer-events: none;
    animation: nightHaloDrift 30s ease-in-out infinite alternate;
}

@keyframes nightAuroraFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(22px, -16px, 0) scale(1.08); }
    100% { transform: translate3d(-18px, 20px, 0) scale(1.02); }
}

@keyframes nightHaloDrift {
    0% { transform: rotate(0deg) scale(1); opacity: 0.12; }
    100% { transform: rotate(10deg) scale(1.06); opacity: 0.18; }
}

html.home-landing-page body.dark-mode .grid-overlay {
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(109, 78, 153, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 78px 78px;
    animation-duration: 72s;
}

html.home-landing-page body.dark-mode .wave {
    opacity: 0.58;
}

html.home-landing-page body.dark-mode .wave:nth-child(1) {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.11) 0%, transparent 72%);
}

html.home-landing-page body.dark-mode .wave:nth-child(2) {
    background: radial-gradient(circle, rgba(109, 78, 153, 0.09) 0%, transparent 72%);
}

html.home-landing-page body.dark-mode .wave:nth-child(3) {
    background: radial-gradient(circle, rgba(232, 103, 79, 0.08) 0%, transparent 74%);
}

html.home-landing-page body.dark-mode .light-beam {
    width: 2px;
    opacity: 0.07;
    animation-duration: 12s;
}

html.home-landing-page body.dark-mode .bg-orb {
    width: 620px;
    height: 620px;
    filter: blur(62px);
    opacity: 0.48;
    mix-blend-mode: screen;
}

html.home-landing-page body.dark-mode .glass-card,
html.home-landing-page body.dark-mode .hero-metrics-item,
html.home-landing-page body.dark-mode .mini-feature,
html.home-landing-page body.dark-mode .quick-step,
html.home-landing-page body.dark-mode .newsletter-box,
html.home-landing-page body.dark-mode .app-stores-card,
html.home-landing-page body.dark-mode .courses-toolbar,
html.home-landing-page body.dark-mode .faq-item,
html.home-landing-page body.dark-mode .quick-steps,
html.home-landing-page body.dark-mode .seasonal-banner,
html.home-landing-page body.dark-mode .ramadan-top-banner,
html.home-landing-page body.dark-mode .ramadan-foundation-offer,
html.home-landing-page body.dark-mode .video-wrapper,
html.home-landing-page body.dark-mode .command-bar,
html.home-landing-page body.dark-mode .landing-footer-inner,
html.home-landing-page body.dark-mode .mobile-sticky-cta {
    background:
        radial-gradient(circle at top right, rgba(109, 78, 153, 0.14), transparent 26%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.10), transparent 24%),
        linear-gradient(150deg, var(--night-surface-1), var(--night-surface-2) 58%, var(--night-surface-3));
    border: 1px solid var(--night-line);
    box-shadow:
        var(--night-shadow-1),
        var(--night-shadow-2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(15, 23, 42, 0.28);
}

html.home-landing-page body.dark-mode .glass-card::before,
html.home-landing-page body.dark-mode .newsletter-box::before,
html.home-landing-page body.dark-mode .app-stores-card::before {
    opacity: 0.72;
    background:
        radial-gradient(circle at top right, rgba(109, 78, 153, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(232, 103, 79, 0.12), transparent 38%),
        radial-gradient(circle at center, rgba(56, 189, 248, 0.08), transparent 44%);
}

html.home-landing-page body.dark-mode .glass-card::after,
html.home-landing-page body.dark-mode .ramadan-top-banner::after,
html.home-landing-page body.dark-mode .quick-steps::after {
    border-color: rgba(255, 255, 255, 0.05);
}

html.home-landing-page body.dark-mode .glass-card:hover,
html.home-landing-page body.dark-mode .hero-metrics-item:hover,
html.home-landing-page body.dark-mode .mini-feature:hover,
html.home-landing-page body.dark-mode .quick-step:hover,
html.home-landing-page body.dark-mode .faq-item:hover {
    border-color: rgba(232, 103, 79, 0.18);
    box-shadow:
        var(--night-shadow-hover),
        0 0 28px rgba(109, 78, 153, 0.14),
        0 0 18px rgba(232, 103, 79, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.home-landing-page body.dark-mode .section-header h2 {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(196, 181, 253, 0.96), rgba(245, 200, 66, 0.86));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.home-landing-page body.dark-mode .section-header p,
html.home-landing-page body.dark-mode .quick-steps__desc,
html.home-landing-page body.dark-mode .faq-answer,
html.home-landing-page body.dark-mode .payment-brands,
html.home-landing-page body.dark-mode .store-txt small,
html.home-landing-page body.dark-mode .landing-footer-brand-text,
html.home-landing-page body.dark-mode .landing-footer-link,
html.home-landing-page body.dark-mode .landing-footer-contact,
html.home-landing-page body.dark-mode .landing-footer-bottom,
html.home-landing-page body.dark-mode .video-poster__hint,
html.home-landing-page body.dark-mode .video-click__poster-sub,
html.home-landing-page body.dark-mode .command-bar__item-hint,
html.home-landing-page body.dark-mode .command-bar__footer {
    color: rgba(203, 213, 225, 0.78) !important;
}

html.home-landing-page body.dark-mode .glass-card h2,
html.home-landing-page body.dark-mode .glass-card h3,
html.home-landing-page body.dark-mode .glass-card h4,
html.home-landing-page body.dark-mode .quick-steps__title,
html.home-landing-page body.dark-mode .faq-question,
html.home-landing-page body.dark-mode .payment-label,
html.home-landing-page body.dark-mode .app-stores-title,
html.home-landing-page body.dark-mode .newsletter-box h2,
html.home-landing-page body.dark-mode .landing-footer-brand-title,
html.home-landing-page body.dark-mode .landing-footer-col-title,
html.home-landing-page body.dark-mode .landing-footer-socials-label {
    color: rgba(255, 255, 255, 0.96) !important;
}

html.home-landing-page body.dark-mode .hero-chip,
html.home-landing-page body.dark-mode .stage-chip,
html.home-landing-page body.dark-mode .plan-tabs,
html.home-landing-page body.dark-mode .btn-ghost,
html.home-landing-page body.dark-mode .input-field,
html.home-landing-page body.dark-mode .payment-txt,
html.home-landing-page body.dark-mode .store-btn,
html.home-landing-page body.dark-mode .command-bar__close,
html.home-landing-page body.dark-mode .command-bar__kbd,
html.home-landing-page body.dark-mode .command-bar__item,
html.home-landing-page body.dark-mode .command-bar__input,
html.home-landing-page body.dark-mode .mobile-sticky-cta__icon,
html.home-landing-page body.dark-mode .video-overlay__text,
html.home-landing-page body.dark-mode .video-poster__badge,
html.home-landing-page body.dark-mode .video-click__poster-txt {
    background:
        linear-gradient(145deg, rgba(10, 17, 34, 0.88), rgba(19, 27, 46, 0.78));
    border-color: var(--night-line-strong);
    color: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html.home-landing-page body.dark-mode .btn-glow {
    background: linear-gradient(135deg, #e8674f 0%, #6d4e99 55%, #4f46e5 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 34px rgba(232, 103, 79, 0.24),
        0 6px 18px rgba(109, 78, 153, 0.16),
        0 0 24px rgba(79, 70, 229, 0.10);
}

html.home-landing-page body.dark-mode .btn-glow:hover {
    transform: translateY(-2px) scale(1.015);
    filter: saturate(1.08) brightness(1.04);
}

html.home-landing-page body.dark-mode .hero-chip.is-active,
html.home-landing-page body.dark-mode .stage-chip.is-active {
    box-shadow:
        0 18px 36px rgba(232, 103, 79, 0.24),
        0 0 18px rgba(109, 78, 153, 0.14);
}

html.home-landing-page body.dark-mode .ramadan-top-banner,
html.home-landing-page body.dark-mode .seasonal-banner {
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.56),
        0 0 34px rgba(109, 78, 153, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.home-landing-page body.dark-mode .ramadan-top-banner__caption {
    color: rgba(226, 232, 240, 0.86) !important;
}

html.home-landing-page body.dark-mode .ramadan-foundation-offer {
    box-shadow:
        0 30px 72px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(56, 189, 248, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.home-landing-page body.dark-mode .ramadan-foundation-offer .rfo-badge,
html.home-landing-page body.dark-mode .ramadan-foundation-offer .rfo-timer,
html.home-landing-page body.dark-mode .ramadan-foundation-offer .rfo-tbox {
    background: linear-gradient(145deg, rgba(9, 15, 28, 0.84), rgba(15, 23, 42, 0.72));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html.home-landing-page body.dark-mode .feature-icon,
html.home-landing-page body.dark-mode .store-ic,
html.home-landing-page body.dark-mode .theme-color-toggle,
html.home-landing-page body.dark-mode .hero-chip--icon,
html.home-landing-page body.dark-mode .video-overlay__icon,
html.home-landing-page body.dark-mode .video-click__btn span {
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(22, 33, 58, 0.74));
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(109, 78, 153, 0.10);
}

html.home-landing-page body.dark-mode .video-wrapper {
    background:
        radial-gradient(circle at top right, rgba(109, 78, 153, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(7, 12, 24, 0.96), rgba(10, 17, 34, 0.92));
}

html.home-landing-page body.dark-mode .landing-footer-socials a {
    background: linear-gradient(145deg, rgba(10, 17, 34, 0.88), rgba(19, 27, 46, 0.78));
    border-color: rgba(148, 163, 184, 0.16);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

html.home-landing-page body.dark-mode .whatsapp-float::after {
    background: rgba(7, 12, 24, 0.96);
    color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.36),
        0 0 16px rgba(109, 78, 153, 0.10);
}

html.fx-lite body.dark-mode .background-effects::before,
html.fx-lite body.dark-mode .background-effects::after,
html.fx-lite body.dark-mode .dynamic-lighting::before,
html.fx-lite body.dark-mode .seasonal-banner::after,
html.fx-lite body.dark-mode .ramadan-foundation-offer .rfo-sheen {
    animation: none !important;
    opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
    html.home-landing-page body.dark-mode .background-effects::before,
    html.home-landing-page body.dark-mode .background-effects::after,
    html.home-landing-page body.dark-mode .dynamic-lighting::before,
    html.home-landing-page body.dark-mode .seasonal-banner::after,
    html.home-landing-page body.dark-mode .ramadan-foundation-offer .rfo-sheen {
        animation: none !important;
    }
}
