@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

/* =========================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================= */

/* Dark Mode (default) */
:root {
    /* --- COLOR PALETTE --- */
    --color-bg-main: #030304;
    /* Deepest Black */
    --color-bg-surface: #0E0E10;
    /* Slightly lighter for cards */
    --color-bg-surface-2: #18181B;
    /* Highlight surface */
    --color-bg-hero: #050505;

    --color-accent: #DCFE11;
    /* High-Voltage Lime */
    --color-accent-glow: rgba(220, 254, 17, 0.4);
    --color-secondary: #ffffff;

    --color-text-main: #FFFFFF;
    --color-text-muted: #A1A1AA;
    --color-text-dark: #000000;

    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* --- PREMIUM GRADIENTS --- */
    --grad-premium: linear-gradient(135deg, #DCFE11 0%, #A8D600 100%);
    --grad-dark: linear-gradient(135deg, #18181B 0%, #0E0E10 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-arabic: 'Tajawal', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 999px;

    /* --- EFFECTS --- */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px var(--color-accent-glow);
    --blur-md: blur(12px);
    --blur-lg: blur(24px);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Mode */
[data-theme="light"] {
    --color-bg-main: #FFFFFF;
    --color-bg-surface: #F9FAFB;
    --color-bg-surface-2: #F3F4F6;
    --color-bg-hero: #FDFDFF;

    --color-accent: #89B000;
    --color-accent-glow: rgba(137, 176, 0, 0.2);
    --color-secondary: #000000;

    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-text-dark: #FFFFFF;

    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.08);

    --grad-glass: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    --header-bg: rgba(255, 255, 255, 0.9);
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-main);
    transition: background-color var(--transition-theme);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10001;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--grad-premium);
    box-shadow: 0 0 15px var(--color-accent-glow);
    transition: width 0.1s linear;
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    filter: blur(80px);
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: rgba(220, 254, 17, 0.15);
}

.blob-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -100px;
    background: rgba(139, 92, 246, 0.1);
}

.blob-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 40%;
    background: rgba(220, 254, 17, 0.08);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

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

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    filter: contrast(120%) brightness(120%);
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

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

/* RTL Centering Fixes */
[dir="rtl"] .hero-container-centered,
[dir="rtl"] .hero-content,
[dir="rtl"] .section-header {
    text-align: center;
    align-items: center;
}

/* Universal Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 140px 0;
}

.section-padding-lg {
    padding: 180px 0;
}

.section-padding-sm {
    padding: 100px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1.1;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--color-accent);
    font-weight: 700;
}

.creative-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
}

/* Add custom font for creative serif if not present */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');

/* Scroll Reveal Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-left.active {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-right.active {
    transform: translateX(0);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal-scale.active {
    transform: scale(1);
}

.hero-title-new {
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-title-main {
    display: block;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.text-muted {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 65ch;
}

/* =========================================
   4. UI COMPONENTS (Buttons, Badges)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-bounce);
    cursor: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-lime-rounded {
    background: var(--color-accent);
    color: var(--color-text-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 254, 17, 0.2);
}

.btn-lime-rounded:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-outline-rounded {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    backdrop-filter: blur(10px);
}

.btn-outline-rounded:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(220, 254, 17, 0.1);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 32px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 4, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

/* Marquee Section */
.action-marquee-section {
    background: var(--color-bg-surface);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 5;
}

.action-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.action-marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: scroll-marquee 20s linear infinite;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.marquee-logo i {
    color: var(--color-accent);
    font-size: 1rem;
}

.marquee-logo:hover {
    color: #fff;
}

[data-theme="light"] header.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

.container-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher Refined */
.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
    letter-spacing: 0.05em;
}

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

.lang-btn.active {
    background: var(--color-accent);
    color: var(--color-text-dark);
    box-shadow: 0 4px 12px rgba(220, 254, 17, 0.2);
}

[data-theme="light"] .lang-switcher {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .lang-btn.active {
    background: var(--color-accent);
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    transition: var(--transition-fast);
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg-hero);
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay),
        url('../assets/images/ChatGPT Image Jan 16, 2026, 09_31_31 PM.png') center/cover no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15vh;
    background: linear-gradient(to top, var(--color-bg-main) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
}

/* For RTL */
[dir="rtl"] .hero-container-centered {
    padding-left: 0;
    padding-right: 0;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

/* RTL Adjustment for Hero Content */
[dir="rtl"] .hero-content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

[dir="rtl"] .hero-title-new {
    font-family: var(--font-arabic);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 24px;
}

[dir="rtl"] .hero-desc-new {
    font-family: var(--font-arabic);
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-desc-new {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons-new {
    display: flex;
    gap: 16px;
    justify-content: center;
    /* kept centered relative to text block */
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-main);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--color-text-main);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* =========================================
   6. PREMIUM SECTIONS (Stats, Features, Bento)
   ========================================= */

/* Hero Floating Features */
.hero-features-floating {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding-bottom: 80px;
}

.features-card-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--color-border);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(220, 254, 17, 0.1);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--color-border);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border-hover);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1;
}

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

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--color-border);
    padding: 48px;
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.bento-col-8 {
    grid-column: span 8;
}

.bento-col-4 {
    grid-column: span 4;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.bento-icon-lg {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

/* Testimonials */
.testimonials-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial-card-premium {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-lg);
    border: 1px solid var(--color-border);
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
}

.quote-icon-bg {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.05;
    color: var(--color-accent);
}

.testimonial-quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    color: #fff;
}

.testimonial-author-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar-new {
    width: 60px;
    height: 60px;
    background: var(--grad-premium);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: var(--grad-glass);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-number {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-accent);
    margin-right: 16px;
    opacity: 0.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    color: var(--color-text-muted);
}

/* Results Highlight Section */
.results-highlight {
    background: var(--color-bg-main);
    padding: 140px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--color-border);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-bounce);
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.result-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.result-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Collaboration Section */
.collaboration-bg {
    background: linear-gradient(180deg, var(--color-bg-surface), var(--color-bg-main));
    position: relative;
    overflow: hidden;
}

.collaboration-bg::before {
    display: none;
}

.collab-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.collab-card {
    background: var(--grad-glass);
    backdrop-filter: var(--blur-lg);
    border: 1px solid var(--color-border);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-smooth);
}

.collab-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.collab-logo {
    height: 80px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-logo img {
    max-height: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.strategy-banner {
    background: var(--grad-premium);
    padding: 60px;
    border-radius: var(--radius-xl);
    margin-top: 80px;
    text-align: center;
}

.strategy-banner h3 {
    color: var(--color-text-dark);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.strategy-banner p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Elegant Components */
.elegant-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(220, 254, 17, 0.1);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.creative-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.glow-line-separator {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 24px auto;
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

/* FAQ Item Active State Extra Content fix */
.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* Footer Premium */
.main-footer {
    background: #000;
    padding-top: 120px;
    padding-bottom: 40px;
    border-top: 1px solid var(--color-border);
}

.footer-newsletter-premium {
    background: var(--grad-dark);
    border: 1px solid var(--color-border);
    padding: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 16px 24px;
    border-radius: var(--radius-full);
    color: #fff;
    width: 300px;
    margin-right: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* =========================================
   7. ANIMATIONS (Keyframes)
   ========================================= */
@keyframes fadeInChar {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

@keyframes pulse-soft {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Theme Adjustments */
[data-theme="light"] .noise-overlay {
    opacity: 0.02;
    filter: invert(1);
}

[data-theme="light"] .bg-blobs {
    opacity: 0.2;
}

[data-theme="light"] .main-footer {
    background: #f9f9f9;
}

[data-theme="light"] .footer-newsletter-premium {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stat-number {
    color: var(--color-text-main);
}

[data-theme="light"] .testimonial-quote-text {
    color: var(--color-text-main);
}

/* Floating Elements */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-bounce);
    animation: float 3s infinite ease-in-out;
    cursor: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}