/* ==========================================================================
   Arab Motion Academy - CloyAI-Inspired Liquid Glass Styles
   ========================================================================== */

/* Google Font - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors from Image */
    --primary: #0fcdf1;
    --primary-light: #0086e1;
    --primary-dark: #0086e1;

    /* Secondary Colors */
    --secondary: #0086e1;
    --secondary-light: #0086e1;
    --secondary-dark: #0086e1;

    /* Accent Colors */
    --accent: #047ac6;
    --accent-light: #0086e1;
    --accent-dark: #0086e1;

    /* Background Colors */
    --bg-dark: #222222;
    --bg-darker: #222222;
    --bg-card: rgba(255, 255, 255, 0.03);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-full: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));

    /* Glow */
    --glow-primary: 0 0 40px rgba(15, 205, 241, 0.4);
    --glow-secondary: 0 0 40px rgba(0, 134, 225, 0.4);

    /* Animation Timing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(15, 205, 241, 0.5);
}

/* ==========================================================================
   Cursor Glow Effect
   ========================================================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 205, 241, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s, transform 0.1s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ==========================================================================
   Floating Particles
   ========================================================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 25s infinite linear;
}

.particle:nth-child(2n) {
    background: var(--secondary);
    animation-duration: 30s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(3n) {
    background: var(--accent);
    animation-duration: 35s;
    width: 4px;
    height: 4px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.4;
    }

    95% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* ==========================================================================
   Text Shimmer Effect
   ========================================================================== */
.shimmer-text {
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--secondary) 25%,
            var(--accent) 50%,
            var(--secondary) 75%,
            var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ==========================================================================
   Gradient Border Animation
   ========================================================================== */
.gradient-border {
    position: relative;
    background: var(--bg-dark);
    border-radius: 24px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
            var(--primary),
            var(--secondary),
            var(--accent),
            var(--secondary),
            var(--primary));
    background-size: 300% 300%;
    border-radius: 26px;
    z-index: -1;
    animation: gradientRotate 6s ease infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.gradient-border:hover::before {
    opacity: 1;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================================================
   Glow Pulse Animation
   ========================================================================== */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(15, 205, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(15, 205, 241, 0.5), 0 0 60px rgba(0, 134, 225, 0.3);
    }
}

/* ==========================================================================
   Floating Animation
   ========================================================================== */
.float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Stagger Animation for Lists
   ========================================================================== */
.stagger-animation>* {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerIn 0.6s var(--ease-smooth) forwards;
}

.stagger-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: default;
}

/* ==========================================================================
   Background System - CloyAI Inspired
   ========================================================================== */
.liquid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Subtle Gradient Glow */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.glow-orb-1 {
    width: 800px;
    height: 800px;
    background: #7b7c80;
    top: -300px;
    right: -200px;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: #7b7c80;
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

.glow-orb-3 {
    width: 500px;
    height: 500px;
    background: #7b7c80;
    top: 40%;
    left: 30%;
    animation-delay: -15s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
        opacity: 0.4;
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.35;
    }
}

/* Grid Pattern - CloyAI Style */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 20%, transparent 70%);
}

/* Vignette Effect */
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 100%);
}

/* ==========================================================================
   Floating Pill Navbar - CloyAI Style
   ========================================================================== */
.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.floating-navbar:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.85);
}

.navbar-brand {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-divider {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

.navbar-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-label-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.countdown {
    display: flex;
    gap: 6px;
    direction: ltr;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 42px;
}

.countdown-value {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
}

.countdown-unit {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
}

/* Mobile Countdown - Shows only on mobile */
.mobile-countdown {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 24px;
    background: rgba(15, 205, 241, 0.1);
    border: 1px solid rgba(15, 205, 241, 0.2);
    border-radius: 16px;
    animation: fadeInUp 1s ease 0.1s both;
}

.mobile-countdown-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mobile-countdown-timer {
    font-family: 'Cairo', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    direction: ltr;
    letter-spacing: 2px;
}

.mobile-countdown-value {
    /* Inherits gradient from parent */
}

@media (max-width: 768px) {
    .mobile-countdown {
        display: flex;
    }
}

.navbar-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(15, 205, 241, 0.3);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(15, 205, 241, 0.5);
}

/* ==========================================================================
   Hero Section - Two Column Layout
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-content {
    text-align: right;
}

/* Hero Video Column */
.hero-video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(15, 205, 241, 0.15);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-video-title {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive - Tablet & Mobile */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-features {
        align-items: center;
    }

    .cta-group {
        justify-content: center;
    }

    .cta-wrapper {
        align-items: center;
    }

    .btn-subtext {
        text-align: center;
    }

    .hero-video {
        order: 2;
    }
}

/* Badge Container - Centered Below Navbar */
.hero-badge-container {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Badge Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 180px 20px 60px;
    }

    .hero-wrapper {
        gap: 30px;
    }

    .hero-badge-container {
        top: 90px;
        width: 90%;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    animation: fadeInDown 0.8s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.3rem, 7vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-headline .highlight {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CTA Buttons - CloyAI Style
   ========================================================================== */
.cta-group {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(15, 205, 241, 0.4);
}

.btn-primary::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.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 205, 241, 0.6);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-subtext {
    display: block;
    font-size: 0.85rem;
    margin-top: 16px;
    color: var(--text-muted);
    text-align: center;
}

/* Legacy CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(15, 205, 241, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 205, 241, 0.6);
}

/* ==========================================================================
   Glass Card Components - Enhanced
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Spotlight Effect */
.glass-card .spotlight {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 205, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    transform: translate(-50%, -50%);
}

.glass-card:hover .spotlight {
    opacity: 1;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    /* padding: 120px 20px; */
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(4, 122, 198, 0.1);
    border: 1px solid rgba(4, 122, 198, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
    padding: 100px 20px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(15, 205, 241, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    text-align: center;
}

.stats-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 40px;
}

.stats-number {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(5rem, 15vw, 5rem);
    font-weight: 800;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-label {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
    padding: 50px 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px 35px;
}

.comparison-card.before {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.before:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.1);
}

.comparison-card.after {
    border-color: rgba(34, 197, 94, 0.2);
}

.comparison-card.after:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.1);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.comparison-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.comparison-card.before .comparison-title {
    color: #EF4444;
}

.comparison-card.after .comparison-title {
    color: #22C55E;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-card.before .comparison-list li::before {
    content: '✗';
    color: #EF4444;
    font-weight: bold;
}

.comparison-card.after .comparison-list li::before {
    content: '✓';
    color: #22C55E;
    font-weight: bold;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    padding: 100px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 205, 241, 0.1);
    border: 1px solid rgba(15, 205, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--primary);
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Curriculum Accordion
   ========================================================================== */
.curriculum-section {
    padding: 100px 20px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 12px;
}

.accordion-header {
    width: 100%;
    padding: 24px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s;
    text-align: right;
}

.accordion-header:hover {
    border-color: rgba(15, 205, 241, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.module-info {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.module-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.module-topics {
    list-style: none;
}

.module-topics li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.module-topics li:last-child {
    border-bottom: none;
}

.module-topics li::before {
    content: '▸';
    color: var(--primary);
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */
.guarantee-section {
    padding: 100px 20px;
}

.guarantee-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.guarantee-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.guarantee-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #22C55E;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
}

.guarantee-list li::before {
    content: '✓';
    color: #22C55E;
    font-weight: bold;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 20px;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section {
    padding: 120px 20px;
    text-align: center;
}

.final-cta-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 50px;
}

.final-cta-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-title .highlight {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.final-cta-highlight {
    display: inline-block;
    padding: 18px 30px;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

/* ==========================================================================
   Floating Notifications
   ========================================================================== */
.notification-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 320px;
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 1.3rem;
}

.notification-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mute-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--text-primary);
}

.mute-btn:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design - Mobile First Optimization
   ========================================================================== */

/* Large Tablets */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-number {
        font-size: clamp(4rem, 12vw, 7rem);
    }
}

/* Tablets */
@media (max-width: 768px) {

    /* Hide cursor effects on touch devices */
    .cursor-glow {
        display: none !important;
    }

    /* Reduce particle count for performance */
    .particle:nth-child(n+15) {
        display: none;
    }

    /* Navbar - Mobile Optimized - Simple & Clean */
    .floating-navbar {
        width: auto;
        left: 50%;
        right: auto;
        top: 12px;
        transform: translateX(-50%);
        padding: 10px 20px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        border-radius: 50px;
        max-width: calc(100% - 24px);
    }

    .navbar-brand {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .navbar-divider {
        display: block;
        width: 1px;
        height: 16px;
        background: var(--glass-border);
    }

    /* Hide countdown in navbar on mobile - it shows in hero badge */
    .navbar-countdown {
        display: none;
    }

    .navbar-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 140px 16px 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-features li {
        font-size: 0.85rem;
    }

    /* CTA Buttons - Mobile */
    .cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
        border-radius: 12px;
    }

    .btn-subtext {
        font-size: 0.8rem;
        margin-top: 12px;
    }

    /* Sections - Mobile */
    .section {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Video Section - Mobile */
    .video-section {
        padding: 50px 16px;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    /* Stats Section - Mobile */
    .stats-section {
        padding: 50px 16px;
    }

    .stats-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .stats-number {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .stats-label {
        font-size: 1.1rem;
    }

    .stats-subtitle {
        font-size: 0.9rem;
    }

    /* Comparison - Mobile */
    .comparison-section {
        padding: 60px 16px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .comparison-icon {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .comparison-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .comparison-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    /* Benefits - Mobile */
    .benefits-section {
        padding: 60px 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-item {
        padding: 20px;
        border-radius: 14px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    /* Accordion - Mobile */
    .accordion-header {
        padding: 18px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .accordion-icon {
        font-size: 1rem;
    }

    .accordion-body {
        padding: 18px 20px;
        border-radius: 0 0 12px 12px;
    }

    .module-info {
        flex-direction: column;
        gap: 8px;
    }

    .module-stat {
        font-size: 0.85rem;
    }

    .module-topics li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    /* Guarantee - Mobile */
    .guarantee-card {
        padding: 35px 24px;
        border-radius: 18px;
    }

    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .guarantee-title {
        font-size: 1.5rem;
    }

    .guarantee-subtitle {
        font-size: 1rem;
    }

    .guarantee-list li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    /* Final CTA - Mobile */
    .final-cta-section {
        padding: 60px 16px;
    }

    .final-cta-content {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .final-cta-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .final-cta-highlight {
        font-size: 0.9rem;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    /* Notifications - Mobile */
    .notification-container {
        right: 12px;
        left: 12px;
        bottom: 16px;
    }

    .notification {
        max-width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
    }

    .notification-icon {
        font-size: 1.1rem;
    }

    .notification-text {
        font-size: 0.85rem;
    }

    .mute-btn {
        left: 12px;
        bottom: 70px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Glass Card - Mobile */
    .glass-card {
        border-radius: 18px;
    }

    .glass-card:hover {
        transform: none;
    }

    /* Disable tilt on mobile */
    .glass-card {
        transform: none !important;
    }

    /* Footer - Mobile */
    footer {
        padding: 40px 16px;
        font-size: 0.85rem;
    }

    /* Scroll Progress - Mobile */
    .scroll-progress {
        height: 2px;
    }

    /* Reduce blob sizes for mobile */
    .glow-orb-1 {
        width: 400px;
        height: 400px;
    }

    .glow-orb-2 {
        width: 300px;
        height: 300px;
    }

    .glow-orb-3 {
        width: 250px;
        height: 250px;
    }
}

/* Small Phones */
@media (max-width: 400px) {
    .floating-navbar {
        padding: 10px 12px;
    }

    .navbar-brand {
        font-size: 0.85rem;
    }

    .navbar-cta {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .countdown-item {
        padding: 4px 6px;
        min-width: 32px;
    }

    .countdown-value {
        font-size: 0.8rem;
    }

    .hero {
        padding: 130px 12px 50px;
    }

    .hero-headline {
        font-size: 1.6rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 12px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .comparison-card,
    .benefit-item,
    .guarantee-card,
    .final-cta-content,
    .stats-container {
        padding: 24px 18px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* Expired Text */
.expired-text {
    color: #EF4444;
    font-weight: bold;
}

/* ==========================================================================
   4K Screens (2560px) - Larger Content
   ========================================================================== */
@media (min-width: 2560px) {

    /* Base font size increase - 90% - smaller for 4K */
    html {
        font-size: 90%;
    }

    /* Hero Section */
    .hero {
        padding: 220px 100px 150px;
    }

    .hero-wrapper {
        max-width: 2400px;
        gap: 120px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: right;
    }

    .hero-subheadline {
        text-align: right;
    }

    .hero-headline {
        font-size: 5.5rem;
    }

    .hero-subheadline {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 1.4rem;
        padding: 18px 40px;
    }

    .hero-badge-container {
        top: 180px;
    }

    /* Navbar */
    .floating-navbar {
        padding: 20px 50px;
        gap: 40px;
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .navbar-cta {
        padding: 18px 40px;
        font-size: 1.3rem;
    }

    .countdown-item {
        padding: 14px 20px;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .countdown-unit {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 150px 100px;
    }

    .section-title {
        font-size: 4rem;
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 28px 60px;
        font-size: 1.6rem;
        border-radius: 20px;
    }

    .btn-subtext {
        font-size: 1.2rem;
    }

    /* Cards & Containers */
    .comparison-card,
    .benefit-item,
    .guarantee-card,
    .final-cta-content {
        padding: 60px;
        border-radius: 36px;
    }

    .stats-container {
        padding: 60px 80px;
        border-radius: 36px;
    }

    .stat-value {
        font-size: 4.5rem;
    }

    .stat-label {
        font-size: 1.6rem;
    }

    /* Video Showcase */
    .video-grid {
        gap: 40px;
    }

    /* Benefits */
    .benefits-grid {
        max-width: none;
        margin: 0;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .benefit-title {
        font-size: 1.8rem;
    }

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

    /* Comparison */
    .comparison-title {
        font-size: 2rem;
    }

    .comparison-list li {
        font-size: 1.4rem;
        padding: 20px 0;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 50px;
    }

    .testimonial-text {
        font-size: 1.5rem;
    }

    .testimonial-author strong {
        font-size: 1.4rem;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 3.5rem;
    }

    .final-cta-subtitle {
        font-size: 1.8rem;
    }

    /* Guarantee */
    .guarantee-title {
        font-size: 2.2rem;
    }

    .guarantee-text {
        font-size: 1.5rem;
    }

    /* Price */
    .price-current {
        font-size: 6rem;
    }

    .price-original {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-text {
        font-size: 1.3rem;
    }

    /* Hero Features */
    .hero-features li {
        font-size: 1.4rem;
    }

    /* Grid Overlay */
    .grid-overlay {
        background-size: 150px 150px;
    }

    /* Glow Orbs - Bigger for 4K */
    .glow-orb-1 {
        width: 1400px;
        height: 1400px;
    }

    .glow-orb-2 {
        width: 1100px;
        height: 1100px;
    }

    .glow-orb-3 {
        width: 900px;
        height: 900px;
    }
}

/* ==========================================================================
   Ultra 4K Screens (3840px) - Even Larger Content
   ========================================================================== */
@media (min-width: 3840px) {

    /* Base font size - 90% for full 4K */
    html {
        font-size: 90%;
    }

    /* Hero Section */
    .hero {
        padding: 300px 150px 200px;
    }

    .hero-wrapper {
        max-width: 3200px;
        gap: 180px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: right;
    }

    .hero-subheadline {
        text-align: right;
    }

    .hero-headline {
        font-size: 7rem;
    }

    .hero-subheadline {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 1.8rem;
        padding: 24px 50px;
    }

    .hero-badge-container {
        top: 220px;
    }

    /* Navbar */
    .floating-navbar {
        padding: 28px 70px;
        gap: 50px;
        top: 30px;
    }

    .navbar-brand {
        font-size: 2.2rem;
    }

    .navbar-cta {
        padding: 24px 50px;
        font-size: 1.6rem;
    }

    .countdown-item {
        padding: 18px 28px;
        min-width: 100px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-unit {
        font-size: 1.2rem;
    }

    /* Sections */
    .section {
        padding: 200px 150px;
    }

    .section-title {
        font-size: 5rem;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 2.2rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 36px 80px;
        font-size: 2rem;
        border-radius: 24px;
    }

    .btn-subtext {
        font-size: 1.5rem;
    }

    /* Cards & Containers */
    .comparison-card,
    .benefit-item,
    .guarantee-card,
    .final-cta-content {
        padding: 80px;
        border-radius: 48px;
    }

    .stats-container {
        padding: 80px 100px;
        border-radius: 48px;
    }

    .stat-value {
        font-size: 6rem;
    }

    .stat-label {
        font-size: 2rem;
    }

    /* Video Showcase */
    .video-grid {
        gap: 60px;
    }

    /* Benefits */
    .benefits-grid {
        max-width: none;
        margin: 0;
    }

    .benefit-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .benefit-title {
        font-size: 2.2rem;
    }

    .benefit-text {
        font-size: 1.8rem;
    }

    /* Comparison */
    .comparison-title {
        font-size: 2.5rem;
    }

    .comparison-list li {
        font-size: 1.8rem;
        padding: 24px 0;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 70px;
    }

    .testimonial-text {
        font-size: 1.8rem;
    }

    .testimonial-author strong {
        font-size: 1.8rem;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 4.5rem;
    }

    .final-cta-subtitle {
        font-size: 2.2rem;
    }

    /* Guarantee */
    .guarantee-title {
        font-size: 2.8rem;
    }

    .guarantee-text {
        font-size: 1.8rem;
    }

    /* Price */
    .price-current {
        font-size: 8rem;
    }

    .price-original {
        font-size: 3rem;
    }

    /* Footer */
    .footer-text {
        font-size: 1.6rem;
    }

    /* Hero Features */
    .hero-features li {
        font-size: 1.8rem;
    }

    /* Grid Overlay */
    .grid-overlay {
        background-size: 200px 200px;
    }

    /* Glow Orbs */
    .glow-orb-1 {
        width: 1800px;
        height: 1800px;
    }

    .glow-orb-2 {
        width: 1400px;
        height: 1400px;
    }

    .glow-orb-3 {
        width: 1100px;
        height: 1100px;
    }
}