/* ═══════════════════════════════════════════════════════════════
   EXECUTION LOCK SYSTEM - ULTRA PREMIUM STYLES v2.0
   Enhanced: Mouse Interaction, Idle Animations, 3D Effects
   ═══════════════════════════════════════════════════════════════ */

/* CSS Variables */
:root {
    --green: #B0FC51;
    --purple: #9F28E3;
    --mint: #99FFCC;
    --dark-1: #181818;
    --dark-2: #1E1E1E;
    --dark-3: #121212;
    --white: #FEFEFE;
    --glow-green: rgba(176, 252, 81, 0.6);
    --glow-purple: rgba(159, 40, 227, 0.6);
    --glow-mint: rgba(153, 255, 204, 0.4);
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-arabic: 'Tajawal', 'Inter', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--dark-1);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.8;
    cursor: none;
    min-height: 100vh;
}

body.rtl {
    direction: rtl;
    font-family: var(--font-arabic);
}

body.rtl .btn-icon {
    transform: scaleX(-1);
}

/* Selection */
::selection {
    background: var(--green);
    color: var(--dark-1);
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR - LIGHTWEIGHT VERSION
   ═══════════════════════════════════════════════════════════════ */
.cursor-outer,
.cursor-inner,
.cursor-glow,
.mouse-light {
    display: none !important;
}

/* Simple glow effect that follows mouse - CSS only, JS controlled position */
.simple-mouse-glow {
    width: 300px;
    height: 300px;
    position: fixed;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(176, 252, 81, 0.08) 0%, 
        rgba(159, 40, 227, 0.04) 30%,
        transparent 60%);
    border-radius: 50%;
    opacity: 0.7;
    will-change: left, top;
}

@media (max-width: 768px) {
    .simple-mouse-glow {
        display: none !important;
    }
}

/* Restore default cursor */
body {
    cursor: auto !important;
}

a, button, .btn-primary, .qa-answer-btn, .lang-btn {
    cursor: pointer !important;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED BACKGROUND SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.bg-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Gradient Layer */
.bg-gradient-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(159, 40, 227, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(176, 252, 81, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 80%, rgba(153, 255, 204, 0.08) 0%, transparent 40%);
    animation: bgDrift 30s ease-in-out infinite;
}

@keyframes bgDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(3%, 2%) rotate(2deg) scale(1.02); }
    50% { transform: translate(-2%, 4%) rotate(-1deg) scale(0.98); }
    75% { transform: translate(2%, -2%) rotate(1deg) scale(1.01); }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--purple), transparent);
    top: -10%;
    left: -10%;
    animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, var(--green), transparent);
    top: 40%;
    right: -15%;
    animation: orbFloat2 30s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--mint), transparent);
    bottom: -5%;
    left: 20%;
    animation: orbFloat3 20s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(315deg, var(--purple), var(--green));
    top: 60%;
    left: -5%;
    animation: orbFloat4 35s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 50px) scale(1.1); }
    66% { transform: translate(-40px, 80px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -40px) scale(1.05); }
    66% { transform: translate(40px, -60px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.15); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(60px, 40px) rotate(180deg); }
}

/* Grid Overlay */
.grid-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(176, 252, 81, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 252, 81, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Noise Texture */
.noise-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Particle System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px var(--green);
}

.particle.purple {
    background: var(--purple);
    box-shadow: 0 0 10px var(--purple);
}

.particle.mint {
    background: var(--mint);
    box-shadow: 0 0 10px var(--mint);
}

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) translateX(0) scale(0); 
        opacity: 0; 
    }
    10% { opacity: 0.8; transform: translateY(80vh) translateX(10px) scale(1); }
    50% { transform: translateY(40vh) translateX(-15px) scale(0.8); }
    90% { opacity: 0.6; }
    100% { 
        transform: translateY(-10vh) translateX(20px) scale(0.5); 
        opacity: 0; 
    }
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════════ */
.lang-switcher {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    gap: 4px;
    background: rgba(24, 24, 24, 0.8);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(176, 252, 81, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.rtl .lang-switcher {
    right: auto;
    left: 30px;
}

.lang-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: none;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s var(--ease-out-expo);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    color: var(--green);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--green), var(--mint));
    color: var(--dark-1);
    box-shadow: 0 0 30px rgba(176, 252, 81, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.main-content {
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY & TEXT ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.text-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out-expo), 
                transform 1s var(--ease-out-expo);
}

.text-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal-line {
    overflow: hidden;
    display: block;
}

.text-reveal-line span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-out-expo);
}

.text-reveal-line.visible span {
    transform: translateY(0);
}

/* Stagger animations */
.stagger-container > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.stagger-container.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-container.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-container.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-container.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-container.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-container.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-container.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-container.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-container.visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger-container.visible > *:nth-child(10) { transition-delay: 0.72s; }
.stagger-container.visible > *:nth-child(11) { transition-delay: 0.8s; }
.stagger-container.visible > *:nth-child(12) { transition-delay: 0.88s; }

.stagger-container.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--green) 0%, var(--mint) 40%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow Text */
.glow-text {
    color: var(--green);
    text-shadow: 
        0 0 10px rgba(176, 252, 81, 0.5),
        0 0 30px rgba(176, 252, 81, 0.3),
        0 0 50px rgba(176, 252, 81, 0.2);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { 
        text-shadow: 
            0 0 10px rgba(176, 252, 81, 0.5),
            0 0 30px rgba(176, 252, 81, 0.3),
            0 0 50px rgba(176, 252, 81, 0.2);
    }
    to { 
        text-shadow: 
            0 0 20px rgba(176, 252, 81, 0.8),
            0 0 40px rgba(176, 252, 81, 0.5),
            0 0 60px rgba(176, 252, 81, 0.3);
    }
}

.glow-purple {
    color: var(--purple);
    text-shadow: 
        0 0 10px rgba(159, 40, 227, 0.5),
        0 0 30px rgba(159, 40, 227, 0.3);
}

/* Content text sizes */
.text-hero {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-large {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.4;
}

.text-medium {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
}

.text-body {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 2;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - CINEMATIC 3D EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* 3D Floating Elements */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    perspective: 1000px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--green), transparent);
    top: 10%;
    left: -5%;
    animation: floatShape1 20s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(225deg, var(--purple), transparent);
    top: 60%;
    right: -5%;
    animation: floatShape2 25s ease-in-out infinite;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--mint), transparent);
    bottom: 20%;
    left: 30%;
    animation: floatShape3 15s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(50px, 30px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-30px, 50px) scale(0.9) rotate(240deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -40px) scale(1.15); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.2); }
}

.cube-hero {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    animation: cubeFloat 12s ease-in-out infinite;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(176, 252, 81, 0.1);
    border: 1px solid rgba(176, 252, 81, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--green);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Hero Sub Note */
.hero-sub-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content .text-hero {
    margin-bottom: 20px;
}

.hero-content .text-large {
    margin-bottom: 30px;
    color: var(--green);
}

.hero-content .text-body {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    animation: heroCtaPulse 3s ease-in-out infinite;
}

@keyframes heroCtaPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(176, 252, 81, 0.4), 0 15px 50px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 100px rgba(176, 252, 81, 0.6), 0 0 150px rgba(159, 40, 227, 0.3), 0 15px 50px rgba(0, 0, 0, 0.3); }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 55px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border: none;
    border-radius: 60px;
    cursor: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green) 0%, var(--mint) 50%, var(--green) 100%);
    background-size: 200% 100%;
    color: var(--dark-1);
    box-shadow: 
        0 0 50px rgba(176, 252, 81, 0.4),
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-out-expo);
    animation: btnPulse 4s ease-in-out infinite, btnGradient 3s ease infinite;
}

@keyframes btnPulse {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(176, 252, 81, 0.4),
            0 15px 50px rgba(0, 0, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(176, 252, 81, 0.6),
            0 15px 50px rgba(0, 0, 0, 0.3),
            0 0 120px rgba(159, 40, 227, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--green), var(--purple), var(--mint), var(--green));
    background-size: 300% 300%;
    border-radius: 65px;
    z-index: -1;
    opacity: 0;
    animation: btnBorderGlow 4s ease infinite;
    transition: opacity 0.3s;
}

@keyframes btnBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 0 100px rgba(176, 252, 81, 0.7),
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.97);
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.2s var(--ease-out-expo);
}

.btn-magnetic.magnetic-active {
    transition: transform 0.1s linear;
}

.btn-primary .btn-icon {
    font-size: 1.3em;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    box-shadow: 
        0 0 30px rgba(176, 252, 81, 0.2),
        inset 0 0 20px rgba(176, 252, 81, 0.05);
    animation: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--green), var(--mint));
    color: var(--dark-1);
    border-color: transparent;
}

/* Final CTA Button - Extra emphasis */
.btn-final {
    padding: 28px 70px;
    font-size: 1.3rem;
    box-shadow: 
        0 0 80px rgba(176, 252, 81, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.btn-final.highlight {
    animation: finalBtnHighlight 1s ease-out;
}

@keyframes finalBtnHighlight {
    0% { transform: scale(1); box-shadow: 0 0 80px rgba(176, 252, 81, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 150px rgba(176, 252, 81, 0.9), 0 0 200px rgba(159, 40, 227, 0.5); }
    100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-block {
    margin-bottom: 80px;
}

/* ═══════════════════════════════════════════════════════════════
   3D CARDS
   ═══════════════════════════════════════════════════════════════ */
.card-3d {
    background: linear-gradient(145deg, 
        rgba(30, 30, 30, 0.9) 0%, 
        rgba(24, 24, 24, 0.95) 100%);
    border: 1px solid rgba(176, 252, 81, 0.1);
    border-radius: 24px;
    padding: 50px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s var(--ease-out-expo);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--green), 
        var(--purple),
        transparent);
    opacity: 0.6;
}

.card-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(176, 252, 81, 0.1) 0%, 
        transparent 50%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.card-3d:hover::after {
    opacity: 1;
}

.card-3d:hover {
    border-color: rgba(176, 252, 81, 0.3);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(176, 252, 81, 0.1);
}

/* Enhanced 3D Tilt Effect - Applied via JS */
.card-3d.tilt-active {
    transition: transform 0.1s linear, box-shadow 0.3s, border-color 0.3s;
}

.card-3d.highlight-card {
    border-color: var(--green);
    background: linear-gradient(145deg, 
        rgba(176, 252, 81, 0.08) 0%, 
        rgba(30, 30, 30, 0.95) 100%);
}

/* 3D Floating Cube Decorations */
.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: cubeFloat 8s ease-in-out infinite;
}

.floating-cube .face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(176, 252, 81, 0.3);
    background: rgba(176, 252, 81, 0.03);
    backdrop-filter: blur(5px);
}

.floating-cube .face.front { transform: translateZ(30px); }
.floating-cube .face.back { transform: rotateY(180deg) translateZ(30px); }
.floating-cube .face.left { transform: rotateY(-90deg) translateZ(30px); }
.floating-cube .face.right { transform: rotateY(90deg) translateZ(30px); }
.floating-cube .face.top { transform: rotateX(90deg) translateZ(30px); }
.floating-cube .face.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes cubeFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateX(90deg) rotateY(45deg); }
    50% { transform: translateY(-10px) rotateX(180deg) rotateY(90deg); }
    75% { transform: translateY(-25px) rotateX(270deg) rotateY(135deg); }
}

/* 3D Badge Pills */
.badge-3d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(176, 252, 81, 0.1), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(176, 252, 81, 0.3);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(10deg);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-3d.purple {
    background: linear-gradient(135deg, rgba(159, 40, 227, 0.1), rgba(30, 30, 30, 0.9));
    border-color: rgba(159, 40, 227, 0.3);
    color: var(--purple);
}

@keyframes badgeFloat {
    0%, 100% { transform: perspective(500px) rotateX(10deg) translateY(0); }
    50% { transform: perspective(500px) rotateX(15deg) translateY(-5px); }
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS - PREMIUM 3D FRAMES
   ═══════════════════════════════════════════════════════════════ */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 2px solid rgba(176, 252, 81, 0.2);
    transition: all 0.5s var(--ease-out-expo);
    animation: placeholderFloat 6s ease-in-out infinite;
}

@keyframes placeholderFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg, 
        transparent, 
        var(--green), 
        transparent 30%, 
        var(--purple), 
        transparent 60%,
        var(--mint),
        transparent
    );
    animation: borderRotate 10s linear infinite;
    opacity: 0.3;
}

@keyframes borderRotate {
    100% { transform: rotate(360deg); }
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, var(--dark-2), var(--dark-1));
    border-radius: 21px;
    z-index: 1;
}

.image-placeholder:hover {
    border-color: var(--green);
    box-shadow: 
        0 0 60px rgba(176, 252, 81, 0.2),
        inset 0 0 60px rgba(176, 252, 81, 0.05);
}

.placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.placeholder-label {
    color: rgba(176, 252, 81, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.placeholder-prompt {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    max-width: 300px;
    line-height: 1.5;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Enhanced Animated Icons */
.icon-breathing {
    animation: iconBreathe 3s ease-in-out infinite;
}

@keyframes iconBreathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.icon-shimmer {
    position: relative;
    overflow: hidden;
}

.icon-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(176, 252, 81, 0.3) 50%,
        transparent 60%
    );
    animation: iconShimmer 3s linear infinite;
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.icon-glow-pulse {
    filter: drop-shadow(0 0 5px var(--green));
    animation: iconGlowPulse 2s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% { filter: drop-shadow(0 0 5px var(--green)); }
    50% { filter: drop-shadow(0 0 20px var(--green)) drop-shadow(0 0 40px var(--purple)); }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE LISTS
   ═══════════════════════════════════════════════════════════════ */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 18px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out-expo);
}

body.rtl .feature-list li {
    padding-left: 0;
    padding-right: 40px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green);
    animation: dotPulse 2s ease-in-out infinite;
}

body.rtl .feature-list li::before {
    left: auto;
    right: 0;
}

@keyframes dotPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

.feature-list li:hover {
    padding-left: 55px;
    color: var(--green);
}

body.rtl .feature-list li:hover {
    padding-left: 0;
    padding-right: 55px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-item {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 20px;
    padding: 30px 35px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--green), var(--purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(176, 252, 81, 0.2);
    transform: translateX(10px);
    background: rgba(176, 252, 81, 0.03);
}

body.rtl .faq-item:hover {
    transform: translateX(-10px);
}

.faq-question {
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    opacity: 0.85;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE Q&A BLOCKS
   ═══════════════════════════════════════════════════════════════ */
.qa-block {
    background: linear-gradient(145deg, 
        rgba(159, 40, 227, 0.1), 
        rgba(30, 30, 30, 0.8));
    border: 1px solid rgba(159, 40, 227, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.qa-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 40, 227, 0.2), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.qa-block:hover {
    transform: translateX(15px) scale(1.01);
    border-color: var(--purple);
    box-shadow: 0 0 50px rgba(159, 40, 227, 0.2);
}

body.rtl .qa-block:hover {
    transform: translateX(-15px) scale(1.01);
}

.qa-question-text {
    font-size: 1.15rem;
    font-weight: 500;
}

.qa-answer-btn {
    background: linear-gradient(135deg, var(--green), var(--mint));
    color: var(--dark-1);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 25px rgba(176, 252, 81, 0.3);
    transition: all 0.3s var(--ease-out-expo);
    border: none;
    cursor: none;
}

.qa-answer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(176, 252, 81, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON GRID
   ═══════════════════════════════════════════════════════════════ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-item {
    background: rgba(30, 30, 30, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(176, 252, 81, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.comparison-item:hover::before {
    opacity: 1;
}

.comparison-item:hover {
    border-color: rgba(176, 252, 81, 0.3);
    transform: scale(1.02);
}

.comparison-item.highlight {
    border-color: var(--green);
    background: rgba(176, 252, 81, 0.05);
    box-shadow: 0 0 50px rgba(176, 252, 81, 0.1);
}

.comparison-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.6;
}

.comparison-item.highlight .comparison-title {
    color: var(--green);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE BOX
   ═══════════════════════════════════════════════════════════════ */
.guarantee-box {
    background: linear-gradient(145deg, 
        rgba(176, 252, 81, 0.08), 
        rgba(30, 30, 30, 0.95));
    border: 2px solid var(--green);
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '🛡️';
    font-size: 70px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-1);
    padding: 0 40px;
    animation: shieldBounce 3s ease-in-out infinite;
}

@keyframes shieldBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-15px) rotate(5deg); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════════════════════════ */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--green), 
        var(--purple), 
        transparent);
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: dividerShine 4s infinite;
}

@keyframes dividerShine {
    100% { left: 200%; }
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.final-cta-section {
    padding: 150px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(176, 252, 81, 0.03) 50%,
        rgba(159, 40, 227, 0.02));
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--green));
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(176, 252, 81, 0.1);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(176, 252, 81, 0.05) 0%, transparent 50%);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--mint));
    transition: width 0.4s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--green);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.footer-contact a {
    color: var(--green);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact a:hover {
    text-shadow: 0 0 20px var(--green);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED ICONS (SVG)
   ═══════════════════════════════════════════════════════════════ */
.icon-animated {
    display: inline-block;
    transition: all 0.3s var(--ease-out-expo);
}

.icon-animated:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--green));
}

.icon-float {
    animation: iconFloatLoop 4s ease-in-out infinite;
}

@keyframes iconFloatLoop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.icon-pulse {
    animation: iconPulseLoop 2s ease-in-out infinite;
}

@keyframes iconPulseLoop {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.icon-rotate {
    animation: iconRotateLoop 20s linear infinite;
}

@keyframes iconRotateLoop {
    100% { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .card-3d {
        padding: 30px 25px;
    }
    
    .btn-primary {
        padding: 18px 40px;
        font-size: 1rem;
    }
    
    .btn-final {
        padding: 22px 50px;
        font-size: 1.1rem;
    }
    
    .lang-switcher {
        top: 15px;
        right: 15px;
    }
    
    body.rtl .lang-switcher {
        right: auto;
        left: 15px;
    }
    
    .lang-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .qa-block {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-box {
        padding: 60px 30px;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    /* Hide custom cursor on mobile */
    .cursor-outer,
    .cursor-inner,
    .cursor-glow {
        display: none !important;
    }
    
    body {
        cursor: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE TRANSITION
   ═══════════════════════════════════════════════════════════════ */
.lang-transitioning {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.98);
}

.main-content {
    transition: opacity 0.4s, filter 0.4s, transform 0.4s;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease-out-expo);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s var(--ease-out-expo);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s var(--ease-out-expo);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

body.rtl .fade-left {
    transform: translateX(60px);
}

body.rtl .fade-left.visible {
    transform: translateX(0);
}

body.rtl .fade-right {
    transform: translateX(-60px);
}

body.rtl .fade-right.visible {
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   IDLE ANIMATIONS - Page Breathing Effects
   ═══════════════════════════════════════════════════════════════ */

/* Ambient Light Rays */
.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.3;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, var(--green), transparent);
    opacity: 0;
    animation: rayMove 8s ease-in-out infinite;
}

.light-ray:nth-child(1) { left: 10%; animation-delay: 0s; }
.light-ray:nth-child(2) { left: 30%; animation-delay: 2s; }
.light-ray:nth-child(3) { left: 50%; animation-delay: 4s; }
.light-ray:nth-child(4) { left: 70%; animation-delay: 6s; }
.light-ray:nth-child(5) { left: 90%; animation-delay: 1s; }

@keyframes rayMove {
    0%, 100% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(100%); }
}

/* Neon Border Shimmer on Cards */
.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, 
        var(--green), 
        var(--purple), 
        var(--mint), 
        var(--green));
    background-size: 300% 100%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    animation: neonBorderShimmer 4s linear infinite;
}

@keyframes neonBorderShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Floating Sparkles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* Canvas Container for Advanced Particles */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Depth Layers for Parallax */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parallax-layer.back { z-index: 0; }
.parallax-layer.mid { z-index: 1; }
.parallax-layer.front { z-index: 2; }

/* Enhanced Placeholder Floating */
.image-placeholder {
    animation: placeholderFloat 6s ease-in-out infinite, placeholderGlow 4s ease-in-out infinite alternate;
}

@keyframes placeholderGlow {
    0% { box-shadow: 0 0 30px rgba(176, 252, 81, 0.1); }
    100% { box-shadow: 0 0 60px rgba(176, 252, 81, 0.2), 0 0 100px rgba(159, 40, 227, 0.1); }
}

/* Text Gradient Animation on Scroll */
.text-animate-gradient {
    background: linear-gradient(90deg, var(--white), var(--green), var(--white));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textGradientSlide 3s ease-in-out infinite;
}

@keyframes textGradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* CTA Section Emphasis */
.cta-emphasis {
    position: relative;
}

.cta-emphasis::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 252, 81, 0.05) 0%, transparent 50%);
    animation: ctaEmphasisPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaEmphasisPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   LOSS FRAMING & MICRO-DECISION ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Loss Frame Note */
.loss-frame-note {
    text-align: center;
    padding: 25px 40px;
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(159, 40, 227, 0.1), rgba(30, 30, 30, 0.8));
    border-left: 3px solid var(--purple);
    border-radius: 0 15px 15px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    position: relative;
    overflow: hidden;
}

body.rtl .loss-frame-note {
    border-left: none;
    border-right: 3px solid var(--purple);
    border-radius: 15px 0 0 15px;
}

.loss-frame-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 40, 227, 0.1), transparent);
    animation: shimmerLoss 4s infinite;
}

@keyframes shimmerLoss {
    100% { left: 100%; }
}

/* Loss Logic Box */
.loss-logic-box {
    background: linear-gradient(145deg, rgba(255, 100, 100, 0.05), rgba(30, 30, 30, 0.95));
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.loss-logic-icon {
    font-size: 40px;
    margin-bottom: 20px;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loss-logic-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Micro-Decision Block */
.micro-decision {
    text-align: center;
    padding: 60px 40px;
    margin: 60px 0;
    background: linear-gradient(145deg, rgba(176, 252, 81, 0.03), rgba(30, 30, 30, 0.9));
    border-radius: 30px;
    border: 1px solid rgba(176, 252, 81, 0.1);
    position: relative;
}

.micro-decision::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--green), var(--purple), var(--mint), var(--green));
    background-size: 300% 100%;
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    animation: microBorder 4s linear infinite;
    transition: opacity 0.3s;
}

.micro-decision:hover::before {
    opacity: 0.5;
}

@keyframes microBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.micro-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

/* Decision Point Section */
.decision-point-section {
    padding: 80px 0;
}

.decision-point {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(145deg, rgba(159, 40, 227, 0.08), rgba(30, 30, 30, 0.95));
    border: 2px solid rgba(159, 40, 227, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.decision-point::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--purple), transparent 30%, var(--green), transparent 60%);
    animation: decisionRotate 15s linear infinite;
    opacity: 0.1;
}

@keyframes decisionRotate {
    100% { transform: rotate(360deg); }
}

.decision-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
}

.decision-main {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.decision-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
}

/* Time Pressure (Psychological, No Countdown) */
.time-pressure-note {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(176, 252, 81, 0.1);
    border: 1px solid rgba(176, 252, 81, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--green);
    margin-top: 30px;
}

/* Enhanced Interactive Hover Effects */
.card-3d:hover .loss-logic-box,
.card-3d:hover .micro-decision {
    transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .micro-decision {
        padding: 40px 25px;
    }
    
    .decision-point {
        padding: 50px 30px;
    }
    
    .micro-question {
        font-size: 1.2rem;
    }
    
    .loss-logic-box {
        padding: 30px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS INDICATOR
   ═══════════════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100001;
}

.scroll-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green), var(--purple), var(--mint));
    background-size: 200% 100%;
    animation: progressGradient 3s linear infinite;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--green), 0 0 20px var(--purple);
}

@keyframes progressGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED BUTTON STATES FOR COLD TRAFFIC
   ═══════════════════════════════════════════════════════════════ */

/* Attention-grabbing pulse for primary CTAs */
.btn-primary.cta-button {
    position: relative;
}

.btn-primary.cta-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, var(--green), var(--purple), var(--mint), var(--green));
    background-size: 300% 100%;
    border-radius: 65px;
    z-index: -1;
    opacity: 0;
    animation: btnAttention 3s ease-in-out infinite;
}

@keyframes btnAttention {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.btn-primary.cta-button:hover::before {
    opacity: 1;
}

/* Color shifting on hover */
.btn-primary:hover {
    background: linear-gradient(135deg, var(--mint) 0%, var(--green) 50%, var(--mint) 100%);
    background-size: 200% 100%;
    animation: btnColorShift 1s ease infinite;
}

@keyframes btnColorShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED CARD DEPTH EFFECTS
   ═══════════════════════════════════════════════════════════════ */

.card-3d {
    transition: all 0.5s var(--ease-out-expo), box-shadow 0.3s;
}

.card-3d:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(176, 252, 81, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Inner glow effect on cards */
.card-3d::after {
    transition: opacity 0.5s, background 0.3s;
}

.card-3d:hover::after {
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(176, 252, 81, 0.15) 0%, 
        rgba(159, 40, 227, 0.05) 30%,
        transparent 60%
    );
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM TEXT HIGHLIGHTS
   ═══════════════════════════════════════════════════════════════ */

.text-highlight-animated {
    position: relative;
    display: inline;
}

.text-highlight-animated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(90deg, rgba(176, 252, 81, 0.2), rgba(159, 40, 227, 0.2));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.text-highlight-animated.visible::after {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════════
   BREATHING ANIMATION FOR STATIC ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

.breathing {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

/* Apply breathing to specific elements */
.image-placeholder .placeholder-icon {
    animation: breathe 3s ease-in-out infinite, iconFloatLoop 4s ease-in-out infinite;
}

.guarantee-box::before {
    animation: shieldBounce 3s ease-in-out infinite, breathe 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED HERO 3D EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 20%, rgba(176, 252, 81, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(159, 40, 227, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(153, 255, 204, 0.06) 0%, transparent 40%);
    animation: heroGradientPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGradientPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating 3D Geometric Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    will-change: transform;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green), transparent 70%);
    top: 10%;
    left: -5%;
    animation: floatShape1 20s ease-in-out infinite, pulseShape 4s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple), transparent 70%);
    top: 60%;
    right: -5%;
    animation: floatShape2 25s ease-in-out infinite, pulseShape 5s ease-in-out infinite 1s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--mint), transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: floatShape3 15s ease-in-out infinite, pulseShape 3s ease-in-out infinite 2s;
}

.floating-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(176, 252, 81, 0.3), transparent 70%);
    top: 50%;
    right: 20%;
    animation: floatShape1 22s ease-in-out infinite reverse, pulseShape 4s ease-in-out infinite 0.5s;
}

.floating-shape.shape-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(159, 40, 227, 0.4), transparent 70%);
    bottom: 10%;
    right: 10%;
    animation: floatShape2 18s ease-in-out infinite, pulseShape 3.5s ease-in-out infinite 1.5s;
}

/* Second hero cube */
.cube-hero-2 {
    animation: cubeFloat 15s ease-in-out infinite reverse, cubeRotate 25s linear infinite reverse !important;
}

.cube-hero-2 .face {
    border-color: rgba(159, 40, 227, 0.4) !important;
    background: rgba(159, 40, 227, 0.05) !important;
}

.cube-hero-2 .face.front { transform: translateZ(30px); }
.cube-hero-2 .face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-hero-2 .face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-hero-2 .face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-hero-2 .face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-hero-2 .face.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes pulseShape {
    0%, 100% { filter: blur(60px); opacity: 0.4; }
    50% { filter: blur(80px); opacity: 0.6; }
}

/* Enhanced 3D Cube */
.cube-hero {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    transform-style: preserve-3d;
    animation: cubeFloat 12s ease-in-out infinite, cubeRotate 20s linear infinite;
}

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-hero .face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(176, 252, 81, 0.4);
    background: rgba(176, 252, 81, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 
        inset 0 0 30px rgba(176, 252, 81, 0.1),
        0 0 20px rgba(176, 252, 81, 0.1);
}

.cube-hero .face.front { transform: translateZ(50px); }
.cube-hero .face.back { transform: rotateY(180deg) translateZ(50px); }
.cube-hero .face.left { transform: rotateY(-90deg) translateZ(50px); }
.cube-hero .face.right { transform: rotateY(90deg) translateZ(50px); }
.cube-hero .face.top { transform: rotateX(90deg) translateZ(50px); }
.cube-hero .face.bottom { transform: rotateX(-90deg) translateZ(50px); }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED MOUSE INTERACTION EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Stronger mouse light effect */
.mouse-light {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, 
        rgba(176, 252, 81, 0.12) 0%, 
        rgba(159, 40, 227, 0.06) 25%,
        rgba(153, 255, 204, 0.03) 40%,
        transparent 60%);
    filter: blur(100px);
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.mouse-light.intensified {
    width: 1200px;
    height: 1200px;
    opacity: 1;
    background: radial-gradient(circle, 
        rgba(176, 252, 81, 0.2) 0%, 
        rgba(159, 40, 227, 0.1) 25%,
        rgba(153, 255, 204, 0.05) 40%,
        transparent 60%);
}

/* Enhanced cursor glow */
.cursor-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(176, 252, 81, 0.2) 0%, 
        rgba(159, 40, 227, 0.1) 20%,
        rgba(153, 255, 204, 0.05) 35%,
        transparent 55%);
    filter: blur(80px);
}

/* Card depth on hover - enhanced */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: translateY(-20px) scale(1.02) rotateX(2deg);
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(176, 252, 81, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED IDLE ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* More pronounced breathing effect */
@keyframes idleBreathe {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.01); 
        filter: brightness(1.05);
    }
}

.card-3d.highlight-card {
    animation: idleBreathe 6s ease-in-out infinite;
}

/* Glowing border animation for important elements */
.guarantee-box {
    animation: guaranteeGlow 4s ease-in-out infinite;
}

@keyframes guaranteeGlow {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(176, 252, 81, 0.2);
        border-color: var(--green);
    }
    50% { 
        box-shadow: 0 0 80px rgba(176, 252, 81, 0.4), 0 0 120px rgba(159, 40, 227, 0.2);
        border-color: var(--mint);
    }
}

/* Enhanced image placeholder floating */
.image-placeholder {
    animation: 
        placeholderFloat 6s ease-in-out infinite,
        placeholderGlow 4s ease-in-out infinite alternate,
        placeholderRotate 20s ease-in-out infinite;
}

@keyframes placeholderRotate {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateX(2deg) rotateY(1deg); }
    50% { transform: translateY(-5px) rotateX(0deg) rotateY(-1deg); }
    75% { transform: translateY(-15px) rotateX(-1deg) rotateY(0.5deg); }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED MICRO-DECISION STYLING
   ═══════════════════════════════════════════════════════════════ */

.micro-decision {
    position: relative;
    overflow: hidden;
}

.micro-decision::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(176, 252, 81, 0.1),
        transparent 30%,
        rgba(159, 40, 227, 0.08),
        transparent 60%
    );
    animation: microDecisionRotate 10s linear infinite;
    opacity: 0.5;
}

@keyframes microDecisionRotate {
    100% { transform: rotate(360deg); }
}

.micro-decision:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(176, 252, 81, 0.15);
}

.micro-question {
    position: relative;
    z-index: 1;
}

.micro-decision .btn-primary {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED LOSS FRAMING VISUAL IMPACT
   ═══════════════════════════════════════════════════════════════ */

.loss-frame-note {
    position: relative;
    overflow: hidden;
}

.loss-frame-note::after {
    content: '⚡';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    opacity: 0.3;
    animation: lossIconPulse 2s ease-in-out infinite;
}

body.rtl .loss-frame-note::after {
    right: auto;
    left: 30px;
}

@keyframes lossIconPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 0.6; }
}

.loss-logic-box {
    animation: lossLogicPulse 5s ease-in-out infinite;
}

@keyframes lossLogicPulse {
    0%, 100% { 
        border-color: rgba(255, 100, 100, 0.2);
        box-shadow: 0 0 30px rgba(255, 100, 100, 0.05);
    }
    50% { 
        border-color: rgba(255, 100, 100, 0.4);
        box-shadow: 0 0 50px rgba(255, 100, 100, 0.1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED DECISION POINT VISUAL
   ═══════════════════════════════════════════════════════════════ */

.decision-point {
    animation: decisionPointGlow 6s ease-in-out infinite;
}

@keyframes decisionPointGlow {
    0%, 100% { 
        border-color: rgba(159, 40, 227, 0.3);
        box-shadow: 0 0 40px rgba(159, 40, 227, 0.1);
    }
    50% { 
        border-color: rgba(176, 252, 81, 0.4);
        box-shadow: 0 0 80px rgba(176, 252, 81, 0.15), 0 0 120px rgba(159, 40, 227, 0.1);
    }
}

.decision-point:hover {
    transform: scale(1.01);
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED BUTTON MAGNETIC EFFECT
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
    position: relative;
    overflow: visible;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(90deg, 
        var(--green), 
        var(--purple), 
        var(--mint), 
        var(--green));
    background-size: 300% 100%;
    border-radius: 65px;
    z-index: -1;
    opacity: 0;
    animation: btnBorderGlow 4s linear infinite;
    transition: opacity 0.5s;
}

.btn-primary:hover::before {
    opacity: 0.7;
}

/* Enhanced press effect */
.btn-primary:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 
        0 0 30px rgba(176, 252, 81, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED SVG ICON ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* Lock icon - breathing glow */
svg use[href="#icon-lock"] {
    animation: iconLockPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px var(--green));
}

@keyframes iconLockPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 5px var(--green));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px var(--green)) drop-shadow(0 0 30px var(--purple));
        transform: scale(1.05);
    }
}

/* Shield icon - protective shimmer */
svg use[href="#icon-shield"] {
    animation: iconShieldShimmer 4s ease-in-out infinite;
}

@keyframes iconShieldShimmer {
    0%, 100% { 
        filter: drop-shadow(0 0 5px var(--green));
        opacity: 0.7;
    }
    50% { 
        filter: drop-shadow(0 0 20px var(--mint));
        opacity: 1;
    }
}

/* Bolt icon - energy flash */
svg use[href="#icon-bolt"] {
    animation: iconBoltFlash 2s ease-in-out infinite;
}

@keyframes iconBoltFlash {
    0%, 90%, 100% { 
        filter: drop-shadow(0 0 5px var(--purple));
        opacity: 0.6;
    }
    95% { 
        filter: drop-shadow(0 0 30px var(--green)) drop-shadow(0 0 50px var(--mint));
        opacity: 1;
    }
}

/* Compass icon - subtle rotation */
svg use[href="#icon-compass"] {
    animation: iconCompassRotate 20s linear infinite;
}

@keyframes iconCompassRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* All placeholder icons - enhanced hover */
.placeholder-icon {
    transition: all 0.5s var(--ease-out-expo);
}

.image-placeholder:hover .placeholder-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 30px var(--green)) drop-shadow(0 0 50px var(--purple));
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED Q&A BLOCKS
   ═══════════════════════════════════════════════════════════════ */

.qa-block {
    position: relative;
    overflow: hidden;
}

.qa-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(159, 40, 227, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease-out;
}

.qa-block:hover::after {
    transform: translateX(100%);
}

.qa-answer-btn {
    position: relative;
    z-index: 2;
    animation: qaButtonPulse 3s ease-in-out infinite;
}

@keyframes qaButtonPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(176, 252, 81, 0.3); }
    50% { box-shadow: 0 0 40px rgba(176, 252, 81, 0.5), 0 0 60px rgba(159, 40, 227, 0.2); }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED FAQ ITEMS
   ═══════════════════════════════════════════════════════════════ */

.faq-item {
    position: relative;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(176, 252, 81, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-question {
    position: relative;
    display: inline-block;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--purple));
    transition: width 0.4s var(--ease-out-expo);
}

.faq-item:hover .faq-question::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   TEXT REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */

@keyframes textRevealGlow {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    50% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-visible {
    animation: textRevealGlow 0.8s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA ENHANCED
   ═══════════════════════════════════════════════════════════════ */

.final-cta-section {
    position: relative;
    overflow: hidden;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(176, 252, 81, 0.1) 0%,
        rgba(159, 40, 227, 0.05) 30%,
        transparent 60%
    );
    animation: finalCtaGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes finalCtaGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.btn-final {
    animation: 
        btnPulse 4s ease-in-out infinite,
        btnGradient 3s ease infinite,
        btnFinalAttention 2s ease-in-out infinite;
}

@keyframes btnFinalAttention {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ═══════════════════════════════════════════════════════════════
   AD-READY KILL ZONE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Ultra attention-grabbing final section */
.final-cta-section {
    background: 
        radial-gradient(ellipse 120% 80% at 50% 100%, rgba(176, 252, 81, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(159, 40, 227, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, rgba(24, 24, 24, 1) 100%);
}

/* Eye-catching arrow pulling attention down */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--green), var(--purple));
    animation: pullDown 2s ease-in-out infinite;
}

@keyframes pullDown {
    0%, 100% { height: 120px; opacity: 0.5; }
    50% { height: 180px; opacity: 1; }
}

/* Enhanced button glow ring */
.btn-final::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: conic-gradient(from 0deg, var(--green), var(--purple), var(--mint), var(--green));
    border-radius: 70px;
    z-index: -1;
    animation: btnRingRotate 4s linear infinite;
    opacity: 0.6;
}

@keyframes btnRingRotate {
    100% { transform: rotate(360deg); }
}

/* Urgency visual cue without countdown */
.urgency-subtle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(176, 252, 81, 0.08);
    border: 1px solid rgba(176, 252, 81, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    animation: urgencyPulse 3s ease-in-out infinite;
}

.urgency-subtle::before {
    content: '●';
    color: var(--green);
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════
   PSYCHOLOGICAL PRESSURE ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Loss aversion warning box */
.loss-warning {
    background: linear-gradient(135deg, rgba(255, 150, 100, 0.08), rgba(30, 30, 30, 0.95));
    border: 1px solid rgba(255, 150, 100, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.loss-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 150, 100, 0.1), transparent);
    animation: warningShimmer 5s infinite;
}

@keyframes warningShimmer {
    100% { left: 100%; }
}

.loss-warning-icon {
    font-size: 28px;
    margin-bottom: 15px;
    animation: warningIconPulse 2s ease-in-out infinite;
}

@keyframes warningIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.loss-warning-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Commitment checkpoint */
.commitment-check {
    text-align: center;
    padding: 50px;
    margin: 60px 0;
    background: linear-gradient(145deg, rgba(176, 252, 81, 0.05), rgba(30, 30, 30, 0.95));
    border: 2px dashed rgba(176, 252, 81, 0.3);
    border-radius: 25px;
    position: relative;
}

.commitment-check::before {
    content: '✓';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--green);
    color: var(--dark-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED HERO CINEMATIC 3D
   ═══════════════════════════════════════════════════════════════ */

/* More dramatic hero overlay */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--dark-1), transparent);
    pointer-events: none;
    z-index: 5;
}

/* Floating 3D elements enhanced */
.hero-3d-elements::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(176, 252, 81, 0.2);
    border-radius: 20px;
    animation: heroShapeFloat1 15s ease-in-out infinite;
    transform-style: preserve-3d;
    opacity: 0.5;
}

.hero-3d-elements::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(159, 40, 227, 0.3);
    border-radius: 50%;
    animation: heroShapeFloat2 18s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes heroShapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translate(30px, -20px) rotateX(15deg) rotateY(10deg); }
    50% { transform: translate(-20px, -40px) rotateX(-10deg) rotateY(-15deg); }
    75% { transform: translate(10px, -10px) rotateX(5deg) rotateY(20deg); }
}

@keyframes heroShapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 20px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.9); }
}

/* Hero text dramatic entrance */
.hero-content .text-hero {
    animation: heroTextReveal 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-content .text-large {
    animation: heroTextReveal 1.2s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-content .text-body {
    animation: heroTextReveal 1.2s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.hero-content .hero-cta {
    animation: heroTextReveal 1.2s ease-out forwards, heroCtaPulse 3s ease-in-out infinite 1.5s;
    animation-delay: 1.2s;
    opacity: 0;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED INTERACTIVE ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Stronger hover depth on all cards */
.card-3d {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
    transform: translateY(-25px) scale(1.03) rotateX(3deg);
    box-shadow: 
        0 70px 140px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(176, 252, 81, 0.2),
        0 0 200px rgba(159, 40, 227, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Glowing border animation for highlighted cards */
.card-3d.highlight-card {
    position: relative;
}

.card-3d.highlight-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, var(--green), var(--purple), var(--mint), var(--green));
    background-size: 400% 100%;
    border-radius: 27px;
    z-index: -1;
    animation: highlightBorderFlow 6s linear infinite;
    opacity: 0.7;
}

@keyframes highlightBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Enhanced image placeholder 3D frame */
.image-placeholder {
    perspective: 1500px;
    transform-style: preserve-3d;
}

.image-placeholder::before {
    animation: borderRotate 8s linear infinite;
    opacity: 0.5;
}

.image-placeholder:hover::before {
    opacity: 0.8;
    animation-duration: 4s;
}

.image-placeholder:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(176, 252, 81, 0.3),
        inset 0 0 100px rgba(176, 252, 81, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   AD-TRAFFIC OPTIMIZED BUTTONS
   ═══════════════════════════════════════════════════════════════ */

/* Attention-grabbing CTA animations */
.cta-button {
    position: relative;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(176, 252, 81, 0.5) 50%,
        transparent 100%
    );
    border-radius: 65px;
    opacity: 0;
    animation: ctaRipple 3s ease-in-out infinite;
}

@keyframes ctaRipple {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

/* Button text shimmer */
.btn-text {
    position: relative;
    z-index: 2;
}

.cta-button:hover .btn-text {
    animation: textShimmer 0.8s ease-out;
}

@keyframes textShimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
    100% { filter: brightness(1); }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL TRIGGERED EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Progress-aware elements */
.scroll-aware {
    transition: all 0.5s ease-out;
}

.scroll-aware.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky CTA reminder (subtle) */
.sticky-cta-reminder {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: rgba(24, 24, 24, 0.95);
    border: 1px solid rgba(176, 252, 81, 0.3);
    border-radius: 50px;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.sticky-cta-reminder.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-reminder:hover {
    background: var(--green);
    color: var(--dark-1);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(176, 252, 81, 0.3);
}

body.rtl .sticky-cta-reminder {
    right: auto;
    left: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE AD-OPTIMIZED
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-content .text-hero {
        animation-delay: 0.1s;
    }
    
    .hero-content .text-large {
        animation-delay: 0.3s;
    }
    
    .hero-content .hero-cta {
        animation-delay: 0.5s;
    }
    
    .sticky-cta-reminder {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
    
    body.rtl .sticky-cta-reminder {
        right: 20px;
        left: 20px;
    }
    
    .loss-warning,
    .commitment-check {
        padding: 25px;
    }
    
    .btn-final {
        padding: 22px 40px;
    }
}
.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(176, 252, 81, 0.25),
    0 0 80px rgba(159, 40, 227, 0.15);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}
.image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.premium-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 
    0 40px 120px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: 
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.premium-image:hover {
  transform: scale(1.03);
  box-shadow: 
    0 60px 160px rgba(176,252,81,0.25),
    0 0 0 1px rgba(176,252,81,0.25);
}
.image-03 {
    max-width: 80%;
}