
        :root {
            --color-onyx-canvas: #f8f8f9;
            --color-graphite-card: #ffffff;
            --color-obsidian-button: #e8e8eb;
            --color-slate-border: #d0d0d5;
            --color-mist-border: #c0c0c8;
            --color-ash-text: #5a5a65;
            --color-ivory-text: #1a1a24;
            --color-cobalt: #5266eb;
            --color-pure-white: #ffffff;
            --color-accent-light: #6b7aff;
            --color-dark-elevated: #efeff2;
            --color-text-dark: #1a1a24;
            --color-text-medium: #4a4a55;
            --font-arcadia: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
            --font-arcadiadisplay: 'Crimson Pro', Georgia, serif;
            --spacing-32: 32px;
            --spacing-40: 40px;
            --spacing-72: 72px;
            --radius-cards: 12px;
            --radius-buttons: 32px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-arcadia);
            background-color: var(--color-onyx-canvas);
            color: var(--color-ivory-text);
            overflow-x: hidden;
            font-weight: 400;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-arcadiadisplay);
            font-weight: 500;
        }
        
        button, input, textarea, select {
            font-family: var(--font-arcadia);
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 480;
            color: var(--color-ivory-text);
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--color-ivory-text);
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--color-cobalt);
        }
        
        .cta-button {
            background: var(--color-cobalt);
            color: var(--color-pure-white);
            padding: 18px 40px;
            border-radius: 0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--color-cobalt);
            display: inline-block;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--color-pure-white);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--color-cobalt);
            border-color: var(--color-pure-white);
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        /* Hero Section with Video Parallax */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: 0;
        }
        
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            transition: transform 0.1s linear;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(23, 23, 33, 0.3);
            z-index: 1;
            transition: background 0.1s linear;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 0 80px;
            opacity: 0;
            transform: translateY(80px);
            transition: transform 0.1s linear, opacity 0.1s linear;
        }
        
        .hero-content.visible {
            animation: heroAppear 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        @keyframes heroAppear {
            0% {
                opacity: 0;
                transform: translateY(80px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-content h1 {
            font-family: var(--font-arcadiadisplay);
            font-size: 72px;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 28px;
            color: var(--color-pure-white);
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(40px);
        }
        
        .hero-content.visible h1 {
            animation: fadeInUpSlow 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }
        
        .hero-content p {
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            line-height: 1.5;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .hero-content.visible p {
            animation: fadeInUpSlow 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
        }
        
        .hero-content .cta-button {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .hero-content.visible .cta-button {
            animation: fadeInUpSlow 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
        }
        
        @keyframes fadeInUpSlow {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Slider Section - Offers/Promotions */
        .slider-section {
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            height: 80vh;
            min-height: 700px;
            overflow: hidden;
            z-index: 10;
        }
        
        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }
        
        .slider-slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        .slider-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 8s ease-out;
        }
        
        .slider-slide.active .slider-bg {
            transform: scale(1);
        }
        
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(23, 23, 33, 0.9) 0%, rgba(23, 23, 33, 0.3) 100%);
            z-index: 1;
        }
        
        .slider-content {
            position: relative;
            z-index: 2;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            align-items: center;
        }
        
        .slider-text {
            max-width: 600px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease 0.3s;
        }
        
        .slider-slide.active .slider-text {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slider-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--color-cobalt);
            color: var(--color-pure-white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        
        .slider-text h2 {
            font-family: var(--font-arcadiadisplay);
            font-size: 56px;
            font-weight: 500;
            line-height: 1.1;
            color: var(--color-pure-white);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        
        .slider-text p {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }
        
        .slider-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--color-cobalt);
            color: var(--color-pure-white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 2px solid var(--color-cobalt);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .slider-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--color-pure-white);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .slider-button:hover {
            color: var(--color-cobalt);
        }
        
        .slider-button:hover::before {
            left: 0;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 40px;
            right: 80px;
            z-index: 3;
            display: flex;
            gap: 16px;
        }
        
        .slider-nav {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--color-pure-white);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-nav:hover {
            background: var(--color-cobalt);
            border-color: var(--color-cobalt);
            transform: translateY(-2px);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 80px;
            z-index: 3;
            display: flex;
            gap: 12px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            width: 40px;
            background: var(--color-cobalt);
        }
        
        /* Categories Section - 3D Cards */
        .categories-section {
            padding: var(--spacing-72) 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            position: relative;
            z-index: 10;
            background: var(--color-onyx-canvas);
        }
        
        .categories-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 80px;
        }
        
        .section-title {
            font-family: var(--font-arcadiadisplay);
            font-size: 42px;
            font-weight: 480;
            text-align: center;
            margin-bottom: 56px;
            letter-spacing: 0.42px;
            line-height: 1.15;
            opacity: 0;
            transform: translateY(40px);
        }
        
        .section-title.visible {
            animation: titleAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        @keyframes titleAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }
        
        .category-card {
            position: relative;
            height: 400px;
            border-radius: var(--radius-cards);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            opacity: 0;
            transform: translateY(60px);
        }
        
        .category-card.visible {
            animation: slideUpFade 0.8s ease-out forwards;
        }
        
        .category-card:nth-child(1) { animation-delay: 0.1s; }
        .category-card:nth-child(2) { animation-delay: 0.2s; }
        .category-card:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
            transition: background 0.5s ease;
        }
        
        .category-card:hover::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
        }
        
        .category-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }
        
        .category-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .category-card:hover .category-bg {
            transform: scale(1.1);
        }
        
        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 0;
            height: 120px;
            overflow: hidden;
            transition: height 0.5s ease;
        }
        
        .category-card:hover .category-content {
            height: 180px;
        }
        
        .category-card h3 {
            font-size: 28px;
            font-weight: 500;
            color: #fff;
            margin: 0;
            transform: translateY(0);
            transition: transform 0.5s ease;
        }
        
        .category-card:hover h3 {
            transform: translateY(-10px);
        }
        
        .category-card p {
            font-size: 16px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            margin-top: 16px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .category-card:hover p {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* About Section - Unique Design */
        .about-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            background: #ffffff;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            z-index: 10;
        }
        
        .about-label {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 80px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #6b7aff;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
        }
        
        .about-label.visible {
            animation: fadeInDown 0.8s ease-out forwards;
        }
        
        @keyframes fadeInDown {
            to {
                opacity: 1;
            }
        }
        
        .about-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #6b7aff;
            border-radius: 50%;
        }
        
        .about-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 80px;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 120px;
            align-items: start;
        }
        
        .about-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }
        
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            z-index: 2;
            transform-origin: left;
        }
        
        .about-image-wrapper.visible::before {
            animation: revealOverlay 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        
        @keyframes revealOverlay {
            to {
                transform: translateX(100%);
            }
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            transform: scale(1.2);
        }
        
        .about-image-wrapper.visible .about-image img {
            animation: imageScale 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        
        @keyframes imageScale {
            to {
                transform: scale(1);
            }
        }
        
        .about-content {
            padding-top: 20px;
        }
        
        .about-content h2 {
            font-family: var(--font-arcadiadisplay);
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
            line-height: 1.15;
            color: #1a1a24;
            opacity: 0;
        }
        
        .about-content.visible h2 {
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .about-text-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .about-text-columns p {
            font-size: 15px;
            line-height: 1.7;
            color: #5a5a65;
            opacity: 0;
        }
        
        .about-content.visible .about-text-columns p:nth-child(1) {
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }
        
        .about-content.visible .about-text-columns p:nth-child(2) {
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }
        
        .about-cta {
            opacity: 0;
        }
        
        .about-content.visible .about-cta {
            animation: fadeInUp 0.8s ease-out 0.9s forwards;
        }
        
        .about-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: #5266eb;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 0;
            border: 2px solid #5266eb;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .about-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fff;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .about-button:hover {
            color: #5266eb;
        }
        
        .about-button:hover::before {
            left: 0;
        }
        
        .about-button svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        
        /* USP Section - Full Width */
        .usp-section {
            padding: 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            position: relative;
            background-color: #fff;
            overflow: hidden;
            z-index: 10;
        }
        
        .usp-container {
            max-width: 100%;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .usp-item {
            min-height: 500px;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
        }
        
        .usp-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: inherit;
            transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }
        
        .usp-item.visible::before {
            left: 100%;
        }
        
        .usp-item.visible {
            animation: uspReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        
        .usp-item:nth-child(1) { 
            background: #f5f7ff;
            animation-delay: 0.1s; 
        }
        
        .usp-item:nth-child(1)::before {
            background: #f5f7ff;
        }
        
        .usp-item:nth-child(1) .usp-number,
        .usp-item:nth-child(1) h3,
        .usp-item:nth-child(1) p {
            color: #1a1a24;
        }
        
        .usp-item:nth-child(2) { 
            background: #ffffff;
            animation-delay: 0.3s; 
            border-left: 1px solid rgba(0, 0, 0, 0.06);
            border-right: 1px solid rgba(0, 0, 0, 0.06);
        }
        
        .usp-item:nth-child(2)::before {
            background: #ffffff;
        }
        
        .usp-item:nth-child(2) .usp-number,
        .usp-item:nth-child(2) h3,
        .usp-item:nth-child(2) p {
            color: #1a1a24;
        }
        
        .usp-item:nth-child(3) { 
            background: #f8f9fa;
            animation-delay: 0.5s; 
        }
        
        .usp-item:nth-child(3)::before {
            background: #f8f9fa;
        }
        
        .usp-item:nth-child(3) .usp-number,
        .usp-item:nth-child(3) h3,
        .usp-item:nth-child(3) p {
            color: #1a1a24;
        }
        
        @keyframes uspReveal {
            to {
                opacity: 1;
            }
        }
        
        .usp-number {
            font-family: var(--font-arcadia);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 40px;
        }
        
        .usp-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .usp-icon svg {
            width: 100px;
            height: 100px;
            stroke-width: 1;
            opacity: 1;
            transform: scale(0.8);
        }
        
        .usp-item.visible .usp-icon svg {
            animation: drawStroke 10s ease-out 0.4s forwards;
        }
        
    
        
        @keyframes drawStroke {
            from {
                stroke-dasharray: 1000;
                stroke-dashoffset: 1000;
            }
            to {
                stroke-dasharray: 1000;
                stroke-dashoffset: 0;
            }
        }
        
        .usp-item:nth-child(1) .usp-icon svg {
            stroke: #6b7aff;
            fill: none;
        }
        
        .usp-item:nth-child(2) .usp-icon svg {
            stroke: #8b9bff;
            fill: none;
        }
        
        .usp-item:nth-child(3) .usp-icon svg {
            stroke: #5266eb;
            fill: none;
        }
        
        .usp-item h3 {
            font-family: var(--font-arcadiadisplay);
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .usp-item p {
            font-size: 16px;
            line-height: 1.6;
            max-width: 400px;
        }
        
        /* Products Section - Full Width */
        .products-section {
            padding: var(--spacing-72) 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: var(--color-onyx-canvas);
            z-index: 10;
            position: relative;
        }
        
        .products-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 80px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 56px;
        }
        
        .product-card {
            background: var(--color-graphite-card);
            border-radius: var(--radius-cards);
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.9);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        
        .product-card.visible {
            animation: scaleIn 0.6s ease-out forwards;
        }
        
        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(82, 102, 235, 0.2);
        }
        
        .product-image {
            width: 100%;
            height: 280px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2a2a3a, #1e1e2a);
        }
        
        .product-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--color-cobalt);
            color: var(--color-pure-white);
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            z-index: 2;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        
        .product-info {
            padding: 28px 24px;
        }
        
        .product-category {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-cobalt);
            margin-bottom: 12px;
        }
        
        .product-info h3 {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 12px;
            line-height: 1.3;
            color: var(--color-ivory-text);
        }
        
        .product-price {
            font-family: var(--font-arcadiadisplay);
            font-size: 32px;
            font-weight: 600;
            color: var(--color-cobalt);
            margin-bottom: 12px;
        }
        
        .product-description {
            font-size: 14px;
            color: var(--color-ash-text);
            line-height: 1.6;
            margin-bottom: 24px;
            min-height: 60px;
        }
        
        .product-actions {
            display: flex;
            gap: 12px;
        }
        
        .product-button {
            flex: 1;
            padding: 14px;
            background: transparent;
            border: 2px solid var(--color-mist-border);
            color: var(--color-ivory-text);
            border-radius: 0;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .product-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--color-cobalt);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .product-button:hover {
            color: var(--color-pure-white);
            border-color: var(--color-cobalt);
        }
        
        .product-button:hover::before {
            left: 0;
        }
        
        .product-button.primary {
            background: var(--color-cobalt);
            border-color: var(--color-cobalt);
            color: var(--color-pure-white);
        }
        
        .product-button.primary::before {
            background: var(--color-pure-white);
        }
        
        .product-button.primary:hover {
            color: var(--color-cobalt);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: var(--spacing-72) 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: var(--color-onyx-canvas);
            position: relative;
            z-index: 10;
            overflow: hidden;
        }
        
        .faq-container {
            max-width: 100%;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 0.8fr;
            gap: 0;
            align-items: start;
        }
        
        .faq-content {
            padding: 0 80px 0 80px;
        }
        
        .faq-section .section-title {
            margin-bottom: 56px;
            text-align: left;
        }
        
        .faq-image-wrapper {
            position: sticky;
            top: 120px;
            height: 600px;
            overflow: hidden;
            position: relative;
        }
        
        .faq-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--color-onyx-canvas);
            z-index: 2;
            transform-origin: left;
        }
        
        .faq-image-wrapper.visible::before {
            animation: revealOverlayRight 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        
        @keyframes revealOverlayRight {
            to {
                transform: translateX(100%);
            }
        }
        
        .faq-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.2);
        }
        
        .faq-image-wrapper.visible img {
            animation: imageScaleFaq 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }
        
        @keyframes imageScaleFaq {
            to {
                transform: scale(1);
            }
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .faq-item {
            background: var(--color-graphite-card);
            border-radius: var(--radius-cards);
            overflow: hidden;
            opacity: 0;
            transform: translateX(-50px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        
        .faq-item.visible {
            animation: slideInLeft 0.6s ease-out forwards;
        }
        
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .faq-item:hover {
            border-color: rgba(82, 102, 235, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--color-obsidian-button);
        }
        
        .faq-question h3 {
            font-size: 18px;
            font-weight: 500;
            color: var(--color-ivory-text);
        }
        
        .faq-toggle {
            font-size: 24px;
            color: var(--color-cobalt);
            transition: transform 0.3s ease;
            min-width: 24px;
            text-align: center;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 32px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 24px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-ash-text);
        }
        
        .faq-item {
            background: var(--color-graphite-card);
            border-radius: var(--radius-cards);
            margin-bottom: 16px;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .faq-item.visible {
            animation: slideInLeft 0.6s ease-out forwards;
        }
        
        .faq-item:nth-child(2) { animation-delay: 0.1s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }
        .faq-item:nth-child(4) { animation-delay: 0.3s; }
        .faq-item:nth-child(5) { animation-delay: 0.4s; }
        
        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--color-obsidian-button);
        }
        
        .faq-question h3 {
            font-size: 18px;
            font-weight: 480;
        }
        
        .faq-toggle {
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 32px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 24px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.5;
            color: var(--color-ash-text);
        }
        
        /* Conversion Block */
        .conversion-section {
            padding: 0;
            background: var(--color-onyx-canvas);
            text-align: center;
            position: relative;
            z-index: 10;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .conversion-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }
        
        .conversion-map {
            position: relative;
            overflow: hidden;
        }
        
        .conversion-map iframe {
            width: 100%;
            height: 100%;
            min-height: 600px;
            border: none;
            display: block;
        }
        
        .conversion-content {
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            background: var(--color-graphite-card);
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
        }
        
        .conversion-content h2 {
            font-family: var(--font-arcadiadisplay);
            font-size: 42px;
            font-weight: 500;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
            color: var(--color-ivory-text);
        }
        
        .conversion-content p {
            font-size: 18px;
            color: var(--color-ash-text);
            margin-bottom: 40px;
            line-height: 1.5;
        }
        
        .conversion-phone {
            font-family: var(--font-arcadiadisplay);
            font-size: 32px;
            font-weight: 500;
            color: var(--color-cobalt);
            margin-bottom: 32px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .conversion-phone:hover {
            color: var(--color-accent-light);
        }
        
        .conversion-buttons {
            display: flex;
            gap: 16px;
            width: 100%;
        }
        
        .conversion-button {
            padding: 18px 48px;
            background: var(--color-cobalt);
            color: var(--color-pure-white);
            border: 2px solid var(--color-cobalt);
            border-radius: 0;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .conversion-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--color-pure-white);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .conversion-button:hover {
            color: var(--color-cobalt);
        }
        
        .conversion-button:hover::before {
            left: 0;
        }
        
        .conversion-button.secondary {
            background: transparent;
            border: 2px solid var(--color-mist-border);
            color: var(--color-ivory-text);
        }
        
        .conversion-button.secondary::before {
            background: var(--color-obsidian-button);
        }
        
        .conversion-button.secondary:hover {
            color: var(--color-ivory-text);
            border-color: var(--color-ivory-text);
        }
        
        /* Footer */
        footer {
            background: var(--color-graphite-card);
            padding: 56px 40px 32px;
            position: relative;
            z-index: 10;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            font-weight: 480;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: var(--color-ash-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--color-ivory-text);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--color-slate-border);
            text-align: center;
            color: var(--color-ash-text);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .usp-container,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .usp-item {
                min-height: 400px;
                padding: 60px 40px;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 0 40px;
            }
            
            .about-text-columns {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 42px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .slider-section {
                height: 70vh;
                min-height: 500px;
            }
            
            .slider-content {
                padding: 0 40px;
            }
            
            .slider-text h2 {
                font-size: 36px;
            }
            
            .slider-controls {
                right: 40px;
                bottom: 30px;
            }
            
            .slider-dots {
                left: 40px;
                bottom: 30px;
            }
            
            .slider-nav {
                width: 50px;
                height: 50px;
            }
            
            .categories-grid,
            .usp-container,
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-container {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 0 40px;
            }
            
            .faq-content {
                padding: 0;
            }
            
            .faq-image-wrapper {
                position: relative;
                top: 0;
                height: 400px;
            }
            
            .faq-section .section-title {
                text-align: center;
            }
            
            .usp-item {
                min-height: 350px;
                padding: 50px 30px;
            }
            
            .nav-links {
                display: none;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .conversion-wrapper {
                grid-template-columns: 1fr;
            }
            
            .conversion-map {
                min-height: 400px;
            }
            
            .conversion-map iframe {
                min-height: 400px;
            }
            
            .conversion-content {
                padding: 60px 40px;
            }
            
            .conversion-content h2 {
                font-size: 32px;
            }
            
            .conversion-buttons {
                flex-direction: column;
            }
        }
