      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --max-width: 1700px;
            --bg-primary: #f5f0ff;
            --bg-secondary: #ede4ff;
            --bg-glass: rgba(255, 255, 255, 0.85);
            --text-primary: #3b0764;
            --text-secondary: #6b21a8;
            --text-muted: #7e22ce;
            --accent: #a855f7;
            --accent-light: #c084fc;
            --accent-glow: rgba(168, 85, 247, 0.3);
            --border: #e9d5ff;
            --shadow: rgba(139, 92, 246, 0.12);
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --white:#e9d5ff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-light);
            border-radius: 4px;
        }

        /* ===== DECORATIVE ORBS ===== */
        .deco-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            z-index: 0;
            opacity: 0.3;
        }
        .deco-orb-1 {
            width: 500px;
            height: 500px;
            background: var(--accent-light);
            top: -10%;
            right: -5%;
            animation: floatOrb 20s ease-in-out infinite;
        }
        .deco-orb-2 {
            width: 400px;
            height: 400px;
            background: #ddd6fe;
            bottom: 10%;
            left: -8%;
            animation: floatOrb 25s ease-in-out infinite reverse;
        }
        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -40px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }

        .grain {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* ===== STICKY HEADER ===== */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(245, 240, 255, 0.8);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid rgba(233, 213, 255, 0.5);
            transition: all 0.4s var(--transition-smooth);
        }
        .sticky-header.scrolled {
            background: rgba(245, 240, 255, 0.95);
            box-shadow: 0 8px 32px var(--shadow);
        }

        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 60px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 30px;
            font-weight: 900;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 50%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), var(--text-secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            -webkit-text-fill-color: white;
        }

        .nav-desktop {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        .nav-item {
            position: relative;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: color 0.3s;
            cursor: pointer;
            padding: 8px 0;
            border: none;
            background: none;
            font-family: inherit;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
            transition: width 0.35s var(--transition-smooth);
        }
        .nav-item:hover {
            color: var(--text-primary);
        }
        .nav-item:hover::after {
            width: 100%;
        }

        .product-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .chevron {
            width: 12px;
            height: 12px;
            transition: transform 0.3s;
        }
        .product-trigger.active .chevron {
            transform: rotate(180deg);
        }

        /* ===== MEGA MENU (RADIAL) ===== */
        .mega-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(245, 240, 255, 0.98);
            backdrop-filter: blur(40px);
            z-index: 100000000;
            clip-path: circle(0% at 50% 0%);
            transition: clip-path 0.9s var(--transition-smooth);
            pointer-events: none;
            overflow: hidden;
        }
        .mega-menu.active {
            clip-path: circle(150% at 50% 0%);
            pointer-events: all;
        }

        .mega-menu-inner {
            max-width: var(--max-width);
            width: 100%;
            margin: 0 auto;
            padding: 120px 60px 60px;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 100px;
            height: 100%;
            align-items: center;
        }

        .mega-menu-left {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mega-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 40px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .mega-label::before {
            content: '';
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

        .product-link {
            position: relative;
            font-size: 38px;
            font-weight: 700;
            color: var(--text-muted);
            text-decoration: none;
            padding: 18px 0;
            transition: all 0.4s var(--transition-smooth);
            cursor: pointer;
            display: block;
            border-bottom: 1px solid var(--border);
            opacity: 0.5;
        }
        .product-link:hover,
        .product-link.active {
            color: var(--text-primary);
            opacity: 1;
            padding-left: 36px;
        }
        .product-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
            transition: width 0.4s var(--transition-smooth);
        }
        .product-link:hover::before,
        .product-link.active::before {
            width: 24px;
        }

        .mega-menu-right {
            position: relative;
            height: 75vh;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px var(--shadow), 0 0 0 1px var(--border);
        }

        .product-image-container {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: all 0.7s var(--transition-smooth);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }
        .product-image-container.active {
            opacity: 1;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        .product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.15);
            transition: transform 0.9s var(--transition-smooth);
        }
        .product-image-container.active img {
            transform: scale(1);
        }

        .glass-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(255,255,255,0.45) 0%, 
                rgba(255,255,255,0) 30%,
                rgba(168,85,247,0.08) 50%,
                rgba(255,255,255,0) 70%,
                rgba(255,255,255,0.35) 100%);
            pointer-events: none;
            mix-blend-mode: overlay;
        }
        .glass-shine {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.5) 55%, transparent 60%);
            pointer-events: none;
            animation: shineMove 4s ease-in-out infinite;
        }
        @keyframes shineMove {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .menu-close {
            position: absolute;
            top: 24px;
            right: 60px;
            width: 56px;
            height: 56px;
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            background: var(--bg-glass);
            color: var(--text-primary);
            font-size: 28px;
            font-weight: 300;
            z-index: 10000000000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .menu-close:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: rotate(90deg) scale(1.05);
        }

        /* ===== HERO SLIDER (FULL SCREEN) ===== */
        .hero-section {
            position: relative;
            width: 100vw;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
            background: #0f0518;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.1s;
        }
        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* 3D Background */
        .slide-bg-wrapper {
            position: absolute;
            inset: -80px;
            perspective: 1200px;
            transform-style: preserve-3d;
        }
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: translateZ(-500px) scale(1.6) rotateY(-8deg);
            opacity: 0;
            transition: all 1.6s var(--transition-smooth);
            filter: saturate(1.2) contrast(1.1);
        }
        .slide.active .slide-bg {
            transform: translateZ(0) scale(1) rotateY(0);
            opacity: 1;
        }
        .slide.prev .slide-bg {
            transform: translateZ(-300px) scale(1.3) rotateY(8deg);
            opacity: 0;
        }

        /* DARK overlay instead of light */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, 
                rgba(10, 5, 20, 0.94) 0%, 
                rgba(15, 8, 35, 0.88) 30%, 
                rgba(25, 12, 55, 0.65) 55%, 
                rgba(40, 18, 80, 0.35) 80%,
                rgba(60, 25, 100, 0.15) 100%
            );
            z-index: 1;
        }

        .deco-stripes {
            position: absolute;
            top: 0;
            right: 0;
            width: 35%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.08;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 50px,
                rgba(255, 255, 255, 0.4) 50px,
                rgba(255, 255, 255, 0.4) 51px
            );
        }

        .light-streak {
            position: absolute;
            width: 2px;
            height: 250px;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
            transform: rotate(25deg);
            pointer-events: none;
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            height: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 100px;
            display: flex;
            align-items: center;
        }

        /* Left Text — WHITE on dark */
        .text-content {
            max-width: 620px;
            position: relative;
            top: -20%;
        }

        .text-reveal-wrapper {
            overflow: hidden;
            margin-bottom: 4px;
        }

        .slide-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-light);
            margin-bottom: 24px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transform: translateY(120%);
            transition: transform 0.8s var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .slide.active .slide-label {
            transform: translateY(0);
            transition-delay: 0.25s;
        }

        .slide-title {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -3px;
            color: #ffffff;
            transform: translateY(110%);
            transition: transform 1s var(--transition-smooth);
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        .slide.active .slide-title {
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .slide-desc {
            font-size: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 28px;
            max-width: 480px;
            transform: translateY(120%);
            transition: transform 1s var(--transition-smooth);
        }
        .slide.active .slide-desc {
            transform: translateY(0);
            transition-delay: 0.55s;
        }

        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-top: 44px;
            padding: 20px 44px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--text-secondary) 100%);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transform: translateY(120%);
            opacity: 0;
            transition: all 1s var(--transition-smooth);
            box-shadow: 0 10px 30px -5px rgba(168, 85, 247, 0.4);
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }
        .slide-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s;
        }
        .slide-cta:hover::before {
            left: 100%;
        }
        .slide.active .slide-cta {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.7s;
        }
        .slide-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -5px rgba(168, 85, 247, 0.5);
        }
        .slide-cta svg {
            transition: transform 0.3s;
        }
        .slide-cta:hover svg {
            transform: translateX(4px);
        }

        /* ===== RIGHT SLIDER (SHARED) ===== */
        .right-slider {
            position: absolute;
            right: 100px;
            top: 50%;
            transform: translateY(-50%);
            width: 460px;
            height: 520px;
            perspective: 1500px;
            transform-style: preserve-3d;
            z-index: 5;
        }

        /* Decorative frame lines */
        .right-slider::before {
            content: '';
            position: absolute;
            inset: -18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 32px;
            pointer-events: none;
            z-index: 20;
        }
        .right-slider::after {
            content: '';
            position: absolute;
            inset: -10px;
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 26px;
            pointer-events: none;
            z-index: 20;
        }

        .corner-accent {
            position: absolute;
            width: 24px;
            height: 24px;
            border-color: rgba(255, 255, 255, 0.35);
            border-style: solid;
            pointer-events: none;
            z-index: 21;
            transition: all 0.4s;
        }
        .corner-accent.tl { top: -24px; left: -24px; border-width: 2px 0 0 2px; border-radius: 6px 0 0 0; }
        .corner-accent.tr { top: -24px; right: -24px; border-width: 2px 2px 0 0; border-radius: 0 6px 0 0; }
        .corner-accent.bl { bottom: -24px; left: -24px; border-width: 0 0 2px 2px; border-radius: 0 0 0 6px; }
        .corner-accent.br { bottom: -24px; right: -24px; border-width: 0 2px 2px 0; border-radius: 0 0 6px 0; }

        .right-slider:hover .corner-accent {
            border-color: rgba(255, 255, 255, 0.6);
            width: 30px;
            height: 30px;
        }

        .right-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
            transform: translateZ(-500px) rotateY(40deg) scale(0.7) translateX(100px);
            opacity: 0;
            transition: all 1.2s var(--transition-smooth);
            top: 0;
            left: 0;
        }
        .right-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .right-slide.active {
            transform: translateZ(0) rotateY(0) scale(1) translateX(0);
            opacity: 1;
            z-index: 5;
            box-shadow: 0 35px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.12);
        }
        .right-slide.prev {
            transform: translateZ(-300px) rotateY(-25deg) scale(0.85) translateX(-80px);
            opacity: 0.5;
            z-index: 2;
            filter: brightness(0.8) blur(1px);
        }
        .right-slide.next {
            transform: translateZ(-300px) rotateY(25deg) scale(0.85) translateX(80px);
            opacity: 0.5;
            z-index: 2;
            filter: brightness(0.8) blur(1px);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 60px;
            left: 100px;
            z-index: 10;
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .nav-dot {
            width: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }
        .nav-dot::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
            transition: width 0.3s;
        }
        .nav-dot.active::after {
            width: 100%;
        }
        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .slide-counter {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            margin-left: 24px;
            letter-spacing: 2px;
        }
        .slide-counter span {
            color: var(--accent-light);
            font-size: 22px;
            font-weight: 800;
        }

        .slider-arrows {
            position: absolute;
            bottom: 50px;
            right: 100px;
            z-index: 10;
            display: flex;
            gap: 16px;
        }
        .arrow-btn {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 20px;
            backdrop-filter: blur(10px);
            font-family: inherit;
        }
        .arrow-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }

        /* ===== MOBILE ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
        }
        .mobile-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(245, 240, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 998;
            padding: 30px 24px;
            flex-direction: column;
            gap: 0;
            overflow-y: auto;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav-item {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            background: none;
            border: none;
            text-align: left;
            font-family: inherit;
            cursor: pointer;
            width: 100%;
        }
        .mobile-dropdown {
            display: none;
            flex-direction: column;
            padding-left: 16px;
            margin: 8px 0 16px;
        }
        .mobile-dropdown.active {
            display: flex;
        }
        .mobile-dropdown a {
            font-size: 17px;
            color: var(--text-muted);
            text-decoration: none;
            padding: 12px 0;
            transition: color 0.3s;
            font-weight: 600;
        }
        .mobile-dropdown a:hover {
            color: var(--accent);
        }
        .mobile-product-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-product-toggle::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            font-weight: 300;
            transition: transform 0.3s;
        }
        .mobile-product-toggle.open::after {
            content: '−';
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .slide-content { padding: 0 60px; }
            .slide-title { font-size: 54px; }
            .right-slider { right: 60px; width: 400px; height: 460px; }
            .slider-nav { left: 60px; }
            .slider-arrows { right: 60px; }
            .mega-menu-inner { padding: 100px 50px 50px; gap: 60px; }
            .product-link { font-size: 32px; }
        }

        @media (max-width: 992px) {
            .slide-content { padding: 0 40px; text-align: center; justify-content: center; }
            .slide-title { font-size: 42px; letter-spacing: -1px; }
            .slide-desc { margin: 20px auto 0; }
            .text-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
            .right-slider { display: none; }
            .slider-nav { left: 40px; bottom: 40px; }
            .slider-arrows { right: 40px; bottom: 30px; }
            .mega-menu-inner { grid-template-columns: 1fr; padding: 100px 40px 40px; gap: 40px; }
            .mega-menu-right { display: none; }
            .product-link { font-size: 26px; }
            .menu-close { right: 40px; }
        }

        @media (max-width: 768px) {
            .header-inner { padding: 0 20px; height: 70px; }
            .nav-desktop { display: none; }
            .mobile-toggle { display: flex; }
            .hero-section { min-height: 600px; }
            .slide-content { padding: 0 24px; }
            .slide-title { font-size: 34px; }
            .slide-desc { font-size: 16px; }
            .slide-label { font-size: 11px; padding: 8px 14px; }
            .slider-nav { left: 24px; bottom: 30px; }
            .slider-arrows { display: none; }
            .menu-close { right: 20px; top: 20px; width: 48px; height: 48px; font-size: 24px; }
            .deco-orb { display: none; }
        }
        .site-header {
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            z-index: 100;
        }

        .site-brand {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .site-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .site-nav a {
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            position: relative;
        }

        .site-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.4s ease;
        }

        .site-nav a:hover {
            color: var(--text-primary);
        }

        .site-nav a:hover::after {
            width: 100%;
        }

        /* ========== HERO SLIDER ========== */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 85vh;
            min-height: 600px;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.08);
            transition: transform 8s ease;
        }

        .slide.active .slide-bg {
            transform: scale(1);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46, 16, 101, 0.55) 0%, rgba(124, 58, 237, 0.35) 40%, rgba(245, 243, 255, 0.15) 100%);
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 0 4rem 5rem;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: end;
            max-width: 1400px;
            margin: 0 auto;
            right: 0;
        }

        .slide-left {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .slide-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .slide-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 300;
            color: white;
            line-height: 1.05;
            letter-spacing: -1px;
        }

        .slide-title span {
            display: block;
        }

        .slide-right {
            padding-bottom: 0.5rem;
        }

        .slide-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 1.8vw, 1.3rem);
            font-weight: 400;
            font-style: italic;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            max-width: 500px;
            margin-bottom: 1.5rem;
        }

        .slide-meta {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
        }

        .slide-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            transition: gap 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 0.3rem;
        }

        .slide-link:hover {
            gap: 1rem;
            border-bottom-color: white;
        }

        .slide-link svg {
            width: 14px;
            height: 14px;
        }

        /* Slider Controls */
        .slider-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
            z-index: 10;
        }

        .dot {
            width: 50px;
            height: 3px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.4);
        }

        .dot-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: white;
            border-radius: 2px;
        }

        .dot.active .dot-progress {
            animation: progress 6s linear forwards;
        }

        @keyframes progress {
            from { width: 0%; }
            to { width: 100%; }
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 10;
            pointer-events: none;
            opacity: 0;
        }

        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .arrow svg {
            width: 20px;
            height: 20px;
        }

        .slider-counter {
            position: absolute;
            top: 2rem;
            right: 4rem;
            z-index: 10;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 2px;
        }

        .slider-counter span {
            color: white;
            font-weight: 600;
        }

        /* ========== HERO META BAR ========== */
        .hero-meta-bar {
            padding: 2rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 2rem;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border-light);
        }

        .hero-meta-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .hero-meta-issue {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .hero-meta-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-meta-right {
            text-align: right;
        }

        .hero-meta-est {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.3rem;
        }

        .hero-meta-range {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .hero-meta-bottom {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .hero-meta-collection {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        /* ========== FEATURED ARTIFACT ========== */
        .featured-section {
            padding: 6rem 4rem 8rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .featured-image-wrap {
            position: relative;
            margin-bottom: 3rem;
            overflow: hidden;
            border-radius: 4px;
        }

        .featured-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 8s ease;
        }

        .featured-image-wrap:hover .featured-image {
            transform: scale(1.03);
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .featured-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .featured-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 300;
            color: var(--text-primary);
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .featured-meta {
            font-size: 0.8rem;
            color: var(--text-secondary);
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .featured-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 540px;
        }

        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            transition: gap 0.3s ease;
        }

        .featured-link:hover {
            gap: 1rem;
        }

        .featured-link svg {
            width: 16px;
            height: 16px;
        }

        /* ========== ARTIFACTS GRID ========== */
        .artifacts-section {
            padding: 0 4rem 6rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .artifacts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .artifact-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
        }

        .artifact-card:nth-child(1) {
            grid-column: span 2;
        }

        .artifact-image-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .artifact-card:nth-child(1) .artifact-image-wrap {
            aspect-ratio: 21/9;
        }

        .artifact-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 6s ease, filter 0.5s ease;
            filter: saturate(0.9);
        }

        .artifact-card:hover .artifact-image {
            transform: scale(1.05);
            filter: saturate(1);
        }

        .artifact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(46, 16, 101, 0.6) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .artifact-card:hover .artifact-overlay {
            opacity: 1;
        }

        .artifact-content {
            padding: 1.5rem 0 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .artifact-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 0.3rem;
        }

        .artifact-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .artifact-link {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .artifact-card:hover .artifact-link {
            color: var(--accent);
        }

        .artifacts-footer {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .artifacts-footer-text {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        /* ========== HISTORY SECTION ========== */
        .history-section {
            padding: 8rem 4rem;
            background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
        }

        .history-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
        }

        .history-left {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        .history-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .history-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: var(--text-primary);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .history-title span {
            display: block;
        }

        .history-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .history-image-wrap {
            margin-top: 3rem;
            overflow: hidden;
            border-radius: 4px;
        }

        .history-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--border);
        }

        .timeline-item {
            padding-left: 3rem;
            padding-bottom: 3rem;
            position: relative;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -4px;
            top: 0.5rem;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
        }

        .timeline-item:hover::before {
            background: var(--accent);
            transform: scale(1.3);
        }

        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
        }

        .timeline-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 500px;
        }

        /* ========== QUOTE SECTION ========== */
        .quote-section {
            padding: 8rem 4rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 300;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 2rem;
        }

        .quote-author {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .quote-divider {
            width: 60px;
            height: 1px;
            background: var(--accent);
            margin: 3rem auto;
            opacity: 0.5;
        }

        .quote-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .quote-final {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            padding: 4rem;
            border-top: 1px solid var(--border);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .footer-divider {
            width: 1px;
            height: 20px;
            background: var(--border);
        }

        .footer-location {
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .footer-right {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        /* ========== SCROLL REVEAL ========== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .site-header,
            .slide-content,
            .hero-meta-bar,
            .featured-section,
            .artifacts-section,
            .history-section,
            .quote-section,
            .site-footer {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .slide-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .featured-content,
            .history-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .history-left {
                position: relative;
                top: 0;
            }

            .artifacts-grid {
                grid-template-columns: 1fr;
            }

            .artifact-card:nth-child(1) {
                grid-column: span 1;
            }

            .slider-counter {
                right: 2rem;
            }
        }

        @media (max-width: 640px) {
            .site-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .site-nav {
                gap: 1rem;
            }

            .hero-meta-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-meta-right {
                text-align: left;
            }

            .hero-slider {
                height: 70vh;
                min-height: 500px;
            }

            .slider-arrows {
                display: none;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }
        }


         .about-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 6rem 0;
        }

        /* Parallax background */
        .about-bg {
            position: absolute;
            inset: -15% 0;
            width: 100%;
            height: 130%;
            background-image: url('https://images.unsplash.com/photo-1598653222000-6b7b7a552625?w=1920&q=80');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .about-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(46,16,101,0.88) 0%, rgba(46,16,101,0.75) 50%, rgba(46,16,101,0.92) 100%);
        }

        /* Decorative elements */
        .about-deco-line {
            position: absolute;
            z-index: 1;
            pointer-events: none;
        }

        .about-deco-v {
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 100%);
        }

        .about-deco-v1 { left: 8%; top: 0; }
        .about-deco-v2 { right: 8%; top: 0; }

        /* Container */
        .about-container {
            position: relative;
            z-index: 2;
            max-width: 1700px;
            width: 100%;
            margin: 0 auto;
            padding: 0 4rem;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        /* ========== LEFT: TEXT ========== */
        .about-text {
            position: relative;
        }

        .about-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .about-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.05;
            letter-spacing: -1px;
            margin-bottom: 0.5rem;
        }

        .about-name-line {
            display: block;
            overflow: hidden;
        }

        .about-name-inner {
            display: block;
            transform: translateY(110%);
        }

        .about-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 300;
            font-style: italic;
            color: rgba(255,255,255,0.7);
            line-height: 1.3;
            margin-bottom: 2.5rem;
        }

        .about-subtitle-line {
            display: block;
            overflow: hidden;
        }

        .about-subtitle-inner {
            display: block;
            transform: translateY(110%);
        }

        .about-divider {
            width: 60px;
            height: 1px;
            background: var(--accent);
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
        }

        .about-body {
            font-size: clamp(0.9rem, 1.2vw, 1.05rem);
            font-weight: 300;
            color: rgba(255,255,255,0.75);
            line-height: 1.85;
            max-width: 640px;
        }

        .about-body p {
            margin-bottom: 1.2rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .about-body p:last-child {
            margin-bottom: 0;
        }

        .about-signature {
            margin-top: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .about-sig-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 0.3rem;
        }

        .about-sig-role {
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Highlighted words */
        .about-body .highlight {
            color: rgba(255,255,255,0.95);
            font-weight: 400;
        }

        /* ========== RIGHT: IMAGE ========== */
        .about-image-wrap {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
        }

        .about-image-frame {
            position: relative;
            width: 100%;
            max-width: 520px;
            aspect-ratio: 3/4;
            border-radius: 4px;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 0.15s ease-out;
            opacity: 0;
            transform: translateX(60px) rotateY(-8deg);
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
            z-index: 2;
            pointer-events: none;
        }

        .about-image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(46,16,101,0.4) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 0.6s ease;
        }

        .about-image-frame:hover .about-image {
            transform: scale(1.15);
        }

        /* Decorative corner marks */
        .corner-mark {
            position: absolute;
            width: 30px;
            height: 30px;
            border-color: rgba(255,255,255,0.2);
            border-style: solid;
            z-index: 3;
            pointer-events: none;
            transition: all 0.4s ease;
        }

        .corner-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
        .corner-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
        .corner-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
        .corner-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

        .about-image-frame:hover .corner-mark {
            width: 40px;
            height: 40px;
            border-color: rgba(255,255,255,0.4);
        }
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
                padding: 0 3rem;
            }

            .about-image-wrap {
                min-height: auto;
                order: -1;
            }

            .about-image-frame {
                max-width: 400px;
                aspect-ratio: 4/3;
                transform: translateY(40px) rotateY(0deg);
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 4rem 0;
            }

            .about-container {
                padding: 0 2rem;
                gap: 3rem;
            }

            .about-name {
                font-size: 2.2rem;
            }

            .about-subtitle {
                font-size: 1.1rem;
            }

            .about-image-frame {
                max-width: 100%;
                aspect-ratio: 16/10;
            }
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 0 1.5rem;
            }

            .about-name {
                font-size: 1.9rem;
            }

            .about-body {
                font-size: 0.88rem;
                line-height: 1.75;
            }
        }


         /* ========== SECTION 1: HISTORY ========== */
        .history-section {
            position: relative;
            width: 100%;
            padding: 8rem 0;
            overflow: hidden;
            background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
        }

        .history-container {
            position: relative;
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* Decorative elements */
        .history-deco {
            position: absolute;
            pointer-events: none;
        }

        .history-deco-v {
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.1) 30%, rgba(139,92,246,0.1) 70%, transparent 100%);
        }

        .history-deco-1 { left: 5%; top: 0; }
        .history-deco-2 { right: 5%; top: 0; }

        /* Left: Text */
        .history-text {
            position: relative;
            z-index: 2;
        }

        .history-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .history-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--text);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .history-title span {
            display: block;
        }

        .history-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 300;
            font-style: italic;
            color: var(--text-sec);
            line-height: 1.3;
            margin-bottom: 2.5rem;
        }

        .history-divider {
            width: 60px;
            height: 1px;
            background: var(--accent);
            margin-bottom: 2.5rem;
        }

        .history-body {
            font-size: clamp(0.9rem, 1.1vw, 1rem);
            font-weight: 300;
            color: var(--text-sec);
            line-height: 1.85;
            max-width: 580px;
        }

        .history-body p {
            margin-bottom: 1.2rem;
        }

        .history-body p:last-child {
            margin-bottom: 0;
        }

        .history-body .highlight {
            color: #ddd6fe;
            font-weight: 400;
        }

        /* Right: 3D Stacked Slider */
        .history-slider-wrap {
            position: relative;
            width: 100%;
            height: 550px;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .history-slider {
            position: relative;
            width: 420px;
            height: 520px;
            transform-style: preserve-3d;
        }

        /* Creative frame */
        .slider-frame {
            position: absolute;
            inset: -15px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 8px;
            pointer-events: none;
            z-index: 10;
        }

        .slider-frame::before,
        .slider-frame::after {
            content: '';
            position: absolute;
            border: 1px solid rgba(139, 92, 246, 0.1);
            border-radius: 8px;
        }

        .slider-frame::before {
            inset: -8px;
        }

        .slider-frame::after {
            inset: 8px;
            border-color: rgba(139, 92, 246, 0.15);
        }

        /* Corner accents */
        .frame-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: var(--accent);
            border-style: solid;
            z-index: 11;
            pointer-events: none;
        }

        .frame-corner-tl { top: -20px; left: -20px; border-width: 2px 0 0 2px; }
        .frame-corner-tr { top: -20px; right: -20px; border-width: 2px 2px 0 0; }
        .frame-corner-bl { bottom: -20px; left: -20px; border-width: 0 0 2px 2px; }
        .frame-corner-br { bottom: -20px; right: -20px; border-width: 0 2px 2px 0; }

        .history-slide {
            position: absolute;
            inset: 0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(46, 16, 101, 0.2);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .history-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 3D stacked positions */
        .history-slide:nth-child(1) {
            transform: translateZ(0) translateX(0) rotateY(0deg);
            z-index: 3;
            opacity: 1;
        }

        .history-slide:nth-child(2) {
            transform: translateZ(-80px) translateX(30px) rotateY(-8deg);
            z-index: 2;
            opacity: 0.6;
            filter: brightness(0.8);
        }

        .history-slide:nth-child(3) {
            transform: translateZ(-160px) translateX(60px) rotateY(-16deg);
            z-index: 1;
            opacity: 0.3;
            filter: brightness(0.6);
        }

        /* Active states for 3D rotation */
        .history-slider.active-1 .history-slide:nth-child(1) {
            transform: translateZ(0) translateX(0) rotateY(0deg);
            z-index: 3; opacity: 1; filter: brightness(1);
        }
        .history-slider.active-1 .history-slide:nth-child(2) {
            transform: translateZ(-80px) translateX(30px) rotateY(-8deg);
            z-index: 2; opacity: 0.6; filter: brightness(0.8);
        }
        .history-slider.active-1 .history-slide:nth-child(3) {
            transform: translateZ(-160px) translateX(60px) rotateY(-16deg);
            z-index: 1; opacity: 0.3; filter: brightness(0.6);
        }

        .history-slider.active-2 .history-slide:nth-child(1) {
            transform: translateZ(-160px) translateX(-60px) rotateY(16deg);
            z-index: 1; opacity: 0.3; filter: brightness(0.6);
        }
        .history-slider.active-2 .history-slide:nth-child(2) {
            transform: translateZ(0) translateX(0) rotateY(0deg);
            z-index: 3; opacity: 1; filter: brightness(1);
        }
        .history-slider.active-2 .history-slide:nth-child(3) {
            transform: translateZ(-80px) translateX(30px) rotateY(-8deg);
            z-index: 2; opacity: 0.6; filter: brightness(0.8);
        }

        .history-slider.active-3 .history-slide:nth-child(1) {
            transform: translateZ(-80px) translateX(-30px) rotateY(8deg);
            z-index: 2; opacity: 0.6; filter: brightness(0.8);
        }
        .history-slider.active-3 .history-slide:nth-child(2) {
            transform: translateZ(-160px) translateX(-60px) rotateY(16deg);
            z-index: 1; opacity: 0.3; filter: brightness(0.6);
        }
        .history-slider.active-3 .history-slide:nth-child(3) {
            transform: translateZ(0) translateX(0) rotateY(0deg);
            z-index: 3; opacity: 1; filter: brightness(1);
        }

        /* Slider dots */
        .history-dots {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 20;
        }

        .h-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid var(--accent);
            background: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .h-dot.active {
            background: var(--accent);
            transform: scale(1.3);
        }

        .h-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(139, 92, 246, 0.2);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .h-dot.active::after {
            opacity: 1;
            inset: -8px;
        }

        /* ========== SECTION 2: TIMELINE CAROUSEL ========== */
        .timeline-section {
            position: relative;
            width: 100%;
            padding: 8rem 0;
            overflow: hidden;
            background: linear-gradient(180deg, #2e1065 0%, #7232da 0%, #7232da 100%);
        }

        .timeline-bg {
            position: absolute;
            inset: -10% 0;
            width: 100%;
            height: 120%;
            background-image: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1920&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            z-index: 0;
            background-attachment: fixed;
        }

        .timeline-container {
            position: relative;
            z-index: 2;
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 4rem;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .timeline-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-light);
            margin-bottom: 1.5rem;
        }

        .timeline-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* 3D Carousel */
        .carousel-wrap {
            position: relative;
            width: 100%;
            height: 500px;
            perspective: 2000px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item {
            position: absolute;
            width: 380px;
            height: 420px;
            left: 50%;
            top: 50%;
            margin-left: -190px;
            margin-top: -210px;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .carousel-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .carousel-item:hover img {
            transform: scale(1.1);
        }

        .carousel-content {
            padding: 1.8rem;
        }

        .carousel-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }

        .carousel-desc {
            font-size: 0.85rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* 3D positions for 5 items */
        .carousel-item:nth-child(1) { transform: translateX(-600px) translateZ(-400px) rotateY(25deg); opacity: 0.4; }
        .carousel-item:nth-child(2) { transform: translateX(-300px) translateZ(-200px) rotateY(15deg); opacity: 0.7; }
        .carousel-item:nth-child(3) { transform: translateX(0) translateZ(0) rotateY(0deg); opacity: 1; z-index: 10; }
        .carousel-item:nth-child(4) { transform: translateX(300px) translateZ(-200px) rotateY(-15deg); opacity: 0.7; }
        .carousel-item:nth-child(5) { transform: translateX(600px) translateZ(-400px) rotateY(-25deg); opacity: 0.4; }

        /* Carousel dots */
        .carousel-dots {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 20;
        }

        .c-dot {
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .c-dot.active {
            background: rgba(255, 255, 255, 0.5);
        }

        .c-dot-progress {
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: 0%;
            background: var(--white);
            border-radius: 1px;
        }

        .c-dot.active .c-dot-progress {
            animation: cProgress 5s linear forwards;
        }

        @keyframes cProgress {
            from { width: 0%; }
            to { width: 100%; }
        }

        /* Carousel arrows */
        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 20;
            pointer-events: none;
        }

        .c-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            display: flex; align-items: center; justify-content: center;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .c-arrow:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .c-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .history-container {
                grid-template-columns: 1fr;
                gap: 4rem;
                padding: 0 3rem;
            }

            .history-slider-wrap {
                height: 450px;
            }

            .history-slider {
                width: 350px;
                height: 430px;
            }

            .carousel-item {
                width: 320px;
                height: 380px;
                margin-left: -160px;
                margin-top: -190px;
            }

            .carousel-item:nth-child(1) { transform: translateX(-450px) translateZ(-300px) rotateY(20deg); }
            .carousel-item:nth-child(2) { transform: translateX(-220px) translateZ(-150px) rotateY(10deg); }
            .carousel-item:nth-child(4) { transform: translateX(220px) translateZ(-150px) rotateY(-10deg); }
            .carousel-item:nth-child(5) { transform: translateX(450px) translateZ(-300px) rotateY(-20deg); }
        }

        @media (max-width: 768px) {
            .history-section, .timeline-section {
                padding: 5rem 0;
            }

            .history-container, .timeline-container {
                padding: 0 2rem;
            }

            .history-slider-wrap {
                height: 380px;
            }

            .history-slider {
                width: 280px;
                height: 350px;
            }

            .slider-frame { inset: -10px; }
            .frame-corner { width: 15px; height: 15px; }
            .frame-corner-tl { top: -15px; left: -15px; }
            .frame-corner-tr { top: -15px; right: -15px; }
            .frame-corner-bl { bottom: -15px; left: -15px; }
            .frame-corner-br { bottom: -15px; right: -15px; }

            .carousel-wrap {
                height: 420px;
            }

            .carousel-item {
                width: 280px;
                height: 340px;
                margin-left: -140px;
                margin-top: -170px;
            }

            .carousel-item:nth-child(1) { transform: translateX(-300px) translateZ(-200px) rotateY(15deg); opacity: 0; }
            .carousel-item:nth-child(2) { transform: translateX(-150px) translateZ(-100px) rotateY(8deg); opacity: 0.5; }
            .carousel-item:nth-child(4) { transform: translateX(150px) translateZ(-100px) rotateY(-8deg); opacity: 0.5; }
            .carousel-item:nth-child(5) { transform: translateX(300px) translateZ(-200px) rotateY(-15deg); opacity: 0; }

            .carousel-arrows { display: none; }
        }

        @media (max-width: 480px) {
            .history-container, .timeline-container {
                padding: 0 1.5rem;
            }

            .history-title {
                font-size: 2rem;
            }

            .history-subtitle {
                font-size: 1.1rem;
            }

            .history-slider {
                width: 240px;
                height: 300px;
            }

            .carousel-item {
                width: 260px;
                height: 320px;
                margin-left: -130px;
                margin-top: -160px;
            }

            .carousel-item img {
                height: 160px;
            }

            .carousel-content {
                padding: 1.2rem;
            }

            .carousel-year {
                font-size: 1.6rem;
            }
        }


        .collections-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #2e1065;
            transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Background layers for hover effect */
        .bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .bg-layer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(46, 16, 101, 0.3) 0%, rgba(46, 16, 101, 0.7) 100%);
        }

        .bg-layer.active {
            opacity: 1;
        }

        /* Default background gradient */
        .collections-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #2e1065 0%, #4c1d95 50%, #5b21b6 100%);
            z-index: 0;
            transition: opacity 1s ease;
        }

        .collections-container {
            position: relative;
            z-index: 2;
            max-width: 1700px;
            margin: 0 auto;
            padding: 6rem 0;
        }

        /* Section header */
        .collections-header {
            text-align: center;
            padding: 0 3rem;
            margin-bottom: 4rem;
        }

        .collections-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1rem;
        }

        .collections-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: white;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* Grid */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            min-height: 600px;
        }

        /* Collection card */
        .collection-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 3rem 2.5rem;
            cursor: pointer;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .collection-card:last-child {
            border-right: none;
        }

        /* Card image */
        .card-image-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 65%;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transform: scale(1.05);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: saturate(0.8);
        }

        .collection-card:hover .card-image {
            opacity: 0.7;
            transform: scale(1.12);
            filter: saturate(1);
        }

        .card-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(46, 16, 101, 0.9) 100%);
            transition: opacity 0.6s ease;
        }

        .collection-card:hover .card-image-overlay {
            opacity: 0.6;
        }

        /* Card number */
        .card-number {
            position: absolute;
            top: 2rem;
            left: 2.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 2px;
            transition: color 0.4s ease;
        }

        .collection-card:hover .card-number {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Card content */
        .card-content {
            position: relative;
            z-index: 2;
        }

        .card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2vw, 1.8rem);
            font-weight: 500;
            color: white;
            line-height: 1.2;
            margin-bottom: 0;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-desc {
            font-size: 0.85rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 280px;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.2rem;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(15px);
        }

        .card-link svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        /* Hover states */
        .collection-card:hover .card-title {
            transform: translateY(-8px);
        }

        .collection-card:hover .card-desc {
            opacity: 1;
            transform: translateY(0);
        }

        .collection-card:hover .card-link {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
            color: white;
        }

        .collection-card:hover .card-link:hover svg {
            transform: translateX(4px);
        }

        /* Bottom divider line */
        .card-bottom-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
                min-height: auto;
            }

            .collection-card {
                border-right: 1px solid rgba(255, 255, 255, 0.15);
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                min-height: 500px;
            }

            .collection-card:nth-child(2n) {
                border-right: none;
            }

            .collection-card:nth-child(3),
            .collection-card:nth-child(4) {
                border-bottom: none;
            }
        }

        @media (max-width: 768px) {
            .collections-container {
                padding: 4rem 0;
            }

            .collections-header {
                padding: 0 2rem;
                margin-bottom: 3rem;
            }

            .collections-grid {
                grid-template-columns: 1fr;
            }

            .collection-card {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                min-height: 450px;
                padding: 2.5rem 2rem;
            }

            .collection-card:last-child {
                border-bottom: none;
            }

            .card-number {
                left: 2rem;
                top: 1.5rem;
            }

            .card-image-wrap {
                height: 60%;
            }
        }

        @media (max-width: 480px) {
            .collection-card {
                min-height: 400px;
                padding: 2rem 1.5rem;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .card-desc {
                font-size: 0.8rem;
            }
        }

                .reveal-wrapper {
            overflow: hidden;
            display: block;
        }

        .reveal-item {
            display: block;
            transform: translateY(70px);
            opacity: 0;
            transition: transform 1.1s var(--transition-smooth), opacity 1.1s var(--transition-smooth);
        }

        .reveal-item.revealed {
            transform: translateY(0);
            opacity: 1;
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }
        .delay-7 { transition-delay: 0.7s; }
        .delay-8 { transition-delay: 0.8s; }
        .delay-9 { transition-delay: 0.9s; }
        .delay-10 { transition-delay: 1.0s; }
        .delay-11 { transition-delay: 1.1s; }
        .delay-12 { transition-delay: 1.2s; }

        /* ===== FOOTER ===== */
        .footer-section {
            position: relative;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 100px 60px 40px;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, #e4d5ff 100%);
            overflow: hidden;
        }

        /* Top divider with glow */
        .footer-top-line {
            position: absolute;
            top: 0;
            left: 60px;
            right: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--border) 15%, var(--accent-light) 50%, var(--border) 85%, transparent 100%);
        }
        .footer-top-glow {
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 5px;
            background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
            filter: blur(4px);
            opacity: 0.6;
        }

        /* Floating orbs */
        .footer-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }
        .footer-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(192, 132, 252, 0.2) 0%, transparent 70%);
            top: -200px;
            right: -150px;
            animation: orbFloat 18s ease-in-out infinite;
        }
        .footer-orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233, 213, 255, 0.5) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: orbFloat 22s ease-in-out infinite reverse;
        }
        .footer-orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(216, 180, 254, 0.25) 0%, transparent 70%);
            top: 40%;
            left: 30%;
            animation: orbFloat 16s ease-in-out infinite 3s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(40px, -30px) scale(1.08); }
            66% { transform: translate(-25px, 20px) scale(0.95); }
        }

        /* Corner accents */
        .corner-deco {
            position: absolute;
            width: 50px;
            height: 50px;
            pointer-events: none;
            opacity: 0.4;
        }
        .corner-deco.tr {
            top: 40px;
            right: 40px;
            border-top: 2px solid var(--accent-light);
            border-right: 2px solid var(--accent-light);
            border-radius: 0 12px 0 0;
        }
        .corner-deco.bl {
            bottom: 40px;
            left: 40px;
            border-bottom: 2px solid var(--accent-light);
            border-left: 2px solid var(--accent-light);
            border-radius: 0 0 0 12px;
        }

        /* Grain texture */
        .grain-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.015;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* ===== FOOTER MAIN GRID ===== */
        .footer-main {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        /* ===== COLUMN 1: BRAND + CONTACT ===== */
        .footer-brand-col {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .brand-block {
            position: relative;
        }

        .brand-name {
            font-size: 52px;
            font-weight: 900;
            letter-spacing: -2.5px;
            line-height: 1;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 50%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .brand-sub {
            font-size: 16px;
            color: var(--text-muted);
            margin-top: 8px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .brand-accent {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
            margin-top: 20px;
            position: relative;
        }
        .brand-accent::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--accent-light);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--accent-glow);
        }

        /* Contact Card */
        .contact-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px var(--shadow);
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--transition-smooth);
        }
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            border-radius: 2px;
        }
        .contact-card:hover {
            background: var(--bg-card-hover);
            box-shadow: 0 12px 40px var(--shadow-hover);
            transform: translateY(-2px);
        }

        .contact-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .contact-company {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .contact-address {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .contact-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            color: var(--text-secondary);
            font-weight: 700;
            text-decoration: none;
            padding: 10px 16px;
            background: rgba(168, 85, 247, 0.08);
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        .contact-phone:hover {
            background: rgba(168, 85, 247, 0.15);
            border-color: var(--accent-light);
            color: var(--accent);
            transform: translateX(4px);
        }
        .contact-phone svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent);
            flex-shrink: 0;
        }

        /* ===== COLUMN 2: PRODUCTS ===== */
        .footer-col-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .footer-col-title::before {
            content: '';
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 1px;
        }

        .product-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .product-link1 {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 600;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.35s var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .product-link1:last-child {
            border-bottom: none;
        }
        .product-link1::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 20px;
            background: linear-gradient(180deg, var(--accent), var(--accent-light));
            border-radius: 0 2px 2px 0;
            transition: width 0.4s var(--transition-smooth);
        }
        .product-link1:hover {
            color: var(--text-primary);
            padding-left: 20px;
        }
        .product-link1:hover::before {
            width: 4px;
        }

        .product-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--border);
            transition: all 0.3s;
            flex-shrink: 0;
        }
        .product-link:hover .product-dot {
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
            transform: scale(1.3);
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--text-secondary) 100%);
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s var(--transition-spring);
            box-shadow: 0 8px 24px var(--shadow);
        }
        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.35);
            gap: 16px;
        }
        .view-all-btn svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
            transition: transform 0.3s;
        }
        .view-all-btn:hover svg {
            transform: translateX(3px);
        }

        /* ===== COLUMN 3: COMPANY ===== */
        .company-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .company-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 600;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.35s var(--transition-smooth);
            position: relative;
        }
        .company-link:last-child {
            border-bottom: none;
        }
        .company-link::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 1px;
            transition: width 0.35s var(--transition-smooth);
        }
        .company-link:hover {
            color: var(--text-primary);
            padding-left: 8px;
        }
        .company-link:hover::after {
            width: 40px;
        }

        .company-icon {
            width: 20px;
            height: 20px;
            stroke: var(--accent-light);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        .company-link:hover .company-icon {
            stroke: var(--accent);
            transform: scale(1.1);
        }

        /* ===== COLUMN 4: SUPPORT + SOCIAL ===== */
        .support-block {
            margin-bottom: 40px;
        }

        .support-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .support-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 600;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.35s var(--transition-smooth);
        }
        .support-link:last-child {
            border-bottom: none;
        }
        .support-link:hover {
            color: var(--text-primary);
            padding-left: 8px;
        }

        .support-icon {
            width: 20px;
            height: 20px;
            stroke: var(--accent-light);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        .support-link:hover .support-icon {
            stroke: var(--accent);
            transform: scale(1.1);
        }

        /* Social Icons */
        .social-block {
            margin-top: 32px;
        }

        .social-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .social-title::before {
            content: '';
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 1px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s var(--transition-spring);
            position: relative;
            overflow: hidden;
        }
        .social-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent), var(--text-secondary));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .social-link:hover {
            transform: translateY(-5px) scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 12px 30px var(--shadow-hover);
        }
        .social-link:hover::before {
            opacity: 1;
        }
        .social-link svg {
            width: 22px;
            height: 22px;
            fill: var(--text-muted);
            position: relative;
            z-index: 1;
            transition: fill 0.3s;
        }
        .social-link:hover svg {
            fill: white;
        }

        /* ===== FOOTER BOTTOM ===== */
        .footer-bottom {
            margin-top: 80px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .footer-copy {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .footer-legal {
            display: flex;
            gap: 32px;
        }

        .legal-link {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }
        .legal-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 1px;
            transition: width 0.3s;
        }
        .legal-link:hover {
            color: var(--text-primary);
        }
        .legal-link:hover::after {
            width: 100%;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .footer-section { padding: 80px 40px 30px; }
            .footer-main { grid-template-columns: 1fr 1fr; gap: 50px; }
            .footer-brand-col { grid-column: 1 / -1; }
            .brand-name { font-size: 44px; }
            .contact-card { max-width: 400px; }
            .corner-deco { display: none; }
        }

        @media (max-width: 768px) {
            .footer-section { padding: 60px 24px 24px; }
            .footer-main { grid-template-columns: 1fr; gap: 40px; }
            .brand-name { font-size: 36px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .footer-legal { gap: 20px; }
            .social-icons { justify-content: center; }
            .footer-top-line { left: 24px; right: 24px; }
        }









         /* ===== PRELOADER BASE ===== */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 1000000;
            background: #b194ff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* ===== PARTICLE FIELD ===== */
        .particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--violet-300);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat linear infinite;
        }
        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-20px) scale(1); }
        }

        /* ===== DIAGONAL STRIPE OVERLAY ===== */
        .stripe-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            opacity: 0.03;
            background: repeating-linear-gradient(
                -55deg,
                transparent,
                transparent 80px,
                rgba(196, 181, 253, 0.3) 80px,
                rgba(196, 181, 253, 0.3) 82px
            );
        }

        /* ===== CENTRAL STAGE ===== */
        .stage {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
        }

        /* ===== BRAND ===== */
        .brand {
            text-align: center;
            position: relative;
        }

        .brand-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 100px;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
            filter: blur(40px);
            animation: glowPulse 3s ease-in-out infinite;
        }
        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
        }

        .brand-title {
            font-size: 64px;
            font-weight: 900;
            letter-spacing: -3px;
            color: white;
            position: relative;
            text-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
            opacity: 0;
            transform: translateY(-40px) rotateX(45deg);
            animation: brandEnter 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
        }
        @keyframes brandEnter {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .brand-subtitle {
            font-size: 13px;
            color: var(--violet-300);
            text-transform: uppercase;
            letter-spacing: 8px;
            font-weight: 700;
            margin-top: 12px;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease 0.8s forwards;
        }

        /* ===== 3D IMAGE PRISM ===== */
        .prism-container {
            position: relative;
            width: 380px;
            height: 280px;
            perspective: 1200px;
            perspective-origin: 50% 50%;
        }

        .prism-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .prism-face {
            position: absolute;
            width: 310px;
            height: 240px;
            left: 20px;
            top: 20px;
            border-radius: 20px;
            overflow: hidden;
            backface-visibility: hidden;
            box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--glass-border);
        }

        .prism-face img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.2) contrast(1.1);
        }

        .prism-face::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(139, 92, 246, 0.2) 0%, 
                transparent 50%,
                rgba(0, 0, 0, 0.3) 100%);
        }

        /* Decorative frame around prism */
        .prism-frame {
            position: absolute;
            inset: -30px;
            pointer-events: none;
            z-index: 20;
        }

        .prism-frame-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--violet-400), transparent);
            opacity: 0.3;
        }
        .prism-frame-line.h { height: 1px; left: 20px; right: 20px; }
        .prism-frame-line.v { width: 1px; top: 20px; bottom: 20px; }

        .prism-frame-line.t { top: 0; }
        .prism-frame-line.b { bottom: 0; }
        .prism-frame-line.l { left: 0; }
        .prism-frame-line.r { right: 0; }

        /* Corner diamonds */
        .corner-diamond {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--violet-400);
            transform: rotate(45deg);
            opacity: 0.5;
            box-shadow: 0 0 20px var(--violet-500);
        }
        .corner-diamond.tl { top: -6px; left: -6px; }
        .corner-diamond.tr { top: -6px; right: -6px; }
        .corner-diamond.bl { bottom: -6px; left: -6px; }
        .corner-diamond.br { bottom: -6px; right: -6px; }

        /* ===== WAVE PROGRESS ===== */
        .wave-container {
            position: relative;
            width: 400px;
            height: 60px;
        }

        .wave-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 3px;
        }

        .wave-bar {
            width: 4px;
            background: linear-gradient(to top, var(--violet-700), var(--violet-400));
            border-radius: 2px;
            opacity: 0.2;
            transition: all 0.4s ease;
        }

        .wave-bar.active {
            opacity: 1;
            box-shadow: 0 0 12px var(--violet-500);
        }

        .wave-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--violet-500), var(--violet-300), var(--violet-500));
            border-radius: 1px;
            box-shadow: 0 0 20px var(--violet-500);
            transition: width 0.3s linear;
        }

        .wave-percent {
            position: absolute;
            top: 0;
            left: 40%;
            font-size: 42px;
            font-weight: 900;
            color: white;
            font-variant-numeric: tabular-nums;
            text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
            opacity: 0;
            animation: fadeSlideUp 0.6s ease 1s forwards;
        }

        /* ===== LOADING TEXT ===== */
        .loading-texts {
            position: relative;
            height: 30px;
            width: 400px;
            overflow: hidden;
            text-align: center;
        }

        .loading-text {
            position: absolute;
            width: 100%;
            font-size: 15px;
            font-weight: 600;
            color: var(--violet-300);
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .loading-text.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .loading-text.exit {
            opacity: 0;
            transform: translateY(-30px) scale(0.9);
        }

        /* Typing cursor */
        .loading-text.active::after {
            content: '|';
            animation: blink 0.8s infinite;
            margin-left: 4px;
            color: var(--violet-400);
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* ===== EXIT CURTAIN ===== */
        .curtain {
            position: absolute;
            z-index: 100;
            background: var(--violet-950);
            transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .curtain.top {
            top: 0;
            left: 0;
            right: 0;
            height: 0;
        }
        .curtain.top.open {
            height: 50%;
        }

        .curtain.bottom {
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
        }
        .curtain.bottom.open {
            height: 50%;
        }

        .curtain.left {
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
        }
        .curtain.left.open {
            width: 50%;
        }

        .curtain.right {
            right: 0;
            top: 0;
            bottom: 0;
            width: 0;
        }
        .curtain.right.open {
            width: 50%;
        }

        /* Diagonal wipe for final exit */
        .preloader.exit-diagonal {
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1);
        }

        /* Content squeeze */
        .preloader.exit-squeeze .stage {
            animation: squeezeUp 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        }
        @keyframes squeezeUp {
            to {
                transform: scaleY(0) translateY(-100px);
                opacity: 0;
            }
        }

        /* ===== MAIN CONTENT ===== */
        .main-content {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 30px;
            opacity: 0;
            transform: scale(1.1);
            transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: linear-gradient(160deg, var(--violet-950) 0%, var(--violet-900) 100%);
            z-index: 1;
        }

        .main-content.visible {
            opacity: 1;
            transform: scale(1);
        }

        .main-title {
            font-size: 72px;
            font-weight: 900;
            color: white;
            letter-spacing: -3px;
            text-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
        }

        .main-subtitle {
            font-size: 18px;
            color: var(--violet-300);
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }






       .dropdown-trigger {
            color: #5b21b6;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(139, 92, 246, 0.06);
            border: 1px solid rgba(139, 92, 246, 0.25);
        }

        .dropdown-trigger:hover {
            background: rgba(139, 92, 246, 0.12);
            border-color: rgba(139, 92, 246, 0.45);
        }

        .dropdown-trigger .arrow {
            margin-left: auto;
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .dropdown-trigger.open .arrow {
            transform: rotate(180deg);
        }

        /* Оверлей */
        .dropdown-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(88, 28, 135, 0.25);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }

        .dropdown-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Выпадающее меню */
        .dropdown-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 25%;
            min-width: 280px;
            max-width: 400px;
            height: 100vh;
            background: #faf5ff;
            z-index: 99999999999;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow-y: auto;
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
            border-right: 1px solid rgba(139, 92, 246, 0.15);
        }

        .dropdown-menu.active {
            transform: translateY(0);
        }

        /* Шапка меню */
        .dropdown-header {
            padding: 24px 28px 16px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dropdown-title {
            color: #6d28d9;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .dropdown-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #7c3aed;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .dropdown-close:hover {
            background: rgba(139, 92, 246, 0.2);
            transform: rotate(90deg);
            color: #5b21b6;
        }

        /* Список категорий */
        .dropdown-list {
            padding: 20px 0;
            list-style: none;
        }

        .dropdown-item {
            opacity: 0;
            transform: translateY(-20px);
            animation: none;
        }

        .dropdown-menu.active .dropdown-item {
            animation: slideInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .dropdown-menu.active .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
        .dropdown-menu.active .dropdown-item:nth-child(2) { animation-delay: 0.2s; }
        .dropdown-menu.active .dropdown-item:nth-child(3) { animation-delay: 0.3s; }
        .dropdown-menu.active .dropdown-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            padding: 16px 28px;
            color: #6d28d9;
            text-decoration: none;
            font-size: 15px;
            position: relative;
            transition: all 0.3s ease;
            gap: 16px;
        }

        .dropdown-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 28px;
            right: 28px;
            height: 1px;
            background: rgba(139, 92, 246, 0.18);
        }

        .dropdown-link:hover {
            background: rgba(139, 92, 246, 0.06);
            color: #4c1d95;
            padding-left: 36px;
        }

        /* Номер категории */
        .cat-number {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: #7c3aed;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .dropdown-link:hover .cat-number {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.5);
            color: #fff;
            transform: scale(1.1);
        }

        /* Декоративная линия */
        .cat-line {
            flex: 1;
            height: 1px;
            background: rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cat-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #8b5cf6;
            transition: left 0.4s ease;
        }

        .dropdown-link:hover .cat-line::after {
            left: 0;
        }

        /* Иконка стрелки */
        .cat-arrow {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: #7c3aed;
        }

        .dropdown-link:hover .cat-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Нижний декор */
        .dropdown-footer {
            padding: 20px 28px;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            text-align: center;
        }

        .dropdown-footer-text {
            color: rgba(109, 40, 217, 0.5);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Декоративные точки */
        .dropdown-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.35);
            animation: pulse 2s infinite;
        }

        .dot:nth-child(2) { animation-delay: 0.3s; }
        .dot:nth-child(3) { animation-delay: 0.6s; }

        @keyframes pulse {
            0%, 100% { opacity: 0.35; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.3); }
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .dropdown-menu {
                width: 100% !important;
                max-width: none;
                min-width: auto;
            }

            .dropdown-header {
                padding: 20px 20px 12px;
            }

            .dropdown-link {
                padding: 14px 20px;
            }

            .dropdown-link::after {
                left: 20px;
                right: 20px;
            }

            .dropdown-footer {
                padding: 16px 20px;
            }
        }

        /* Анимация исчезновения */
        .dropdown-menu.closing {
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.55, 0, 1, 0.45);
        }

        .dropdown-menu.closing .dropdown-item {
            animation: slideOutUp 0.3s ease forwards;
        }

        .dropdown-menu.closing .dropdown-item:nth-child(1) { animation-delay: 0s; }
        .dropdown-menu.closing .dropdown-item:nth-child(2) { animation-delay: 0.05s; }
        .dropdown-menu.closing .dropdown-item:nth-child(3) { animation-delay: 0.1s; }
        .dropdown-menu.closing .dropdown-item:nth-child(4) { animation-delay: 0.15s; }

        @keyframes slideOutUp {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-15px);
            }
        }




/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 6px;
    border-radius: 28px;
    /* Двойной градиент для перетекания цвета */
    background: linear-gradient(90deg, #e8d5f2 50%, #c9a0dc 50%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: background-position 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.6s ease;
    box-shadow: 
        inset 0 2px 8px rgba(0,0,0,0.06),
        0 4px 20px rgba(138, 43, 226, 0.08);
    overflow: hidden;
}

/* Когда активен EN — фон сдвигается */
.language-switcher:has(.lang-link.active[data-lang="en"]) {
    background-position: 100% 0%;
    box-shadow: 
        inset 0 2px 8px rgba(0,0,0,0.08),
        0 4px 25px rgba(138, 43, 226, 0.15);
}

/* Внутреннее свечение, следящее за активным языком */
.language-switcher::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--glow-x, 25%) 50%, 
        rgba(255,255,255,0.5) 0%, 
        transparent 60%
    );
    transition: --glow-x 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 0;
}

.language-switcher:has(.lang-link.active[data-lang="en"])::before {
    --glow-x: 75%;
}

@property --glow-x {
    syntax: '<percentage>';
    initial-value: 25%;
    inherits: false;
}

/* ===== БЕГУНОК-ИНДИКАТОР ===== */
.language-switcher::after {
    content: '';
    position: absolute;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    border-radius: 22px;
    top: 6px;
    left: 6px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    pointer-events: none;
}

/* RU активен — бегунок слева, светлый фиолетовый */
.language-switcher:has(.lang-link.active[data-lang="ru"])::after {
    left: 6px;
    transform: translateX(0) rotate(0deg);
    background: linear-gradient(145deg, #c084fc, #a855f7);
    box-shadow: 
        0 4px 15px rgba(168, 85, 247, 0.35),
        0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* EN активен — бегунок справа, глубокий аметист */
.language-switcher:has(.lang-link.active[data-lang="en"])::after {
    left: calc(50% + 0px);
    transform: translateX(0) rotate(360deg);
    background: linear-gradient(145deg, #8b5cf6, #7c3aed);
    box-shadow: 
        0 4px 20px rgba(124, 58, 237, 0.4),
        0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* ===== ССЫЛКИ ===== */
.lang-link {
    position: relative;
    z-index: 2;
    display: block;
    padding: 12px 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: 50%;
    transition: color 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    user-select: none;
    color: #a78bfa; /* неактивный — приглушённый */
}

/* Разделитель | — скрываем оригинальный, рисуем свой */
.language-switcher {
    font-size: 0; /* убираем пробелы между inline-элементами */
}

.language-switcher .lang-link {
    font-size: 14px;
}

/* Активная ссылка — тёмно-фиолетовая */
.lang-link.active {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Неактивная при наведении */
.lang-link:not(.active):hover {
    color: #8b5cf6;
    transform: translateY(-1px);
}

/* ===== РАЗДЕЛИТЕЛЬ (опционально, если нужен визуально) ===== */
/* Можно добавить тонкую линию между, но в тоггле она обычно лишняя */

/* ===== ЭФФЕКТЫ ===== */
.language-switcher:hover {
    transform: translateY(-1px);
}

.language-switcher:active {
    transform: scale(0.98) translateY(0);
}

/* Блик на бегунке */
.language-switcher::after {
    position: absolute;
}

/* Псевдо-блик через доп. слой */
.language-switcher::after {
    overflow: hidden;
}

/* Микро-анимация текста при переключении */
.lang-link {
    transition: color 0.4s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.lang-link.active {
    letter-spacing: 0.6px;
}

/* ===== ЧАСТИЦЫ ПРИ КЛИКЕ (JS-генерируемые) ===== */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}