/* ==========================================
   INSTAGRAM REELS EMPIRE - PREMIUM STYLES
   Enhanced Version with 3D, Animations, Premium Feel
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-dark: #050508;
    --bg-darker: #020204;
    --bg-card: #0d0d14;
    --bg-card-hover: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #a8a8b8;
    --text-muted: #5a5a6e;
    
    /* Accent Colors - Multi-color palette */
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-pink: #ec4899;
    --accent-pink-light: #f472b6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-red: #ef4444;
    --accent-yellow: #eab308;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --gradient-warm: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    --gradient-cool: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    --gradient-hero: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 25%, var(--accent-blue) 50%, var(--accent-cyan) 75%, var(--accent-purple) 100%);
    
    /* Glow */
    --glow-purple: 0 0 40px rgba(139, 92, 246, 0.6);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.6);
    --glow-blue: 0 0 40px rgba(59, 130, 246, 0.6);
    --glow-multi: 0 0 60px rgba(139, 92, 246, 0.4), 0 0 120px rgba(236, 72, 153, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arabic: 'Tajawal', 'Cairo', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* 3D */
    --perspective: 1000px;
}

/* RTL Support */
[dir="rtl"] {
    --font-primary: 'Tajawal', 'Cairo', sans-serif;
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body {
    font-family: var(--font-arabic);
}

/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.4;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: scale(1.1) rotate(2deg);
        filter: hue-rotate(15deg);
    }
    50% { 
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(30deg);
    }
    75% { 
        transform: scale(1.1) rotate(-2deg);
        filter: hue-rotate(15deg);
    }
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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");
}

/* 3D Background Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    width: 0%;
    box-shadow: var(--glow-purple);
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 6px;
    background: rgba(13, 13, 20, 0.9);
    backdrop-filter: blur(20px);
    padding: 6px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[dir="rtl"] .lang-switcher {
    right: auto;
    left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.lang-btn:hover::before {
    opacity: 0.1;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-purple);
}

.lang-btn.active::before {
    opacity: 0;
}

/* Sticky Mini CTA */
.sticky-cta {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--glow-multi);
    transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta.visible {
    top: 80px;
}

.sticky-cta span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.cta-btn.mini {
    padding: 10px 24px;
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition-bounce);
    box-shadow: var(--glow-purple);
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 30px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-multi);
}

.back-to-top svg {
    color: white;
}

/* Floating Icons - Enhanced */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0.2;
    transition: transform 0.3s ease-out, opacity 0.3s ease;
    will-change: transform;
}

.float-icon svg {
    width: 100%;
    height: 100%;
}

.float-icon.icon-1 { top: 10%; left: 5%; color: var(--accent-pink); animation: floatIcon1 12s ease-in-out infinite; }
.float-icon.icon-2 { top: 20%; right: 8%; color: var(--accent-purple); animation: floatIcon2 14s ease-in-out infinite; }
.float-icon.icon-3 { top: 35%; left: 3%; color: var(--accent-blue); animation: floatIcon3 10s ease-in-out infinite; }
.float-icon.icon-4 { top: 50%; right: 5%; color: var(--accent-cyan); animation: floatIcon1 16s ease-in-out infinite; }
.float-icon.icon-5 { top: 65%; left: 7%; color: var(--accent-green); animation: floatIcon2 11s ease-in-out infinite; }
.float-icon.icon-6 { top: 75%; right: 10%; color: var(--accent-orange); animation: floatIcon3 13s ease-in-out infinite; }
.float-icon.icon-7 { top: 15%; left: 15%; color: var(--accent-yellow); animation: floatIcon1 15s ease-in-out infinite; }
.float-icon.icon-8 { top: 40%; right: 15%; color: var(--accent-pink-light); animation: floatIcon2 12s ease-in-out infinite; }
.float-icon.icon-9 { top: 55%; left: 12%; color: var(--accent-purple-light); animation: floatIcon3 14s ease-in-out infinite; }
.float-icon.icon-10 { top: 85%; right: 3%; color: var(--accent-blue); animation: floatIcon1 10s ease-in-out infinite; }
.float-icon.icon-11 { top: 25%; left: 25%; color: var(--accent-cyan); animation: floatIcon2 16s ease-in-out infinite; }
.float-icon.icon-12 { top: 70%; right: 20%; color: var(--accent-green); animation: floatIcon3 11s ease-in-out infinite; }

@keyframes floatIcon1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(10deg); }
    50% { transform: translate(-10px, -10px) rotate(-5deg); }
    75% { transform: translate(10px, 15px) rotate(5deg); }
}

@keyframes floatIcon2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, 15px) rotate(-10deg); }
    50% { transform: translate(15px, -15px) rotate(8deg); }
    75% { transform: translate(-10px, -20px) rotate(-5deg); }
}

@keyframes floatIcon3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 10px) rotate(15deg); }
    66% { transform: translate(-15px, -25px) rotate(-10deg); }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Base */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientText 5s ease infinite;
}

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

/* ==========================================
   HERO SECTION - Premium 3D Layout
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background - Clear, Visible, Easy to Replace */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* REPLACE THIS WITH YOUR IMAGE */
    background-image: url('../assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Reduce brightness of hero image for better text readability */
    filter: brightness(70%);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    /* Visible placeholder - NOT dark */
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%,
        #1a1a2e 50%,
        #0f3460 75%,
        #1a1a2e 100%
    );
    background-size: 400% 400%;
    animation: heroPlaceholderShift 15s ease infinite;
    /* Hide the placeholder when a real background image is provided */
    display: none;
    /* flex-direction: column;
    align-items: center;
    justify-content: center; */
}

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

.placeholder-content {
    text-align: center;
    color: var(--text-muted);
    opacity: 0.6;
}

.placeholder-content svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.placeholder-content span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.placeholder-content small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Subtle overlay - NOT too dark */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.3) 0%,
        rgba(5, 5, 8, 0.5) 40%,
        rgba(5, 5, 8, 0.7) 70%,
        rgba(5, 5, 8, 0.9) 100%
    );
}

/* 3D Layers */
.hero-3d-container {
    position: relative;
    z-index: 3;
    perspective: var(--perspective);
    transform-style: preserve-3d;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.layer-back {
    transform: translateZ(-100px) scale(1.1);
}

.layer-mid {
    transform: translateZ(-50px) scale(1.05);
}

.layer-front {
    position: relative;
    transform: translateZ(0);
    pointer-events: auto;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    padding: 0 24px;
    transform-style: preserve-3d;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.1rem;
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line .word {
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 60px;
}

.cta-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 22px; }
}

/* ==========================================
   CTA BUTTONS - Premium Style
   ========================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn .btn-text {
    position: relative;
    z-index: 2;
}

.cta-btn .btn-shine {
    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 ease;
}

.cta-btn:hover .btn-shine {
    left: 100%;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 25px rgba(139, 92, 246, 0.35);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-multi);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.cta-btn.glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { 
        box-shadow: 0 4px 25px rgba(139, 92, 246, 0.35);
    }
    50% { 
        box-shadow: 0 4px 50px rgba(139, 92, 246, 0.6), 
                    0 0 80px rgba(236, 72, 153, 0.3);
    }
}

.cta-btn.large {
    padding: 24px 55px;
    font-size: 1.2rem;
}

.cta-btn.xlarge {
    padding: 28px 65px;
    font-size: 1.35rem;
}

.cta-btn.pulse-highlight {
    animation: pulseHighlight 0.8s ease-out;
}

@keyframes pulseHighlight {
    0% { transform: scale(1); }
    30% { transform: scale(1.08); box-shadow: var(--glow-multi); }
    60% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* ==========================================
   HOOK SECTION
   ========================================== */
.hook-section {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.warning-badge {
    margin-bottom: 25px;
}

.warning-icon {
    font-size: 4.5rem;
    display: inline-block;
    animation: shake 4s ease-in-out infinite;
}

@keyframes shake {
    0%, 85%, 100% { transform: rotate(0deg); }
    88%, 94% { transform: rotate(-12deg); }
    91%, 97% { transform: rotate(12deg); }
}

.hook-text {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--text-secondary);
}

.hook-text.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

.pattern-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 50px 0;
}

.pattern-item {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent-red);
    opacity: 0;
    transform: translateX(-40px);
}

[dir="rtl"] .pattern-item {
    transform: translateX(40px);
}

.hook-cta {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 50px;
}

/* ==========================================
   MAGNETIC CARDS
   ========================================== */
.magnetic-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* ==========================================
   EMPATHY SECTION
   ========================================== */
.empathy-section {
    background: var(--bg-dark);
}

.empathy-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-lg);
    padding: 55px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.empathy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cool);
}

.empathy-card h3 {
    font-size: 1.9rem;
    margin-bottom: 25px;
}

.empathy-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.empathy-highlight {
    color: var(--accent-orange) !important;
    font-weight: 600;
}

/* ==========================================
   TRUTH SECTION
   ========================================== */
.truth-section {
    text-align: center;
}

.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.truth-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 45px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

[dir="rtl"] .truth-card {
    text-align: right;
}

.truth-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
}

.truth-card.not-for {
    border-top: 4px solid var(--accent-red);
}

.truth-card.for-you {
    border-top: 4px solid var(--accent-green);
}

.truth-card h4 {
    font-size: 1.35rem;
    margin-bottom: 25px;
}

.truth-card ul {
    list-style: none;
}

.truth-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.truth-card .icon {
    font-size: 1.25rem;
}

.verdict {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-red);
}

.verdict.positive {
    color: var(--accent-green);
}

/* ==========================================
   CONTENT WITH IMAGE
   ========================================== */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

[dir="rtl"] .content-with-image.reverse > * {
    direction: rtl;
}

.image-placeholder {
    position: relative;
}

.placeholder-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 25, 40, 1) 100%);
    border-radius: var(--radius-lg);
    padding: 90px 45px;
    text-align: center;
    border: 2px dashed rgba(139, 92, 246, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    transition: var(--transition-normal);
}

.placeholder-box:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.placeholder-box.large {
    min-height: 400px;
}

.placeholder-box svg {
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 15px;
}

.placeholder-box span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
}

.placeholder-box small {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 0.9rem;
    max-width: 280px;
}

.text-content {
    text-align: left;
}

[dir="rtl"] .text-content {
    text-align: right;
}

.text-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.highlight-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-top: 35px;
    border-left: 4px solid var(--accent-purple);
}

[dir="rtl"] .highlight-box {
    border-left: none;
    border-right: 4px solid var(--accent-purple);
}

.highlight-box p {
    margin-bottom: 12px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 800;
}

/* ==========================================
   HARSH TRUTH SECTION
   ========================================== */
.harsh-section {
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 20, 30, 1) 0%, var(--bg-dark) 100%);
}

.harsh-content {
    max-width: 750px;
    margin: 0 auto 60px;
}

.harsh-content > p:first-child {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.harsh-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.harsh-item {
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.harsh-item.crossed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 4px;
    background: var(--accent-red);
    transform: rotate(-5deg);
    box-shadow: 0 0 10px var(--accent-red);
}

.harsh-reveal {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.harsh-reveal strong {
    color: var(--accent-green);
}

.difference-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 55px;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.difference-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.diff-highlight {
    font-size: 1.5rem !important;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 35px !important;
}

/* ==========================================
   WHAT IS SECTION
   ========================================== */
.whatis-section {
    background: var(--bg-dark);
}

.whatis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.whatis-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.whatis-card.not {
    border-top: 4px solid var(--accent-red);
}

.whatis-card.is {
    border-top: 4px solid var(--accent-green);
}

.whatis-card h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.whatis-card ul {
    list-style: none;
}

.whatis-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.used-by {
    text-align: center;
    margin-top: 70px;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.used-by > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.used-by-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.used-by-list span {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-radius: var(--radius-xl);
    color: var(--accent-purple-light);
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ==========================================
   SOCIAL PROOF SECTION - Enhanced Cards
   ========================================== */
.proof-section {
    text-align: center;
}

.proof-answer {
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-bottom: 50px;
    font-weight: 600;
}

/* Social Proof Cards */
.social-proof-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.proof-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.proof-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.proof-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

.proof-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

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

.proof-card-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.proof-card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--accent-purple);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
    transition: var(--transition-slow);
}

.proof-card:hover .proof-card-glow {
    opacity: 0.2;
    transform: translateX(-50%) scale(1.5);
}

.proof-content {
    max-width: 750px;
    margin: 0 auto 60px;
}

.proof-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.proof-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.proof-item {
    padding: 14px 28px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-normal);
}

.proof-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.proof-warning {
    color: var(--accent-orange) !important;
    font-weight: 700;
    font-size: 1.25rem !important;
}

.reality-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 55px;
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[dir="rtl"] .reality-box {
    text-align: right;
}

.reality-box h4 {
    font-size: 1.35rem;
    margin-bottom: 25px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reality-box p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.reality-box ul {
    list-style: none;
    margin: 25px 0;
}

.reality-box li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

[dir="rtl"] .reality-box li {
    padding-left: 0;
    padding-right: 28px;
}

.reality-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

[dir="rtl"] .reality-box li::before {
    left: auto;
    right: 0;
    content: '←';
}

.reality-simple {
    font-weight: 700;
    color: var(--text-primary) !important;
    font-size: 1.2rem !important;
}

.reality-highlight {
    color: var(--accent-green) !important;
    font-weight: 800;
    font-size: 1.3rem !important;
}

/* ==========================================
   GET SECTION (Benefits)
   ========================================== */
.get-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 30, 1) 100%);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.benefit-item:hover {
    transform: translateX(12px);
    border-color: rgba(139, 92, 246, 0.3);
    background: var(--bg-card-hover);
}

[dir="rtl"] .benefit-item:hover {
    transform: translateX(-12px);
}

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

.get-note {
    text-align: center;
    margin-top: 60px;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    text-align: center;
}

.why-main {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.why-highlight {
    font-size: 2.2rem !important;
    font-weight: 900;
    margin-bottom: 60px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 650px;
    margin: 0 auto 60px;
}

.why-item {
    padding: 24px 35px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    border-left: 4px solid var(--accent-purple);
    text-align: left;
    transition: var(--transition-normal);
}

[dir="rtl"] .why-item {
    border-left: none;
    border-right: 4px solid var(--accent-purple);
    text-align: right;
}

.why-item:hover {
    transform: translateX(8px);
    background: var(--bg-card-hover);
}

[dir="rtl"] .why-item:hover {
    transform: translateX(-8px);
}

.why-difference {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 750px;
    margin: 0 auto 60px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.why-difference p {
    font-size: 1.3rem;
}

.why-difference strong {
    color: var(--accent-green);
}

.why-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.why-example {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[dir="rtl"] .why-example {
    text-align: right;
}

.why-example:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.2);
}

.example-icon {
    font-size: 2.2rem;
}

.why-note {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================
   PRICE SECTION
   ========================================== */
.price-section {
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 20, 30, 1) 0%, var(--bg-dark) 100%);
}

.price-question {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-xl);
    padding: 70px;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.price-tag {
    margin-bottom: 50px;
}

.price-tag .currency {
    font-size: 2.5rem;
    vertical-align: top;
    color: var(--text-muted);
    font-weight: 600;
}

.price-tag .amount {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-honesty {
    margin-bottom: 45px;
    text-align: left;
}

[dir="rtl"] .price-honesty {
    text-align: right;
}

.price-honesty > p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.price-honesty ul {
    list-style: none;
}

.price-honesty li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.price-truth {
    text-align: left;
    padding: 35px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 35px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

[dir="rtl"] .price-truth {
    text-align: right;
}

.price-truth > p:first-child {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price-opportunity {
    font-size: 1.5rem !important;
    font-weight: 800;
    color: var(--accent-green) !important;
    margin-bottom: 18px !important;
}

.price-truth ul {
    list-style: none;
    margin-top: 18px;
}

.price-truth li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.price-truth .icon {
    color: var(--accent-green);
}

.price-loss {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

/* ==========================================
   OBJECTION SECTION
   ========================================== */
.objection-section {
    text-align: center;
}

.objection-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 55px;
    max-width: 750px;
    margin: 0 auto 55px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.objection-quote {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.objection-reality {
    font-size: 1.25rem;
    color: var(--accent-red);
    font-weight: 700;
}

.painful-truth {
    max-width: 650px;
    margin: 0 auto 45px;
}

.painful-truth p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.painful-stat {
    color: var(--accent-orange) !important;
    font-weight: 700;
    margin-top: 35px !important;
    font-size: 1.2rem !important;
}

/* ==========================================
   HESITATION SECTION
   ========================================== */
.hesitation-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 30, 1) 100%);
}

.hesitation-prices {
    margin: 35px 0;
}

.hesitation-prices > p:first-child {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.price-example {
    padding: 18px 0;
    font-size: 1.15rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-example span:first-child {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.4rem;
    min-width: 60px;
}

.hesitation-conclusion {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 35px;
}

.hesitation-reveal {
    color: var(--text-secondary);
    margin: 12px 0;
    font-size: 1.1rem;
}

.hesitation-question {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin: 25px 0;
}

.hesitation-section .cta-btn {
    margin-top: 40px;
    margin-bottom: 50px;
}

.fear-note {
    margin-top: 55px;
    padding: 35px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.fear-note p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.fear-note p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   WHAT IF SECTION
   ========================================== */
.whatif-section {
    text-align: center;
}

.timeline {
    max-width: 650px;
    margin: 60px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-red) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 35px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 35px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.timeline-item:hover {
    transform: scale(1.02);
}

.timeline-item.warning {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.timeline-marker {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.timeline-item.warning .timeline-marker {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.whatif-conclusion {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */
.guarantee-section {
    background: linear-gradient(180deg, rgba(20, 20, 30, 1) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.guarantee-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-xl);
    padding: 70px;
    max-width: 750px;
    margin: 0 auto;
    border: 2px solid var(--accent-green);
    position: relative;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.15);
}

.guarantee-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 12px 35px;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.guarantee-card > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.guarantee-terms {
    margin-top: 35px;
    padding: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-terms p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    text-align: center;
}

.faq-list {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: left;
}

[dir="rtl"] .faq-list {
    text-align: right;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition-normal);
}

[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-question:hover {
    color: var(--accent-purple-light);
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--accent-purple);
    transition: var(--transition-normal);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 35px 28px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding-bottom: 100px;
}

.final-message {
    max-width: 750px;
    margin: 0 auto 60px;
}

.final-message p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.final-highlight {
    color: var(--accent-green) !important;
    font-weight: 800;
    font-size: 1.5rem !important;
}

.final-question {
    max-width: 650px;
    margin: 0 auto 60px;
}

.final-question h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.final-question p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.final-cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 31, 1) 100%);
    border-radius: var(--radius-xl);
    padding: 70px;
    max-width: 750px;
    margin: 0 auto 70px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaGlow 3s ease-in-out infinite;
}

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

.final-alt {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.sincere-summary {
    max-width: 650px;
    margin: 0 auto 60px;
    padding: 45px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sincere-summary h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sincere-summary p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.closing-message {
    max-width: 650px;
    margin: 0 auto 60px;
}

.closing-message p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.closing-highlight {
    color: var(--accent-purple-light) !important;
    font-weight: 800;
}

.final-filter {
    max-width: 650px;
    margin: 0 auto 60px;
}

.final-filter p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.filter-highlight {
    color: var(--accent-green) !important;
    font-weight: 800;
    font-size: 1.25rem;
}

.very-last {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.very-last h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.very-last p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.last-insight {
    color: var(--accent-orange) !important;
    font-weight: 700;
    margin: 35px 0 !important;
    font-size: 1.2rem !important;
}

.very-last .cta-btn {
    margin: 35px 0;
}

.last-feeling {
    font-style: italic;
    color: var(--text-muted) !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-purple-light);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-with-image.reverse {
        direction: ltr;
    }
    
    [dir="rtl"] .content-with-image.reverse {
        direction: rtl;
    }
    
    .whatis-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .lang-switcher {
        top: 12px;
        right: 12px;
        padding: 4px;
    }
    
    [dir="rtl"] .lang-switcher {
        right: auto;
        left: 12px;
    }
    
    .lang-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .sticky-cta {
        padding: 10px 20px;
        gap: 12px;
    }
    
    .sticky-cta span {
        display: none;
    }
    
    .hero-stats {
        gap: 35px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .truth-grid {
        grid-template-columns: 1fr;
    }
    
    .harsh-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .price-card {
        padding: 45px 30px;
    }
    
    .price-tag .amount {
        font-size: 4.5rem;
    }
    
    .guarantee-card {
        padding: 55px 30px;
    }
    
    .final-cta-box {
        padding: 45px 30px;
    }
    
    .cta-btn {
        padding: 18px 35px;
        font-size: 1.05rem;
    }
    
    .cta-btn.large {
        padding: 20px 40px;
    }
    
    .cta-btn.xlarge {
        padding: 22px 45px;
        font-size: 1.15rem;
    }
    
    .floating-icons {
        display: none;
    }
    
    .social-proof-cards {
        grid-template-columns: 1fr;
    }
    
    .why-examples {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .empathy-card {
        padding: 35px 25px;
    }
    
    .truth-card {
        padding: 35px 25px;
    }
    
    .placeholder-box {
        padding: 55px 25px;
        min-height: 220px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .faq-question {
        padding: 22px;
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        padding: 0 22px 22px;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .floating-icons,
    .gradient-bg {
        display: none;
    }
    
    .cta-btn.glow {
        animation: none;
    }
}

/* ==========================================
   ANIMATION UTILITY CLASSES
   ========================================== */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.split-text.animated .char {
    opacity: 1;
    transform: translateY(0);
}

.image-placeholder {
  width: 100%;
  max-width: 480px;   /* نفس حجم الكارد تقريبًا */
  height: 360px;      /* مهم جدًا */
  overflow: hidden;
  border-radius: 16px;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}