/* ============================================
   DEMONIC BLACK & WHITE LIQUID GLASS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Natural Premium Palette */
    --color-black: #2c2416;
    --color-black-soft: #3d3428;
    --color-black-light: #4a4032;
    --color-white: #ffffff;
    --color-white-soft: #faf9f7;
    --color-beige: #f5f1eb;
    --color-beige-dark: #e8e3db;
    --color-amber: #8b6f47;
    --color-amber-dark: #6b5435;
    --color-amber-light: #c9a961;
    --color-green: #5a6b4f;
    --color-green-dark: #3d4a35;
    --color-grey-dark: #4a4a4a;
    --color-grey: #6b6b6b;
    --color-grey-light: #999999;
    --color-grey-lighter: #cccccc;
    
    /* Premium Accents */
    --color-gold: #d4af37;
    --color-gold-light: #f4e4bc;
    --color-gold-dark: #b8941e;
    --color-taupe: #8b7355;
    --color-taupe-dark: #6b5a42;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing - Reduced for better desktop fit */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.2rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-beige);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ============================================
   LIQUID GLASS BACKGROUND
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: var(--color-black);
    top: -300px;
    left: -300px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--color-black);
    bottom: -200px;
    right: -200px;
}

.blob-3 {
    width: 700px;
    height: 700px;
    background: var(--color-black);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* ============================================
   LIQUID GLASSMORPHISM EFFECTS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 24px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    display: none;
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

/* ============================================
   HEADER - LIQUID GLASS
   ============================================ */
.header {
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(139, 111, 71, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(250, 249, 247, 0.99);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(139, 111, 71, 0.15);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.875rem;
    color: var(--color-grey);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.lang-toggle,
.cta-button {
    padding: 12px 28px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    color: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.cta-button.primary:hover {
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* Navigation Tabs - Black & White */
.nav-tabs {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    justify-content: space-between;
    width: 100%;
}

.nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(139, 111, 71, 0.1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
}

.nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.5s ease;
}

.nav-tab:hover::before {
    left: 100%;
}

.nav-tab-beige,
.nav-tab-blue,
.nav-tab-purple,
.nav-tab-green {
    background: rgba(0, 0, 0, 0.03);
}

.nav-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.nav-tab.active {
    background: rgba(139, 111, 71, 0.1);
    border-color: rgba(139, 111, 71, 0.3);
    box-shadow: 
        0 4px 16px rgba(139, 111, 71, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    font-weight: 600;
    color: var(--color-amber-dark);
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-amber) 50%, transparent 100%);
}

/* ============================================
   HERO SECTION - STATE OF THE ART
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-white) 100%);
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 111, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-amber-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 20s infinite ease-in-out;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

.hero-particles .particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 8s;
}

.hero-particles .particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 12s;
}

.hero-particles .particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 16s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.7;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sakura-overlay {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 70vh;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 111, 71, 0.1);
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-amber-dark);
    margin-bottom: var(--spacing-lg);
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-grey);
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(139, 111, 71, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-amber-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-grey);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-product-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    perspective: 1000px;
}

.product-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-product-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    display: block;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hero-product-image:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.product-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    z-index: 2;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.hero-scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-amber) 0%, transparent 100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        height: 40px;
        opacity: 1;
    }
    50% {
        height: 20px;
        opacity: 0.5;
    }
    100% {
        height: 40px;
        opacity: 1;
    }
}

.hero-text-overlay {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
}

/* ============================================
   DETAIL SECTIONS - COMPREHENSIVE INFORMATION
   ============================================ */
.detail-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    scroll-margin-top: 150px;
}

.detail-section:nth-child(even) {
    background: var(--color-beige);
}

.detail-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md) auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.detail-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-amber-dark);
    stroke-width: 2;
}

.detail-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-amber) 50%, transparent 100%);
}

.detail-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-grey);
    letter-spacing: 0.5px;
    margin-top: var(--spacing-md);
    font-style: italic;
}

.detail-content {
    max-width: 1400px;
    margin: 0 auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.detail-card {
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    font-style: italic;
}

.detail-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.3px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.detail-list li {
    padding: var(--spacing-sm) 0;
    font-size: 0.95rem;
    color: var(--color-grey);
    position: relative;
    padding-left: 24px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-amber-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.detail-page {
    min-height: 75vh;
    padding-top: var(--spacing-xl);
}

.detail-cta {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(139, 111, 71, 0.15);
}

.detail-cta-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION - THREE COLUMN
   ============================================ */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
    transition: all var(--transition);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 var(--spacing-xs) 0;
    padding: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    line-height: 1.3;
    min-height: 3rem;
    display: block;
}

.feature-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    line-height: 1.5;
    min-height: 2.5rem;
    display: block;
}

.feature-image-placeholder {
    width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(139, 111, 71, 0.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--transition);
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.feature-card:hover .feature-image-placeholder {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: scale(1.02);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
    height: 100%;
}

.feature-bottle {
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-bottle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-black);
    border-radius: 50%;
}

.feature-spray {
    width: 50px;
    height: 140px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--color-amber-light);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-spray::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-gold);
    border-radius: 50%;
}

.feature-box {
    width: 80px;
    height: 100px;
    background: var(--color-beige-dark);
    border: 1px solid var(--color-amber-light);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-incense {
    width: 4px;
    height: 100px;
    background: var(--color-black);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.feature-incense::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-beige-dark);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-bottles-small {
    display: flex;
    gap: var(--spacing-xs);
}

.feature-bottles-small::before,
.feature-bottles-small::after {
    content: '';
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
    border-radius: 6px 6px 3px 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   PROCESS SECTION - BLACK & WHITE
   ============================================ */
.process-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-beige);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    padding: var(--spacing-xl);
    text-align: center;
    border-radius: 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(139, 111, 71, 0.12);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(139, 111, 71, 0.05);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 150px; /* Account for sticky header */
}

.process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.process-card:hover::after {
    opacity: 1;
}

.process-card::before {
    display: none;
}

.process-card-beige,
.process-card-blue,
.process-card-purple,
.process-card-green {
    background: rgba(0, 0, 0, 0.02);
}

.process-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.card-icon-white {
    width: 100px;
    height: 100px;
    margin-bottom: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.process-card:hover .card-icon-white {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.9);
}

.card-icon-white svg {
    width: 45px;
    height: 45px;
    stroke: var(--color-black);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-black);
    margin-top: var(--spacing-md);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* ============================================
   INGREDIENTS BANNER - LIQUID GLASS
   ============================================ */
.ingredients-banner {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--color-white);
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-content {
    padding: var(--spacing-xl);
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
}

.banner-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: 3px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-amber) 0%, transparent 100%);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.ingredient-item {
    padding: var(--spacing-lg);
    text-align: center;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md) auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ingredient-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-amber-dark);
    stroke-width: 1.5;
}

.ingredient-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.ingredient-item p {
    font-size: 0.9rem;
    color: var(--color-grey);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ============================================
   ABOUT SECTION - LIQUID GLASS
   ============================================ */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.about-paragraph {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-image {
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    filter: grayscale(10%) contrast(1.05) brightness(1.05);
}

/* ============================================
   SERVICES SECTION - LIQUID GLASS
   ============================================ */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-amber) 50%, transparent 100%);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-grey);
    font-weight: 300;
    letter-spacing: 0.5px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(139, 111, 71, 0.05);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-amber) 0%, 
        var(--color-amber-light) 50%, 
        var(--color-amber) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    transition: all var(--transition);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--color-black);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    font-style: italic;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    color: var(--color-grey);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CTA SECTION - LIQUID GLASS
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-beige);
    text-align: center;
}

.cta-button-main {
    padding: 18px 80px;
    background: linear-gradient(135deg, var(--color-taupe-dark) 0%, var(--color-amber-dark) 100%);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 
        0 12px 40px rgba(139, 111, 71, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.5s ease;
}

.cta-button-main:hover::before {
    left: 100%;
}

.cta-button-main:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(139, 111, 71, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--color-taupe) 0%, var(--color-amber) 100%);
}

.cta-button-main:active {
    transform: translateY(-2px) scale(1);
}

.cta-content {
    padding: var(--spacing-xxl);
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.1),
        0 16px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 200;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    font-style: italic;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1rem;
    color: var(--color-grey);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER - BLACK & WHITE
   ============================================ */
.footer {
    background: var(--color-white);
    color: var(--color-black);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-grey);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: var(--color-grey);
}

/* ============================================
   GLASS BUTTONS
   ============================================ */
.glass-button {
    padding: 14px 32px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-button.primary {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    color: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.glass-button.secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-black);
}

.glass-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.glass-button.primary:hover {
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.glass-button.large {
    padding: 18px 42px;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ============================================
   MODAL - CONTACT FORM
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    margin: auto;
    padding: var(--spacing-xl);
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 32px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.15),
        0 16px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-grey);
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.modal-close:hover {
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    font-style: italic;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--color-grey);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-amber);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-amber);
}

.form-submit {
    margin-top: var(--spacing-sm);
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-text-section {
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto var(--spacing-lg) auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 3rem;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .hero {
        min-height: 80vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-product-image {
        max-height: 300px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-button-main {
        padding: 16px 60px;
        font-size: 1rem;
    }
}
