* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0A0A0A;
    --secondary-bg: #141414;
    --tertiary-bg: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-tertiary: #6B6B6B;
    --text-muted: #4A4A4A;
    --accent-primary: #E8E8E8;
    --accent-secondary: #C0C0C0;
    --accent-tertiary: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-primary);
}

.logo span {
    color: var(--accent-secondary);
}

.nav {
    display: flex;
    gap: 48px;
}

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-language {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
}

.cart-icon {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--accent-primary);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
}

.btn-language:hover {
    border-color: var(--accent-primary);
}

.btn-language svg {
    transition: transform 0.3s ease;
}

.btn-language:hover svg {
    transform: rotate(180deg);
}

.language-selector {
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    min-width: 160px;
    display: none;
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 12px 16px;
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--tertiary-bg);
    color: var(--accent-primary);
}

.lang-option.active {
    background: var(--tertiary-bg);
    color: var(--accent-primary);
}

.btn-primary {
    display: inline-block;
    background: #FFFFFF !important;
    color: #0A0A0A !important;
    padding: 14px 28px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #E8E8E8 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #E8E8E8;
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition);
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
    line-height: 1.2;
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-secondary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

/* Organic Liquid Metal Shape */
.hero-3d-object {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    perspective: 1500px;
    z-index: 1;
}

/* Liquid Metal Container - Completely Organic */
.liquid-metal-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
}

/* Main Liquid Mass - Fluid, organic shape */
.liquid-mass {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    animation: liquidRotate 20s linear infinite;
}

/* Liquid Layers - Overlapping organic blobs */
.liquid-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(0.5px);
}

.layer-1 {
    width: 200px;
    height: 180px;
    background: linear-gradient(135deg,
        rgba(230, 230, 235, 0.95) 0%,
        rgba(200, 200, 210, 0.9) 25%,
        rgba(180, 180, 190, 0.85) 50%,
        rgba(160, 160, 170, 0.9) 75%,
        rgba(140, 140, 150, 0.95) 100%);
    box-shadow: 
        inset -20px -20px 50px rgba(0, 0, 0, 0.4),
        inset 20px 20px 50px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(200, 200, 210, 0.4),
        0 0 100px rgba(180, 180, 190, 0.2);
    animation: liquidMorph1 8s ease-in-out infinite;
}

.layer-2 {
    width: 170px;
    height: 190px;
    background: linear-gradient(225deg,
        rgba(220, 220, 230, 0.9) 0%,
        rgba(190, 190, 200, 0.85) 30%,
        rgba(170, 170, 180, 0.8) 60%,
        rgba(150, 150, 160, 0.85) 100%);
    box-shadow: 
        inset -15px -15px 40px rgba(0, 0, 0, 0.35),
        inset 15px 15px 40px rgba(255, 255, 255, 0.35);
    animation: liquidMorph2 9s ease-in-out infinite;
    animation-delay: -2s;
}

.layer-3 {
    width: 150px;
    height: 160px;
    background: linear-gradient(45deg,
        rgba(240, 240, 245, 0.85) 0%,
        rgba(210, 210, 220, 0.8) 40%,
        rgba(190, 190, 200, 0.75) 100%);
    box-shadow: 
        inset -10px -10px 30px rgba(0, 0, 0, 0.3),
        inset 10px 10px 30px rgba(255, 255, 255, 0.3);
    animation: liquidMorph3 7s ease-in-out infinite;
    animation-delay: -4s;
}

.layer-4 {
    width: 130px;
    height: 140px;
    background: radial-gradient(ellipse at 30% 30%,
        rgba(250, 250, 255, 0.9) 0%,
        rgba(220, 220, 230, 0.8) 50%,
        rgba(200, 200, 210, 0.7) 100%);
    animation: liquidMorph4 10s ease-in-out infinite;
    animation-delay: -1s;
}

.layer-5 {
    width: 100px;
    height: 110px;
    background: radial-gradient(ellipse at 70% 70%,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(230, 230, 240, 0.85) 40%,
        rgba(210, 210, 220, 0.75) 100%);
    animation: liquidMorph5 6s ease-in-out infinite;
    animation-delay: -3s;
}

/* Fluid Currents - Internal flowing motion */
.fluid-currents {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.current {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    filter: blur(3px);
}

.c1 {
    width: 120px;
    height: 8px;
    top: 30%;
    left: 20%;
    animation: currentFlow1 4s ease-in-out infinite;
}

.c2 {
    width: 100px;
    height: 6px;
    top: 60%;
    left: 40%;
    animation: currentFlow2 5s ease-in-out infinite;
    animation-delay: -1s;
}

.c3 {
    width: 80px;
    height: 5px;
    top: 45%;
    left: 10%;
    animation: currentFlow3 3.5s ease-in-out infinite;
    animation-delay: -2s;
}

.c4 {
    width: 90px;
    height: 7px;
    top: 70%;
    left: 25%;
    animation: currentFlow4 4.5s ease-in-out infinite;
    animation-delay: -0.5s;
}

/* Chrome Highlights - Reflective surface glints */
.chrome-highlights {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    pointer-events: none;
}

.chrome {
    position: absolute;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        transparent 100%);
    filter: blur(2px);
    border-radius: 50%;
}

.chrome-1 {
    width: 40px;
    height: 25px;
    top: 15%;
    left: 20%;
    animation: chromeShift1 3s ease-in-out infinite;
}

.chrome-2 {
    width: 30px;
    height: 35px;
    top: 55%;
    left: 65%;
    animation: chromeShift2 4s ease-in-out infinite;
    animation-delay: -1s;
}

.chrome-3 {
    width: 25px;
    height: 20px;
    top: 35%;
    left: 70%;
    animation: chromeShift3 3.5s ease-in-out infinite;
    animation-delay: -2s;
}

.chrome-4 {
    width: 35px;
    height: 15px;
    top: 70%;
    left: 30%;
    animation: chromeShift4 5s ease-in-out infinite;
    animation-delay: -0.5s;
}

.chrome-5 {
    width: 20px;
    height: 30px;
    top: 25%;
    left: 55%;
    animation: chromeShift5 4.5s ease-in-out infinite;
    animation-delay: -1.5s;
}

/* Metallic Sheen Overlay */
.metallic-sheen {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 60deg,
        rgba(255, 255, 255, 0.2) 120deg,
        rgba(255, 255, 255, 0.1) 180deg,
        transparent 240deg,
        rgba(255, 255, 255, 0.15) 300deg,
        transparent 360deg);
    animation: sheenRotate 10s linear infinite;
    pointer-events: none;
}

/* Orbiting Droplets */
.orbit-droplets {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.droplet {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.95),
        rgba(220, 220, 230, 0.8) 40%,
        rgba(200, 200, 210, 0.6) 100%);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(200, 200, 210, 0.3);
}

.d1 { width: 15px; height: 18px; animation: dropletOrbit1 12s ease-in-out infinite; }
.d2 { width: 12px; height: 14px; animation: dropletOrbit2 14s ease-in-out infinite; animation-delay: -2s; }
.d3 { width: 18px; height: 16px; animation: dropletOrbit3 10s ease-in-out infinite; animation-delay: -4s; }
.d4 { width: 10px; height: 12px; animation: dropletOrbit4 16s ease-in-out infinite; animation-delay: -1s; }
.d5 { width: 14px; height: 15px; animation: dropletOrbit5 11s ease-in-out infinite; animation-delay: -3s; }
.d6 { width: 11px; height: 13px; animation: dropletOrbit6 13s ease-in-out infinite; animation-delay: -5s; }

/* Energy Waves */
.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(200, 200, 210, 0.15);
    transform: translate(-50%, -50%);
}

.w1 {
    width: 350px;
    height: 350px;
    animation: waveExpand1 6s ease-out infinite;
}

.w2 {
    width: 350px;
    height: 350px;
    animation: waveExpand2 6s ease-out infinite;
    animation-delay: -2s;
}

.w3 {
    width: 350px;
    height: 350px;
    animation: waveExpand3 6s ease-out infinite;
    animation-delay: -4s;
}

/* Sparkle Particles */
.sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.8);
}

.s1 { animation: sparkle1 3s ease-in-out infinite; }
.s2 { animation: sparkle2 4s ease-in-out infinite; animation-delay: -0.5s; }
.s3 { animation: sparkle3 3.5s ease-in-out infinite; animation-delay: -1s; }
.s4 { animation: sparkle4 5s ease-in-out infinite; animation-delay: -1.5s; }
.s5 { animation: sparkle5 4.5s ease-in-out infinite; animation-delay: -2s; }
.s6 { animation: sparkle6 3.8s ease-in-out infinite; animation-delay: -2.5s; }
.s7 { animation: sparkle7 4.2s ease-in-out infinite; animation-delay: -3s; }
.s8 { animation: sparkle8 3.3s ease-in-out infinite; animation-delay: -3.5s; }

/* Animations - All Organic, No Square Shapes */
@keyframes liquidRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(10deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg) rotateX(10deg); }
}

@keyframes liquidMorph1 {
    0%, 100% { 
        border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    25% { 
        border-radius: 45% 55% 40% 60% / 50% 60% 45% 55%;
        transform: translate(-50%, -50%) scale(1.05) rotate(5deg);
    }
    50% { 
        border-radius: 55% 45% 60% 40% / 45% 55% 50% 60%;
        transform: translate(-50%, -50%) scale(0.98) rotate(-3deg);
    }
    75% { 
        border-radius: 50% 50% 45% 55% / 60% 40% 55% 45%;
        transform: translate(-50%, -50%) scale(1.02) rotate(2deg);
    }
}

@keyframes liquidMorph2 {
    0%, 100% { 
        border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    33% { 
        border-radius: 55% 45% 45% 55% / 45% 55% 50% 50%;
        transform: translate(-50%, -50%) scale(1.08) rotate(-8deg);
    }
    66% { 
        border-radius: 50% 50% 55% 45% / 55% 50% 45% 55%;
        transform: translate(-50%, -50%) scale(0.95) rotate(6deg);
    }
}

@keyframes liquidMorph3 {
    0%, 100% { 
        border-radius: 55% 45% 60% 40% / 60% 40% 55% 45%;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% { 
        border-radius: 40% 60% 45% 55% / 50% 55% 45% 60%;
        transform: translate(-50%, -50%) scale(1.06) rotate(10deg);
    }
}

@keyframes liquidMorph4 {
    0%, 100% { 
        border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    25% { 
        border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
        transform: translate(-50%, -50%) scale(1.04) rotate(-5deg);
    }
    75% { 
        border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
        transform: translate(-50%, -50%) scale(0.97) rotate(8deg);
    }
}

@keyframes liquidMorph5 {
    0%, 100% { 
        border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% { 
        border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
        transform: translate(-50%, -50%) scale(1.1) rotate(-12deg);
    }
}

@keyframes currentFlow1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(30px, 10px) rotate(180deg); opacity: 0.6; }
}

@keyframes currentFlow2 {
    0%, 100% { transform: translate(0, 0) rotate(45deg); opacity: 0.4; }
    50% { transform: translate(-20px, 20px) rotate(225deg); opacity: 0.7; }
}

@keyframes currentFlow3 {
    0%, 100% { transform: translate(0, 0) rotate(-30deg); opacity: 0.35; }
    50% { transform: translate(25px, -15px) rotate(150deg); opacity: 0.65; }
}

@keyframes currentFlow4 {
    0%, 100% { transform: translate(0, 0) rotate(60deg); opacity: 0.25; }
    50% { transform: translate(-15px, -25px) rotate(240deg); opacity: 0.55; }
}

@keyframes chromeShift1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(15px, -8px) scale(1.2); opacity: 0.5; }
}

@keyframes chromeShift2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-12px, 15px) scale(0.9); opacity: 0.9; }
}

@keyframes chromeShift3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(10px, 12px) scale(1.15); opacity: 0.4; }
}

@keyframes chromeShift4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    50% { transform: translate(-8px, -10px) scale(1.1); opacity: 0.45; }
}

@keyframes chromeShift5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
    50% { transform: translate(18px, 5px) scale(0.85); opacity: 0.85; }
}

@keyframes sheenRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dropletOrbit1 {
    0%, 100% { transform: translate(-50%, -50%) translateX(140px) translateY(20px) scale(1); }
    25% { transform: translate(-50%, -50%) translateX(100px) translateY(-60px) scale(1.2); }
    50% { transform: translate(-50%, -50%) translateX(60px) translateY(10px) scale(0.9); }
    75% { transform: translate(-50%, -50%) translateX(100px) translateY(70px) scale(1.1); }
}

@keyframes dropletOrbit2 {
    0%, 100% { transform: translate(-50%, -50%) translateX(-120px) translateY(40px) scale(1); }
    33% { transform: translate(-50%, -50%) translateX(-80px) translateY(-80px) scale(1.15); }
    66% { transform: translate(-50%, -50%) translateX(-140px) translateY(-20px) scale(0.85); }
}

@keyframes dropletOrbit3 {
    0%, 100% { transform: translate(-50%, -50%) translateY(-130px) translateX(60px) scale(1); }
    50% { transform: translate(-50%, -50%) translateY(-80px) translateX(-50px) scale(1.2); }
}

@keyframes dropletOrbit4 {
    0%, 100% { transform: translate(-50%, -50%) translateY(110px) translateX(-70px) scale(1); }
    50% { transform: translate(-50%, -50%) translateY(160px) translateX(40px) scale(0.9); }
}

@keyframes dropletOrbit5 {
    0%, 100% { transform: translate(-50%, -50%) translateX(80px) translateY(100px) scale(1); }
    25% { transform: translate(-50%, -50%) translateX(120px) translateY(60px) scale(1.1); }
    75% { transform: translate(-50%, -50%) translateX(40px) translateY(140px) scale(0.95); }
}

@keyframes dropletOrbit6 {
    0%, 100% { transform: translate(-50%, -50%) translateX(-100px) translateY(-90px) scale(1); }
    50% { transform: translate(-50%, -50%) translateX(-140px) translateY(-130px) scale(1.25); }
}

@keyframes waveExpand1 {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.4; border-width: 3px; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; border-width: 0; }
}

@keyframes waveExpand2 {
    0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0.3; border-width: 2px; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; border-width: 0; }
}

@keyframes waveExpand3 {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.35; border-width: 2px; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; border-width: 0; }
}

@keyframes sparkle1 {
    0%, 100% { transform: translate(-50%, -50%) translateX(100px) translateY(-50px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateX(120px) translateY(-70px) scale(1); opacity: 1; }
}

@keyframes sparkle2 {
    0%, 100% { transform: translate(-50%, -50%) translateX(-80px) translateY(60px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateX(-100px) translateY(80px) scale(1); opacity: 1; }
}

@keyframes sparkle3 {
    0%, 100% { transform: translate(-50%, -50%) translateY(-100px) translateX(-40px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateY(-120px) translateX(-60px) scale(1); opacity: 1; }
}

@keyframes sparkle4 {
    0%, 100% { transform: translate(-50%, -50%) translateY(80px) translateX(70px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateY(100px) translateX(90px) scale(1); opacity: 1; }
}

@keyframes sparkle5 {
    0%, 100% { transform: translate(-50%, -50%) translateX(60px) translateY(90px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateX(80px) translateY(110px) scale(1); opacity: 1; }
}

@keyframes sparkle6 {
    0%, 100% { transform: translate(-50%, -50%) translateX(-100px) translateY(-70px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateX(-120px) translateY(-90px) scale(1); opacity: 1; }
}

@keyframes sparkle7 {
    0%, 100% { transform: translate(-50%, -50%) translateY(50px) translateX(-90px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateY(70px) translateX(-110px) scale(1); opacity: 1; }
}

@keyframes sparkle8 {
    0%, 100% { transform: translate(-50%, -50%) translateX(90px) translateY(30px) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) translateX(110px) translateY(50px) scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-3d-object {
        width: 400px;
        height: 400px;
        right: 5%;
    }
    
    .liquid-mass {
        width: 180px;
        height: 180px;
    }
    
    .liquid-layer {
        transform: translate(-50%, -50%) scale(0.85);
    }
    
    .metallic-sheen {
        width: 150px;
        height: 150px;
    }
    
    .wave {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-3d-object {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translate(50%, -10%);
        opacity: 0.4;
    }
    
    .liquid-mass {
        width: 140px;
        height: 140px;
    }
    
    .liquid-layer {
        transform: translate(-50%, -50%) scale(0.7);
    }
    
    .metallic-sheen {
        width: 120px;
        height: 120px;
    }
    
    .wave {
        width: 220px;
        height: 220px;
    }
    
    .chrome {
        transform: scale(0.8);
    }
    
    .droplet {
        transform: scale(0.7);
    }
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-100px) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    margin-bottom: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.title-accent {
    font-style: italic;
    color: var(--accent-secondary);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-tertiary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    animation: scrollLine 2s infinite;
}

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

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

.section-label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary));
}

.section-label::before {
    right: calc(100% + 16px);
}

.section-label::after {
    left: calc(100% + 16px);
    background: linear-gradient(90deg, var(--accent-secondary), transparent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.works {
    padding: 120px 0;
    background: var(--primary-bg);
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #E8E8E8;
    color: #E8E8E8 !important;
    padding: 10px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    line-height: 1.2;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

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

.work-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.work-item.large {
    grid-column: span 2;
}

.work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.work-item.large .work-image {
    aspect-ratio: 16/9;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 10, 10, 0.3) 50%, 
        rgba(10, 10, 10, 0.95) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-info {
    transform: translateY(20px);
    transition: var(--transition);
}

.work-item:hover .work-info {
    transform: translateY(0);
}

.work-category {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 12px;
    padding: 4px 12px;
    border: 1px solid var(--accent-primary);
}

.work-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-style: italic;
}

.work-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.work-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

.work-link:hover {
    color: var(--text-primary);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 10;
}

.product-badge.hot {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.product-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-badge.custom {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-primary);
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-add-cart {
    flex: 1;
    background: transparent;
    border: 1px solid #E8E8E8;
    color: #E8E8E8 !important;
    padding: 10px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
    line-height: 1.2;
}

.btn-add-cart:hover {
    background: #E8E8E8;
    color: #0A0A0A !important;
}

.btn-buy-now {
    flex: 1;
    background: #FFFFFF !important;
    border: none;
    color: #0A0A0A !important;
    padding: 10px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    line-height: 1.2;
    display: inline-block;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-inquiry {
    flex: 1;
    background: transparent;
    border: 1px solid #E8E8E8;
    color: #E8E8E8 !important;
    padding: 10px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    line-height: 1.2;
}

.btn-inquiry:hover {
    background: #E8E8E8;
    color: #0A0A0A !important;
}

.works-cta {
    text-align: center;
    margin-top: 60px;
}

.services {
    padding: 120px 0;
    background: var(--primary-bg);
}

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

.service-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 48px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
}

.service-card.featured {
    border-color: var(--accent-secondary);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
}

.service-icon {
    margin-bottom: 32px;
    color: var(--accent-secondary);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-tertiary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.service-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--text-primary);
    gap: 12px;
}

.process {
    padding: 120px 0;
    background: var(--secondary-bg);
}

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

.process-step {
    position: relative;
    padding: 32px;
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--accent-secondary);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--accent-secondary);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 24px;
}

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

.step-icon {
    margin-bottom: 24px;
    color: var(--accent-primary);
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
}

.features {
    padding: 120px 0;
    background: var(--secondary-bg);
}

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

.feature-card {
    padding: 40px;
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-8px);
}

.feature-icon {
    margin-bottom: 24px;
    color: var(--accent-secondary);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about {
    padding: 120px 0;
    background: var(--primary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 13px;
    color: var(--text-tertiary);
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
}

.visual-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
}

.contact {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-primary);
}

.contact-form {
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.btn-submit {
    width: 100%;
    background: #FFFFFF !important;
    color: #0A0A0A !important;
    padding: 18px 40px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    line-height: 1.2;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-tertiary);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--secondary-bg);
    border-left: 1px solid var(--border-color);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--accent-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
}

.cart-empty svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 14px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.cart-item-price {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quantity-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.cart-item-quantity span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-primary);
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #FF6B6B;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--primary-bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-primary);
}

.btn-checkout {
    width: 100%;
    background: #FFFFFF !important;
    border: none;
    color: #0A0A0A !important;
    padding: 16px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    line-height: 1.2;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-item.large {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .header-inner {
        padding: 0 24px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item.large {
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-features {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
