/* ============================================
   QUICK STEP - WORLD-CLASS PREMIUM DESIGN
   Inspired by Apple, Stripe, Linear, Vercel
   ============================================ */

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

/* ============================================
   DESIGN SYSTEM - ULTRA PREMIUM DARK MODE
   Inspired by Modern Agency Design
   ============================================ */
:root {
    /* Ultra Dark Palette - Deep Blacks */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #121212;
    --bg-elevated: #181818;

    /* Surface Colors - Glass Effect */
    --surface-1: rgba(40, 40, 40, 0.4);
    --surface-2: rgba(50, 50, 50, 0.5);
    --surface-3: rgba(60, 60, 60, 0.6);
    --surface-hover: rgba(80, 80, 80, 0.5);

    /* Brand Colors - Warm Coral & Teal */
    --accent-primary: #FF9779;
    --accent-primary-light: #FFB59E;
    --accent-primary-dark: #FF7A55;
    --accent-secondary: #14B8A6;
    --accent-secondary-light: #2DD4BF;
    --accent-secondary-dark: #0D9488;
    --accent-red: #ea4c5a;

    /* Gradient System - Premium */
    --gradient-brand: linear-gradient(135deg, #FF9779 0%, #14B8A6 100%);
    --gradient-coral: linear-gradient(135deg, #FF9779 0%, #FF7A55 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255, 151, 121, 0.12) 0%, transparent 50%);
    --gradient-radial: radial-gradient(ellipse at top, rgba(255, 151, 121, 0.12) 0%, transparent 50%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(255, 151, 121, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(20, 184, 166, 0.06) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(255, 151, 121, 0.04) 0px, transparent 50%);

    /* Border Colors - Subtle */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-default: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);

    /* Typography Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --text-dimmed: #606060;

    /* Shadows - Deeper */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 32px 96px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 80px rgba(255, 151, 121, 0.25);
    --shadow-glow-teal: 0 0 80px rgba(20, 184, 166, 0.2);

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1280px;

    /* Animation - Smooth */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-smooth: 0.35s var(--ease-out-expo);
    --transition-slow: 0.5s var(--ease-out-expo);

    /* Border Radius - Larger for Premium Feel */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-pill: 100px;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE - PREMIUM
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body.glass-theme {
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-primary);
    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

body.rtl {
    direction: rtl;
    text-align: right;
}

.text-en {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    direction: ltr;
    letter-spacing: -0.02em;
}

/* Selection - Premium */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* Smooth Focus States */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

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

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

/* ============================================
   ULTRA PREMIUM AMBIENT BACKGROUND
   ============================================ */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #050505;
}

/* Subtle Mesh Gradient Overlay */
.ambient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.8;
}

/* Subtle Noise Texture */
.ambient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.25;
    will-change: transform;
}

.ambient-orb-1 {
    width: 700px;
    height: 700px;
    background: var(--accent-primary);
    top: -350px;
    right: -150px;
    animation: orbFloat1 35s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -250px;
    left: -150px;
    animation: orbFloat2 40s ease-in-out infinite;
}

.ambient-orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-primary-light);
    top: 40%;
    left: 60%;
    animation: orbFloat3 30s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-80px, 60px) scale(1.1); opacity: 0.5; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(60px, -50px) scale(1.15); opacity: 0.4; }
}

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

/* ============================================
   ELEGANT BACKGROUND PATTERN - Minimal & Professional
   ============================================ */
.animated-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle Gradient Shift - Very Elegant */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 151, 121, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

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

/* Hide all game-like elements */
.particle,
.glow-line,
.pulse-circle {
    display: none;
}

/* ============================================
   FLOATING NAVIGATION - PILL SHAPED PREMIUM
   ============================================ */
.floating-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.floating-nav:hover {
    background: rgba(50, 50, 50, 0.6);
    border-color: var(--border-default);
    box-shadow: var(--shadow-xl);
}

.floating-nav .logo {
    display: flex;
    align-items: center;
}

.floating-nav .logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition-fast);
    filter: brightness(0) invert(1);
}

.floating-nav .logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.floating-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.floating-nav .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.floating-nav .nav-links a:hover {
    color: var(--text-primary);
    background: var(--surface-hover);
}

.floating-nav .nav-links a.active {
    color: var(--accent-primary);
    background: rgba(255, 151, 121, 0.1);
}

.floating-nav .nav-contact-btn {
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
}

.floating-nav .nav-contact-btn:hover {
    background: var(--accent-primary);
    color: white !important;
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

/* Mobile Nav Toggle */
.floating-nav .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.floating-nav .nav-toggle:hover {
    background: var(--surface-hover);
}

.floating-nav .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   AGENCY HERO - PREMIUM SPLIT LAYOUT
   ============================================ */
.agency-hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg-primary);
    padding: 120px 48px 80px;
    z-index: 1;
}

.agency-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Agency Hero Content */
.agency-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Agency Badge */
.agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 151, 121, 0.15);
    border: 1px solid rgba(255, 151, 121, 0.3);
    border-radius: var(--radius-pill);
    width: fit-content;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agency-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 151, 121, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255, 151, 121, 0); }
}

/* Agency Title */
.agency-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 0.95;
}

.agency-title-ar {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.agency-title-en {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.agency-title-muted {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: -0.03em;
}

/* Agency Description */
.agency-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 50ch;
}

.agency-desc-en {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 50ch;
}

/* Agency CTA Buttons */
.agency-cta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.agency-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    border: none;
    cursor: pointer;
}

.agency-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.agency-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.agency-btn-primary:hover svg {
    transform: translateX(-4px);
}

.agency-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
}

.agency-btn-ghost:hover {
    background: var(--surface-1);
    border-color: var(--text-muted);
    transform: translateY(-4px);
}

/* Agency Status */
.agency-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.agency-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

/* Agency Visual */
.agency-hero-visual {
    position: relative;
    height: 75vh;
    max-height: 700px;
}

.agency-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    box-shadow: var(--shadow-xl);
}

.agency-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.agency-visual-wrapper:hover .agency-hero-img {
    opacity: 1;
    transform: scale(1.03);
}

/* Live Badge */
.agency-live-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 151, 121, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 151, 121, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.agency-live-badge .live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Info Overlay */
.agency-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 32px 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 5;
}

.agency-info-stats {
    display: flex;
    gap: 48px;
}

.agency-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agency-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.agency-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

/* Agency Hero Responsive */
@media (max-width: 1024px) {
    .agency-hero {
        padding: 120px 24px 80px;
    }

    .agency-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .agency-hero-content {
        text-align: center;
        align-items: center;
    }

    .agency-hero-visual {
        height: 50vh;
        max-height: 450px;
    }

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

    .agency-status {
        justify-content: center;
    }

    .agency-info-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .agency-hero {
        padding: 140px 16px 60px;
    }

    .agency-title-ar {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .agency-title-en,
    .agency-title-muted {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .agency-desc {
        font-size: 1.1rem;
    }

    .agency-cta {
        flex-direction: column;
        width: 100%;
    }

    .agency-btn-primary,
    .agency-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .agency-hero-visual {
        height: 45vh;
    }

    .agency-info-stats {
        gap: 24px;
    }

    .agency-stat-num {
        font-size: 1.5rem;
    }

    .agency-live-badge {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
}

/* ============================================
   HERO SECTION - PREMIUM DARK (Legacy)
   ============================================ */
.glass-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 24px 100px;
    z-index: 1;
    overflow: hidden;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(2px) brightness(0.4) saturate(1.2);
    transition: filter 1s ease;
}

/* Video Overlay - Ultra Dark Gradient */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 151, 121, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.75) 0%,
            rgba(5, 5, 5, 0.55) 40%,
            rgba(5, 5, 5, 0.65) 70%,
            rgba(5, 5, 5, 0.98) 100%
        );
    z-index: 1;
}

/* Subtle Radial Glow */
.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 151, 121, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Subtle Noise Texture */
.hero-video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Hero Grid Background */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    will-change: transform, opacity;
}

.hero-glow-1 {
    width: 900px;
    height: 900px;
    top: -30%;
    left: -15%;
    background: var(--accent-primary);
    opacity: 0.25;
    animation: heroGlow1 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    bottom: -20%;
    right: -10%;
    background: var(--accent-secondary);
    opacity: 0.2;
    animation: heroGlow2 15s ease-in-out infinite;
}

@keyframes heroGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(50px, 30px) scale(1.15); opacity: 0.35; }
}

@keyframes heroGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(-40px, -40px) scale(1.1); opacity: 0.3; }
}

/* Floating Particles - Premium */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.particle:nth-child(1) { left: 5%; animation-delay: 0s; background: var(--accent-primary); }
.particle:nth-child(2) { left: 15%; animation-delay: -4s; background: var(--accent-secondary); }
.particle:nth-child(3) { left: 25%; animation-delay: -8s; }
.particle:nth-child(4) { left: 35%; animation-delay: -12s; background: var(--accent-secondary-light); }
.particle:nth-child(5) { left: 45%; animation-delay: -16s; }
.particle:nth-child(6) { left: 55%; animation-delay: -20s; background: var(--accent-primary); }
.particle:nth-child(7) { left: 65%; animation-delay: -3s; background: var(--accent-secondary); }
.particle:nth-child(8) { left: 75%; animation-delay: -7s; }
.particle:nth-child(9) { left: 85%; animation-delay: -11s; background: var(--accent-primary-light); }
.particle:nth-child(10) { left: 95%; animation-delay: -15s; background: var(--accent-secondary); }

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    5% { opacity: 0.5; }
    95% { opacity: 0.5; }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 24px;
}

.hero-main-text {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Premium Badge - Ultra Dark Mode */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    margin-bottom: 36px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    animation: fadeInDown 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent-primary);
}

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

/* Hero Title - Massive & Premium */
.hero-title-glass {
    font-size: clamp(3.5rem, 15vw, 11rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    position: relative;
    animation: titleReveal 1s var(--ease-out-expo) forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title-glass span {
    display: block;
}

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

.hero-title-glass .title-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.35em;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 20px;
}

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

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

/* Hero Subtitle */
.hero-subtitle-glass {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats Row - Premium */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--border-default);
}

.hero-stat:first-child::after {
    display: none;
}

.hero-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

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

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(255, 151, 121, 0.3);
}

.hero-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
    stroke: currentColor;
}

.hero-btn-primary:hover svg {
    transform: translateX(-3px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-default);
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                border-color 0.35s var(--ease-out-expo);
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: rgba(60, 60, 60, 0.5);
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dimmed);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid var(--border-default);
    border-radius: 12px;
    position: relative;
    background: transparent;
}

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

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* ============================================
   PROFESSIONAL HERO ANIMATIONS
   ============================================ */

/* Float In Animation */
.animate-float-in {
    opacity: 0;
    transform: translateY(-30px);
    animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Reveal Animation */
.animate-text-reveal {
    opacity: 0;
    transform: translateY(100px) skewY(5deg);
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) skewY(5deg);
        filter: blur(10px);
    }
    60% {
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0);
        filter: blur(0px);
    }
}

/* Fade Up Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger In for Stats */
.animate-stagger-in .hero-stat {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: staggerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes staggerIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scale In Animation */
.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.magnetic-btn:hover {
    transform: scale(1.02);
}

/* Glow Pulse on Primary Button */
.hero-btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hero-btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Shine Effect on Button */
.hero-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

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

/* Hero Title Gradient Animation */
.hero-title-glass .title-main {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

/* Floating Animation for Badge */
.hero-badge {
    animation: floatBadge 6s ease-in-out infinite;
}

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

/* Enhanced Badge Dot */
.hero-badge-dot {
    position: relative;
}

.hero-badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: dotPing 2s ease-in-out infinite;
}

@keyframes dotPing {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Parallax Effect on Scroll */
.glass-hero .hero-content {
    will-change: transform;
}

/* CTA Group Hover Effects */
.hero-cta-group a {
    position: relative;
    overflow: hidden;
}

.hero-cta-group a span {
    position: relative;
    z-index: 1;
}

/* Video Responsive - Premium Dark */
@media (max-width: 768px) {
    .hero-video {
        filter: blur(3px) brightness(0.35) saturate(1.1);
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    .scroll-wheel {
        width: 2px;
        height: 6px;
    }
}

/* ============================================
   BENTO GRID - COMPANIES SHOWCASE
   ============================================ */
.bento-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 24px;
}

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

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.bento-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

/* Bento Card Base - Ultra Premium Dark */
.bento-card {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                border-color 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.bento-card:hover {
    background: rgba(50, 50, 50, 0.5);
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.bento-card:hover::before {
    opacity: 0.6;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 420px;
}

.bento-medium {
    grid-column: span 4;
    min-height: 240px;
}

.bento-wide {
    grid-column: span 6;
    min-height: 280px;
}

.bento-tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 420px;
}

/* Featured Company Card (Large) - No Image */
.bento-featured-no-img {
    position: relative;
    justify-content: space-between;
    padding: 36px;
}

.bento-featured-no-img .company-card-header {
    margin-bottom: 0;
}

.bento-featured-no-img .company-card-body {
    margin-top: auto;
    padding-top: 48px;
}

.bento-featured-no-img .company-icon-wrapper {
    width: 72px;
    height: 72px;
}

.bento-featured-no-img .company-icon-bg {
    border-radius: var(--radius-lg);
}

.bento-featured-no-img .company-icon {
    width: 36px;
    height: 36px;
}

.bento-featured-no-img .company-name-en {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.bento-featured-no-img .company-desc {
    font-size: 0.95rem;
    max-width: 450px;
}

/* Company Card Content */
.company-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: auto;
}

.company-logo-wrap {
    width: 56px;
    height: 56px;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-logo-wrap img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.company-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-dimmed);
    background: var(--surface-2);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    font-weight: 500;
}

.company-card-body {
    margin-top: auto;
}

.company-tag {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--card-accent, var(--accent-primary));
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(255, 151, 121, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid var(--card-accent, rgba(255, 151, 121, 0.2));
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.company-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: tagShine 5s ease-in-out infinite;
}

@keyframes tagShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.company-name-en {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.company-name-ar {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.company-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.company-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dimmed);
    transition: var(--transition-fast);
    font-weight: 500;
}

.company-cta svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.bento-card:hover .company-cta {
    color: var(--accent-primary);
}

.bento-card:hover .company-cta svg {
    transform: translateX(-3px);
}

/* ============================================
   ENHANCED BENTO CARDS - PREMIUM DARK
   ============================================ */

/* Accent Colors with Full Palettes */
.bento-card[data-accent="purple"] {
    --card-accent: #FF9779;
    --card-accent-light: #FFB59E;
    --card-accent-dark: #FF7A55;
    --card-glow: rgba(255, 151, 121, 0.15);
}
.bento-card[data-accent="lime"] {
    --card-accent: #84CC16;
    --card-accent-light: #A3E635;
    --card-accent-dark: #65A30D;
    --card-glow: rgba(132, 204, 22, 0.15);
}
.bento-card[data-accent="teal"] {
    --card-accent: #14B8A6;
    --card-accent-light: #2DD4BF;
    --card-accent-dark: #0D9488;
    --card-glow: rgba(20, 184, 166, 0.15);
}
.bento-card[data-accent="blue"] {
    --card-accent: #38BDF8;
    --card-accent-light: #7DD3FC;
    --card-accent-dark: #0EA5E9;
    --card-glow: rgba(56, 189, 248, 0.15);
}
.bento-card[data-accent="dark"] {
    --card-accent: #A1A1AA;
    --card-accent-light: #D4D4D8;
    --card-accent-dark: #71717A;
    --card-glow: rgba(161, 161, 170, 0.1);
}

/* Animated Gradient Background - Ultra Premium Dark */
.bento-card[data-accent] {
    background:
        radial-gradient(ellipse at 0% 0%, var(--card-glow) 0%, transparent 50%),
        rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

/* Floating Orb Animation Inside Cards */
.bento-card .card-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    transition: var(--transition-slow);
}

.bento-card .card-orb-1 {
    width: 180px;
    height: 180px;
    background: var(--card-accent);
    top: -60px;
    right: -40px;
    animation: cardOrbFloat 10s ease-in-out infinite;
}

.bento-card .card-orb-2 {
    width: 120px;
    height: 120px;
    background: var(--accent-secondary);
    bottom: -40px;
    left: -30px;
    animation: cardOrbFloat 12s ease-in-out infinite reverse;
    opacity: 0.25;
}

@keyframes cardOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(15px, -15px) scale(1.1); opacity: 0.5; }
}

/* Animated Border Gradient */
.bento-card[data-accent]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(
        135deg,
        var(--card-accent) 0%,
        transparent 40%,
        transparent 60%,
        var(--accent-secondary) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.bento-card[data-accent]:hover::before {
    opacity: 0.6;
}

/* Bottom Accent Line */
.bento-card[data-accent]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--card-accent), transparent);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 1px;
}

.bento-card[data-accent]:hover::after {
    opacity: 0.5;
}

/* Enhanced Hover State - Ultra Premium Dark */
.bento-card[data-accent]:hover {
    background:
        radial-gradient(ellipse at 0% 0%, var(--card-glow) 0%, transparent 50%),
        rgba(50, 50, 50, 0.5);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.bento-card[data-accent]:hover .card-orb-1 {
    opacity: 0.5;
    transform: translate(10px, -10px) scale(1.15);
}

/* Company Icon Container - Animated */
.company-icon-wrapper {
    width: 56px;
    height: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card-accent) 0%, var(--card-accent-dark) 100%);
    border-radius: var(--radius-md);
}

.company-icon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.4;
}

.company-icon {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    color: white;
}

.company-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
}

/* Featured Card - No Image Version - Ultra Premium Dark */
.bento-featured-no-img {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255, 151, 121, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bento-featured-no-img .featured-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.bento-featured-no-img .featured-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
    height: 1px;
    width: 50%;
    opacity: 0.2;
}

.bento-featured-no-img .featured-line-1 {
    top: 25%;
    left: 10%;
    animation: lineSlide 12s linear infinite;
}

.bento-featured-no-img .featured-line-2 {
    top: 55%;
    right: 10%;
    left: auto;
    animation: lineSlide 15s linear infinite reverse;
}

.bento-featured-no-img .featured-line-3 {
    bottom: 25%;
    left: 20%;
    animation: lineSlide 18s linear infinite;
}

@keyframes lineSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateX(200%); opacity: 0; }
}

/* Floating Shapes Decoration */
.card-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.card-shape {
    position: absolute;
    border: 1px solid var(--card-accent);
    opacity: 0.15;
    transition: var(--transition-slow);
}

.card-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation: shapeFloat 15s ease-in-out infinite;
}

.card-shape-2 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transform: rotate(45deg);
    bottom: 20%;
    left: 15%;
    animation: shapeFloat 12s ease-in-out infinite reverse;
}

.card-shape-3 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    top: 40%;
    left: 8%;
    animation: shapeFloat 10s ease-in-out infinite 2s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    25% { transform: translate(10px, -15px) rotate(5deg); opacity: 0.2; }
    50% { transform: translate(5px, 10px) rotate(-3deg); opacity: 0.15; }
    75% { transform: translate(-8px, 5px) rotate(8deg); opacity: 0.2; }
}

.bento-card:hover .card-shape {
    opacity: 0.3;
    border-color: var(--card-accent-light);
}


/* View All Card Special Styling - Ultra Premium Dark */
.bento-card-cta {
    background:
        radial-gradient(ellipse at center, rgba(255, 151, 121, 0.08) 0%, transparent 60%),
        rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-card-cta .cta-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(50, 50, 50, 0.5);
    border: 1px solid var(--border-default);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                border-color 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
}

.bento-card-cta .cta-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-primary);
    stroke-width: 2;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.bento-card-cta:hover .cta-icon-wrap {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.bento-card-cta:hover .cta-icon-wrap svg {
    stroke: white;
    transform: translateX(3px);
}

/* Number Badge Enhanced */
.company-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-dimmed);
    background: var(--surface-2);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    font-weight: 500;
}

.bento-card:hover .company-number {
    background: var(--card-accent, var(--surface-3));
    color: white;
    border-color: var(--card-accent, var(--border-default));
}

/* ============================================
   3D PARALLAX IMAGE SHOWCASE - PREMIUM DARK
   ============================================ */
.showcase-section {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    background: #050505;
}

.showcase-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    height: 85vh;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Background glow effect */
.showcase-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255, 151, 121, 0.2) 0%, rgba(20, 184, 166, 0.1) 40%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

/* Floating 3D Cards */
.showcase-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    will-change: transform;
    backface-visibility: hidden;
    border: 1px solid var(--border-subtle);
}

/* Shine effect on hover */
.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    z-index: 2;
    pointer-events: none;
    transition: left 0.6s ease;
}

.showcase-card:hover::before {
    left: 100%;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(1) contrast(1.05);
}

.showcase-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.showcase-card:hover {
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px var(--accent-primary),
        var(--shadow-glow);
    z-index: 10;
}

/* Brand accent glow on main card */
.showcase-card-1::before {
    background: linear-gradient(
        135deg,
        rgba(255, 151, 121, 0.1) 0%,
        transparent 50%
    );
}

/* Card 1 - Large Center */
.showcase-card-1 {
    width: 60%;
    height: 75%;
    z-index: 3;
    transform: translateZ(0px) translateY(120px) scale(0.9);
    border: 1px solid var(--border-default);
}

/* Card 2 - Left Back */
.showcase-card-2 {
    width: 40%;
    height: 60%;
    left: 0%;
    top: 20%;
    z-index: 1;
    transform: translateZ(-80px) rotateY(25deg) translateX(-80px) translateY(80px);
    box-shadow: var(--shadow-lg);
}

/* Card 3 - Right Back */
.showcase-card-3 {
    width: 40%;
    height: 60%;
    right: 0%;
    bottom: 20%;
    z-index: 2;
    transform: translateZ(-60px) rotateY(-20deg) translateX(80px) translateY(60px);
    box-shadow: var(--shadow-lg);
}


/* Responsive 3D Showcase */
@media (max-width: 1024px) {
    .showcase-section {
        min-height: auto;
        padding: 60px 0;
        perspective: none;
    }

    .showcase-wrapper {
        height: auto;
        flex-direction: column;
        padding: 0 24px;
        gap: 20px;
        transform: none !important;
    }

    .showcase-card {
        position: relative;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .showcase-card-1 { order: 1; border: none; }
    .showcase-card-2 { order: 2; }
    .showcase-card-3 { order: 3; }
}

@media (max-width: 768px) {
    .showcase-card {
        border-radius: 16px;
        aspect-ratio: 16/10;
    }
}

/* ============================================
   ABOUT / VISION SECTION - PREMIUM DARK
   ============================================ */
.about-section-glass {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 24px;
}

.about-grid-glass {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-glass h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-content-glass h2 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content-glass p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content-glass .text-en {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

/* About Features */
.about-features-glass {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                border-color 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
    cursor: pointer;
}

.about-feature-item:hover {
    background: rgba(50, 50, 50, 0.5);
    border-color: var(--border-default);
    transform: translateX(-8px) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.about-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   CTA SECTION - PREMIUM DARK
   ============================================ */
.cta-section-glass {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 24px;
}

.cta-card-glass {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-card-glass h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.cta-card-glass p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 20px 44px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-btn-glass:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 16px 48px rgba(255, 151, 121, 0.35);
}

.cta-btn-glass svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
    stroke: currentColor;
}

.cta-btn-glass:hover svg {
    transform: translateX(-4px);
}

/* ============================================
   FOOTER - PREMIUM DARK
   ============================================ */
.footer-glass {
    position: relative;
    z-index: 1;
    padding: 56px 24px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-content-glass {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

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

.footer-glass a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-glass a:hover {
    color: var(--text-primary);
}

.footer-copy-glass {
    color: var(--text-dimmed);
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .bento-large { grid-column: span 12; }
    .bento-medium { grid-column: span 6; }
    .bento-wide { grid-column: span 6; }
    .bento-tall { grid-column: span 6; }
}

@media (max-width: 1024px) {
    .about-grid-glass {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 10px 16px;
        left: 16px;
        right: 16px;
        transform: none;
        justify-content: space-between;
    }

    .floating-nav .logo-img {
        height: 48px;
    }

    .floating-nav .nav-links {
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-xl);
        padding: 24px;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
    }

    .floating-nav.nav-open .nav-links,
    .floating-nav .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .floating-nav .nav-toggle {
        display: flex;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .hero-stat::after {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-medium,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        min-height: auto;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item.large {
        grid-column: span 1;
    }

    .cta-card-glass {
        padding: 60px 30px;
    }

    .footer-content-glass {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-glass {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-glass {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .bento-card {
        padding: 24px;
        border-radius: 20px;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   GLASS CARD 3D EFFECT
   ============================================ */
.glass-card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ============================================
   STATS SECTION - PREMIUM DARK
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.stat-card {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.35s var(--ease-spring),
                background 0.35s var(--ease-out-expo),
                border-color 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo);
}

.stat-card:hover {
    background: rgba(50, 50, 50, 0.5);
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

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

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   TIMELINE SECTION - PREMIUM DARK
   ============================================ */
.timeline-section-glass {
    position: relative;
    z-index: 1;
    padding: 64px 24px;
}

.timeline-grid-glass {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.timeline-grid-glass::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-default), transparent);
}

.timeline-item-glass {
    text-align: center;
}

.timeline-year-glass {
    display: inline-block;
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.timeline-year-glass:hover {
    background: rgba(50, 50, 50, 0.6);
    transform: translateY(-2px);
}

.timeline-item-glass p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-item-glass .text-en {
    font-size: 0.8rem;
    color: var(--text-dimmed);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .timeline-grid-glass {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .timeline-grid-glass::before {
        display: none;
    }
}

/* ============================================
   AGENCY-STYLE HERO - SPLIT LAYOUT
   ============================================ */
.hero-split {
    position: relative;
}

.hero-split-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 140px 48px 100px;
    gap: 64px;
    max-width: var(--container-max);
    margin: 0 auto;
    min-height: 100vh;
}

.hero-split-text {
    padding-left: 20px;
}

.hero-split-content {
    padding-left: 20px;
}

.hero-split-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-split-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-split-title .text-muted {
    color: var(--text-muted);
}

.hero-split-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 50ch;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-split-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-split-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-split-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red, #ea4c5a);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

/* Hero Visual Card */
.hero-split-visual {
    position: relative;
    height: 70vh;
    max-height: 600px;
    width: 100%;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    box-shadow: var(--shadow-lg);
}

.hero-visual-card img,
.hero-split-visual img,
.hero-split-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.hero-visual-card:hover img,
.hero-split-visual:hover img,
.hero-split-visual:hover video {
    opacity: 1;
    transform: scale(1.03);
}

/* Floating Badge inside Hero Visual */
.hero-visual-card .floating-badge {
    top: 20px;
    right: 20px;
}

/* Floating Card inside Hero Visual */
.hero-visual-card .floating-card {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 60px 24px 24px;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-card-stats {
    display: flex;
    gap: 32px;
}

.floating-card-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-card-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.floating-card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-card-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ============================================
   FLOATING BADGE - LIVE PROJECT STYLE
   ============================================ */
.floating-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 151, 121, 0.2);
    color: var(--accent-primary);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 151, 121, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.floating-badge .badge-dot,
.floating-badge .floating-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    background: var(--badge-color, var(--accent-primary));
    border-radius: 50%;
    animation: badgeDotPulse 2s ease-in-out infinite;
}

/* Floating Badge inside Cards */
.floating-badge-card {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 0.7rem;
}

@keyframes badgeDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 151, 121, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 151, 121, 0); }
}

/* Red variant */
.floating-badge.badge-red {
    background: rgba(234, 76, 90, 0.2);
    color: var(--accent-red);
    border-color: rgba(234, 76, 90, 0.3);
}

.floating-badge.badge-red .badge-dot {
    background: var(--accent-red);
}

/* Teal variant */
.floating-badge.badge-teal {
    background: rgba(20, 184, 166, 0.2);
    color: var(--accent-secondary);
    border-color: rgba(20, 184, 166, 0.3);
}

.floating-badge.badge-teal .badge-dot {
    background: var(--accent-secondary);
}

/* ============================================
   FLOATING CARD - OVERLAY INFO
   ============================================ */
.floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    padding: 80px 24px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 5;
}

.floating-card-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    overflow: hidden;
    border: 2px solid var(--border-default);
}

.floating-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card-details h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.floating-card-details h4 .verified-icon {
    color: var(--accent-primary);
    font-size: 1rem;
}

.floating-card-details span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.floating-card-tag {
    display: inline-flex;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

/* ============================================
   FAB - FLOATING ACTION BUTTON
   ============================================ */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
}

.fab-button {
    width: 64px;
    height: 64px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s var(--ease-spring),
                box-shadow 0.3s ease;
    border: none;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
                var(--shadow-glow);
}

.fab-button svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-primary);
}

/* RTL Position */
body.rtl .fab {
    right: auto;
    left: 32px;
}

/* ============================================
   SERVICE ITEMS - WITH SEPARATORS
   ============================================ */
.services-list {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.service-item {
    border-top: 1px solid var(--border-default);
    padding: 48px 0;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 40px;
    align-items: flex-start;
    transition: background 0.3s ease;
    cursor: pointer;
}

.service-item:last-child {
    border-bottom: 1px solid var(--border-default);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dimmed);
    font-variant-numeric: tabular-nums;
}

.service-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 50ch;
    line-height: 1.6;
}

.service-action {
    align-self: center;
}

.service-action-btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-default);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-dimmed);
    font-size: 1.5rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover .service-action-btn {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: rotate(45deg);
}

/* ============================================
   RESPONSIVE - SPLIT HERO & NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        padding: 140px 24px 80px;
        gap: 40px;
    }

    .hero-split-text {
        padding-left: 0;
        text-align: center;
    }

    .hero-split-text .hero-badge {
        justify-content: center;
    }

    .hero-split-text .hero-cta-group {
        justify-content: center;
    }

    .hero-split-visual {
        height: 60vh;
        max-height: 500px;
        order: -1;
    }

    .hero-split-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-split-actions {
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .service-action {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-split-container {
        padding: 120px 16px 60px;
        gap: 32px;
    }

    .hero-split-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-split-visual {
        height: 50vh;
        max-height: 400px;
    }

    .floating-card {
        padding: 60px 16px 16px;
    }

    .floating-card-stats {
        gap: 24px;
    }

    .floating-card-number {
        font-size: 1.25rem;
    }

    .floating-badge {
        top: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .fab {
        bottom: 24px;
        right: 24px;
    }

    body.rtl .fab {
        left: 24px;
    }

    .fab-button {
        width: 56px;
        height: 56px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }

    .service-num {
        font-size: 0.9rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ECOSYSTEM PAGE - PREMIUM DARK THEME
   ============================================ */

/* Ecosystem Hero Section */
.ecosystem-hero {
    position: relative;
    z-index: 1;
    padding: 160px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.ecosystem-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

/* Bento Cards - Premium Glass Style */
.bento-card {
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.bento-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
}

.bento-dots {
    display: flex;
    gap: 6px;
}

.bento-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dimmed);
}

.bento-dots span:first-child {
    background: var(--accent-red);
}

.bento-dots span:nth-child(2) {
    background: #FBBF24;
}

.bento-dots span:last-child {
    background: #34D399;
}

/* Ecosystem Title Card */
.eco-title-card {
    grid-row: span 2;
}

.eco-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(255, 151, 121, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.eco-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.eco-main-title .highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eco-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.eco-subtitle-en {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    direction: ltr;
    text-align: left;
}

/* Ecosystem Stat Card */
.eco-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.eco-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.eco-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Orbit Visual Card */
.eco-orbit-card {
    aspect-ratio: 1;
}

.eco-orbit-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-visual {
    position: relative;
    width: 120px;
    height: 120px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed var(--border-default);
    border-radius: 50%;
    animation: orbitSpin 25s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    transform: rotate(calc(var(--i) * 60deg)) translateX(60px);
    box-shadow: 0 0 10px var(--accent-primary);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.philosophy-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.philosophy-main-card {
    grid-column: span 1;
    grid-row: span 2;
}

.philosophy-main-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.philosophy-ar {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.philosophy-en-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    direction: ltr;
    text-align: left;
}

.philosophy-icon-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.connect-lines {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.connect-lines span {
    width: 40px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.philosophy-icon-inner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Companies Section */
.companies-section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

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

/* Company Detail Cards */
.company-detail-card {
    display: flex;
    flex-direction: column;
}

.company-logo-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-logo-icon.dark-bg {
    background: var(--bg-tertiary);
}

.company-logo-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.company-icon-qs {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.company-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dimmed);
    background: var(--surface-2);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.company-detail-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-detail-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.company-name-ar {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.company-type-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    background: rgba(20, 184, 166, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.company-detail-body {
    flex: 1;
    margin-top: 20px;
}

.company-arm-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.company-desc-ar {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.company-desc-en {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    margin-bottom: 20px;
}

.company-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.company-services-grid span {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--surface-2);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
}

.company-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.company-detail-cta svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.company-detail-cta:hover {
    color: var(--accent-primary-light);
}

.company-detail-cta:hover svg {
    transform: translate(4px, -4px);
}

/* Why One Section */
.why-one-section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.why-one-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
}

.why-one-main {
    grid-row: span 1;
}

.why-one-main-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.why-one-ar {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-one-en {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    direction: ltr;
    text-align: left;
}

.why-one-stat {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-one-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-dark .why-stat-num {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-accent .why-stat-num {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.why-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.why-stat-en {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dimmed);
    margin-top: 4px;
}

/* CTA Section */
.cta-section-new {
    position: relative;
    z-index: 1;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title-new {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.cta-desc-ar {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cta-desc-en {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-brand);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.cta-btn-new svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.cta-btn-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 100px rgba(255, 151, 121, 0.4);
}

.cta-btn-new:hover svg {
    transform: translate(4px, -4px);
}

/* Ecosystem Responsive */
@media (max-width: 1024px) {
    .ecosystem-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eco-title-card {
        grid-column: span 2;
        grid-row: span 1;
    }

    .philosophy-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-main-card {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .why-one-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-one-main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ecosystem-hero {
        padding: 140px 16px 60px;
    }

    .ecosystem-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .eco-title-card {
        grid-column: span 1;
    }

    .eco-stat-num {
        font-size: 4rem;
    }

    .philosophy-section,
    .companies-section,
    .why-one-section {
        padding: 60px 16px;
    }

    .philosophy-bento-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-main-card {
        grid-column: span 1;
    }

    .companies-detail-grid {
        grid-template-columns: 1fr;
    }

    .why-one-bento-grid {
        grid-template-columns: 1fr;
    }

    .why-one-main {
        grid-column: span 1;
    }

    .cta-section-new {
        padding: 80px 16px;
    }

    .cta-title-new {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .cta-btn-new {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .bento-card {
        padding: 20px;
    }
}

/* ============================================
   LOGO DIVIDER SECTION
   ============================================ */
.logo-divider-section {
    padding: 10px 24px;
    position: relative;
    z-index: 1;
}

.logo-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo-divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 151, 121, 0.3) 50%, transparent 100%);
}

.logo-divider-img {
    height: 60px;
    margin: 0 30px;
}

/* Reduce padding of section after logo divider */
.logo-divider-section + .bento-section {
    padding-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-divider-section {
        padding: 10px 16px;
    }

    .logo-divider-img {
        height: 45px;
        margin: 0 20px;
    }

    .logo-divider-line {
        max-width: 80px;
    }
}

/* ============================================
   CLIENTS SECTION - INFINITE MARQUEE
   ============================================ */
.clients-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.clients-section .section-header {
    margin-bottom: 60px;
    padding: 0 24px;
    text-align: center;
}

/* Marquee Animation - Seamless Infinite Scroll */



@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
   0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}







/* Marquee Container */
.marquee-container {
    position: relative;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    direction: ltr;
    padding: 30px 0;
    margin-bottom: 20px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.marquee-container:last-of-type {
    margin-bottom: 0;
}

/* Gradient Edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary, #0a0a0f) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-primary, #0a0a0f) 0%, transparent 100%);
}





/* Marquee Track */
.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
    animation-timing-function: linear;
    will-change: translate3d(0,0,0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.marquee-reverse .marquee-track {
    animation-name: marquee-scroll-reverse;
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}






/* Logo Styling */
.client-logo {
    height: 140px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.4s ease, transform 0.4s ease;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.client-logo:hover {
    opacity: 1;
    transform: translateZ(0) scale(1.1);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .clients-section {
        padding: 80px 0;
    }

    .marquee-container {
        padding: 25px 0;
    }

    .marquee-track {
        gap: 60px;
        animation-duration: 45s;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 100px;
    }

    .client-logo {
        height: 120px;
        max-width: 240px;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-section .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .marquee-container {
        padding: 20px 0;
        margin-bottom: 15px;
    }

    .marquee-track {
        gap: 60px;
        animation-duration: 45s;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }

    .client-logo {
        height: 90px;
        max-width: 200px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .clients-section {
        padding: 50px 0;
    }

    .clients-section .section-header {
        margin-bottom: 30px;
    }

    .marquee-container {
        padding: 15px 0;
        margin-bottom: 10px;
    }

    .marquee-track {
        gap: 40px;
        animation-duration: 30s;
    
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }

    .client-logo {
        height: 70px;
        max-width: 160px;
    }
}