/* ==========================================================================
   AI AGENCY PREMIUM SYSTEM DESIGN CODE - VOGUE EDITORIAL & LIQUID GLASS
   ========================================================================== */

:root {
    /* Color Palette - Premium Haute Couture */
    --color-bg-dark: #070709; /* Obsidian velvet black */
    --color-bg-panel: rgba(255, 255, 255, 0.03); /* Milchglas: extremely delicate white-frosted fill */
    --color-bg-panel-heavy: rgba(255, 255, 255, 0.06); /* Heavy milk-glass */
    --color-border-glass: rgba(255, 255, 255, 0.08); /* Crisp, micro-thin white glare stroke */
    --color-border-glow: rgba(197, 168, 128, 0.25); /* Muted champagne gold border glare */
    
    --color-champagne: #c5a880; /* Vogue champagne gold */
    --color-champagne-light: #faf9f6; /* Warm silk white / cream */
    --color-champagne-glow: rgba(197, 168, 128, 0.2);
    
    --color-platinum: #e5e5e7; /* Sleek platinum grey */
    --color-platinum-glow: rgba(229, 229, 231, 0.15);
    
    --color-text-primary: #faf9f6; /* Off-white silk primary text */
    --color-text-secondary: #c7c5cc; /* Soft warm-grey secondary text */
    --color-text-dim: #7f7a85; /* Muted stone / taupe text */
    
    /* Layout & Type Design */
    --container-width: 1200px;
    --header-height: 80px;
    --font-heading: 'Cormorant Garamond', serif; /* Luxurious Editorial serif */
    --font-body: 'Inter', sans-serif; /* Clean geometric sans-serif */
    
    /* Interactive States (Mapped via JS) */
    --cursor-x: 0px;
    --cursor-y: 0px;
}

/* Reset & Global Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    letter-spacing: -0.01em;
}

/* Vogue Italic Serif Highlights */
.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    text-transform: none; /* Keep original casing for branding highlights */
}

/* Scrollbar Customized */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-champagne);
    box-shadow: 0 0 10px var(--color-champagne-glow);
}

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

/* Dynamic Glowing Background (Champagne Liquid Blobs) */
.liquid-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: 
        radial-gradient(circle at 50% 50%, rgba(15, 12, 17, 0.95) 0%, rgba(7, 7, 9, 1) 100%),
        /* Matte micro-grain layer */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") opacity(0.012);
}

/* Liquid Blob Animation */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.28;
    mix-blend-mode: screen;
    animation: blob-float 30s infinite alternate ease-in-out;
    transform-origin: center;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.35) 0%, rgba(197, 168, 128, 0) 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(250, 249, 246, 0.22) 0%, rgba(250, 249, 246, 0) 70%);
    bottom: -20%;
    right: -10%;
    animation-duration: 35s;
    animation-delay: -5s;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(139, 133, 143, 0.25) 0%, rgba(139, 133, 143, 0) 70%);
    top: 30%;
    left: 40%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(100px, 80px) scale(1.1) rotate(180deg); }
    100% { transform: translate(-60px, -80px) scale(0.95) rotate(360deg); }
}

/* Custom Fine Spotlight Cursor */
.custom-cursor {
    width: 6px;
    height: 6px;
    background-color: #faf9f6; /* Silk white */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5); /* Muted white glow */
}

.custom-cursor-glow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25); /* Ultra-delicate white outline */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor Interactive States */
body.cursor-hover .custom-cursor {
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6); /* Clean frosted silver border */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); /* Frosted silver glow */
}

body.cursor-hover .custom-cursor-glow {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.02);
}

/* Glassmorphic Panel Base Styles - Milchglas with Glare */
.glass-panel {
    background: var(--color-bg-panel);
    backdrop-filter: blur(35px) saturate(130%);
    -webkit-backdrop-filter: blur(35px) saturate(130%);
    border: 1px solid var(--color-border-glass);
    border-radius: 18px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.45),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.12), /* Inner glare highlight */
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

/* Specular Glare Sweep Disabled globally to keep tiles perfectly clean and stable */

/* Delicate micro-grain tactile sandblasted texture overlay */
.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

/* Premium Haute Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.8px;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.btn-solid {
    background: linear-gradient(135deg, var(--color-champagne), #b09168);
    color: #070709;
    border: none;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.18);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45); /* Luxury solid dark shadow */
}

.btn-solid span {
    position: relative;
    z-index: 2;
}

/* btn-glow and sweep transitions removed entirely to eliminate any flashing animation */

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35); /* Elegant crisp silver-white border */
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08); /* Sophisticated frosted white light glow */
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
}

.btn-arrow {
    margin-left: 10px;
    transition: transform 0.4s;
}

.btn-premium:hover .btn-arrow {
    transform: translateX(5px);
}

.w-full {
    width: 100%;
}

/* Premium Header & Navbar */
.main-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 50px);
    max-width: var(--container-width);
    height: 74px;
    z-index: 1000;
    border-radius: 40px;
    background: rgba(7, 7, 9, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--color-champagne);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-champagne-glow);
    animation: luxury-pulse 2.5s infinite;
}

@keyframes luxury-pulse {
    0% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 10px rgba(197, 168, 128, 0.4); }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 18px rgba(197, 168, 128, 0.8); }
    100% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 10px rgba(197, 168, 128, 0.4); }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--color-text-primary);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s, text-shadow 0.4s;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-champagne);
    transition: width 0.4s ease;
}

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

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

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
        linear-gradient(180deg, rgba(7, 7, 9, 0.55) 0%, rgba(7, 7, 9, 0.9) 100%),
        url('assets/images/hero_vogue_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* iOS Glassmorphic Display Canvas */
.hero-glass-canvas {
    padding: 4.5rem;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(40px) saturate(130%);
    -webkit-backdrop-filter: blur(40px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.75),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    transition: all 0.5s ease;
}

.hero-glass-canvas:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
}

.status-indicator-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 30px;
    padding: 0.45rem 1.2rem;
    margin-bottom: 2.2rem;
    gap: 10px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-champagne);
    box-shadow: 0 0 10px var(--color-champagne-glow);
    position: relative;
}

.pulse-dot::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-champagne);
    position: absolute;
    animation: gold-pulse 2s infinite;
}

@keyframes gold-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-champagne);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-text-primary) 30%, var(--color-champagne) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 20px rgba(197, 168, 128, 0.1));
}

.hero-lead {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

/* Luxury Metrics Widget */
.metrics-widget {
    display: flex;
    width: fit-content;
    padding: 1.2rem 2.4rem;
    gap: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.metric-num {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--color-text-primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.metric-unit {
    font-size: 1rem;
    color: var(--color-champagne);
    margin-left: 3px;
    font-weight: 300;
}

.metric-label {
    font-size: 0.72rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

/* Hero Visual: Vogue COVER Digital Human Card */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.avatar-glass-card {
    width: 360px;
    height: 480px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.magazine-brand {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateZ(20px);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 5px;
    color: var(--color-champagne-light);
    z-index: 4;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(250, 249, 246, 0.2);
}

.crop-mark {
    position: absolute;
    font-size: 0.9rem;
    color: rgba(197, 168, 128, 0.5);
    font-family: var(--font-body);
    font-weight: 300;
    pointer-events: none;
    z-index: 6;
}
.crop-tl { top: 15px; left: 15px; }
.crop-tr { top: 15px; right: 15px; }
.crop-bl { bottom: 15px; left: 15px; }
.crop-br { bottom: 15px; right: 15px; }

.card-inner-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 5;
}

.avatar-image-container {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.93;
    filter: saturate(1.02) brightness(1.02) contrast(1.02);
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.avatar-glass-card:hover .avatar-image {
    transform: scale(1.04);
}

/* Floating Clean Label Nodes */
.editorial-annotation {
    position: absolute;
    padding: 0.6rem 1.4rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--color-text-primary);
    border-radius: 6px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    background: rgba(7, 7, 9, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: item-hover-float 5s infinite ease-in-out;
}

.float-node-1 {
    top: 22%;
    left: -40px;
}

.float-node-2 {
    bottom: 18%;
    right: -40px;
    animation-delay: -2.5s;
}

.node-pulse {
    width: 5px;
    height: 5px;
    background-color: var(--color-champagne);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-champagne);
    animation: gold-pulse 1.8s infinite;
}

@keyframes item-hover-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Capabilities/Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background-image: 
        linear-gradient(180deg, rgba(7, 7, 9, 0.85) 0%, rgba(7, 7, 9, 0.95) 100%),
        url('assets/images/hero_avatare_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-champagne);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-lead {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: start;
}

/* Staggered asymmetric layout for service cards */
@media (min-width: 1025px) {
    .card-left {
        transform: translateY(-30px);
    }
    .card-right {
        transform: translateY(30px);
    }
    

}

/* Liquid Glass Frosted Card */
.service-card {
    padding: 3.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035); /* Exquisite milk-glass frosted fill */
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Crisp light-catching border stroke */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.12), /* Inner glare highlight */
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Disable diagonal glare sweeps on cards completely to keep them stable and editorial */
.service-card::before,
.showcase-item::before {
    display: none !important;
}

/* Stable Hover Overrides to eliminate any shift or glow jumps */
.service-card:hover,
.showcase-item:hover {
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02) !important;
}

/* Vogue Card Header styling */
.service-card-header-vogue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-vogue-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-champagne);
    opacity: 0.85; /* Permanently luminous and sophisticated */
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.05); /* Soft champagne glass backing */
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-champagne);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 24px;
    height: 24px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.service-card-footer {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.tech-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-champagne);
    background: rgba(197, 168, 128, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Showcase Section (Atelier Collection) */
.showcase-section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background-image: 
        linear-gradient(180deg, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.9) 100%),
        url('assets/images/hero_kollektion_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.showcase-item {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035); /* Matching liquid glass design */
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding: 1.2rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
}

.showcase-visual-wrapper {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; /* Pristine editorial density */
    filter: brightness(0.85) contrast(0.95);
}

.showcase-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 1.8rem;
    background: rgba(7, 7, 9, 0.65); /* Gorgeous translucent dark backing */
    backdrop-filter: blur(25px) saturate(135%);
    -webkit-backdrop-filter: blur(25px) saturate(135%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 1; /* Statically visible */
    transform: translateY(0); /* Perfectly still and floating */
}

.showcase-category {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-champagne);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.showcase-item-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-item-desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* Consultation & Contact Section (Concierge) */
.consultation-section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background-image: 
        linear-gradient(180deg, rgba(7, 7, 9, 0.9) 0%, rgba(7, 7, 9, 0.98) 100%),
        url('assets/images/hero_concierge_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.contact-details-glass {
    margin-top: 4rem;
    padding: 2.4rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-width: 460px;
}

.contact-detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-glass);
    padding-bottom: 1rem;
}

.contact-detail-row:last-child {
    border: none;
    padding: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-value {
    font-weight: 500;
    color: var(--color-champagne);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.consultation-form-wrapper {
    padding: 4rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.02);
}

.form-header-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glass-input {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border-glass);
    border-radius: 12px;
    padding: 0.95rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-champagne);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

.glass-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1.4rem) center;
    padding-right: 3rem;
}

.glass-select option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
}

textarea.glass-input {
    resize: none;
}

/* Success notification message styled inside form */
.form-success-alert {
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--color-champagne);
    box-shadow: 0 0 30px rgba(197, 168, 128, 0.12);
    text-align: center;
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scale-up {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon {
    font-size: 2.8rem;
    color: var(--color-champagne);
    display: block;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
    animation: luxury-pulse 2s infinite;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.success-text {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Footer Section */
.main-footer {
    border-radius: 35px 35px 0 0;
    border-bottom: none;
    background: rgba(5, 5, 7, 0.9);
    padding: 6rem 0 4rem 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    font-weight: 300;
}

.footer-links-group {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-dim);
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.footer-links-col a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.4s;
    font-weight: 300;
}

.footer-links-col a:hover {
    color: var(--color-champagne);
}

/* LE CONCIERGE COGNITIF - RIGHT SLIDE-OUT PANEL */

/* Screen overlay that dims background on open */
.aida-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aida-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.aida-widget-wrapper {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 2001;
}

/* Toggle button styling - Editorial Minimalist Toggle */
.aida-toggle-btn {
    border-radius: 40px;
    padding: 0.7rem 1.8rem 0.7rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    background: rgba(7, 7, 9, 0.9);
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 
        0 15px 35px rgba(197, 168, 128, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s, box-shadow 0.4s, opacity 0.4s, visibility 0.4s;
}

.aida-toggle-btn.hidden-vogue {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px) scale(0.95);
}

.aida-toggle-btn:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.08);
}

.aida-avatar-indicator {
    position: relative;
    width: 44px;
    height: 44px;
}

.aida-avatar-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--color-champagne);
    filter: saturate(1.05) brightness(1.05);
}

.online-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-champagne);
    border: 1.5px solid var(--color-bg-dark);
    border-radius: 50%;
    position: absolute;
    bottom: 1px;
    right: 1px;
    box-shadow: 0 0 8px var(--color-champagne);
}

.aida-toggle-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right-side vertical column slide-out panel */
.aida-chat-box {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    background: rgba(7, 7, 9, 0.98);
    border: none;
    border-left: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 0;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        -20px 0 60px rgba(0, 0, 0, 0.85), 
        0 0 35px rgba(197, 168, 128, 0.05),
        inset 1px 0 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.aida-chat-box.active {
    transform: translateX(0);
}

/* Chat Header - High-end gold branding */
.aida-chat-header {
    padding: 2.2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(197, 168, 128, 0.03), transparent);
}

.aida-avatar-main {
    position: relative;
    width: 52px;
    height: 52px;
    margin-right: 18px;
}

.aida-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--color-champagne);
    filter: saturate(1.05) brightness(1.05);
}

.aida-status-meta {
    display: flex;
    flex-direction: column;
}

.aida-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.aida-role {
    font-size: 0.68rem;
    color: var(--color-champagne);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.aida-close-btn {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.aida-close-btn:hover {
    color: var(--color-champagne);
    transform: translateY(-50%) rotate(90deg);
}

/* Messages stream */
.aida-messages-container {
    flex-grow: 1;
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.chat-msg {
    display: flex;
    max-width: 88%;
}

.chat-msg-bot {
    align-self: flex-start;
}

.chat-msg-user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 1.2rem 1.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.chat-msg-bot .msg-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    border-bottom-left-radius: 4px;
    color: var(--color-text-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chat-msg-user .msg-bubble {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.1), rgba(250, 249, 246, 0.02));
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-bottom-right-radius: 4px;
    color: var(--color-text-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Typing Indicators */
.typing-dots {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: var(--color-champagne);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Quick Replies */
.aida-quick-actions {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(197, 168, 128, 0.01);
}

.quick-reply-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    border-radius: 24px;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quick-reply-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-text-primary);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

/* Custom Prompt writing inputs */
.aida-chat-input-wrapper {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    gap: 14px;
    background: rgba(5, 5, 7, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aida-chat-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-primary);
    transition: all 0.3s;
}

.aida-chat-input:focus {
    border-color: var(--color-champagne);
    background: rgba(255, 255, 255, 0.02);
}

.aida-send-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.aida-send-btn:hover:not(:disabled) {
    background: var(--color-champagne);
    color: #070709;
    border-color: transparent;
    box-shadow: 0 0 15px var(--color-champagne-glow);
}

/* Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-glass-canvas {
        padding: 3rem 2.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual-wrapper {
        margin-top: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    

    
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .contact-details-glass {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-glass-canvas {
        padding: 2.2rem 1.5rem;
        border-radius: 24px;
    }
    
    html {
        font-size: 15px;
    }
    
    .main-header {
        height: 64px;
        top: 15px;
        width: calc(100% - 30px);
    }
    
    .main-nav {
        display: none; /* Hide standard nav on mobile */
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .footer-links-group {
        justify-content: space-between;
    }
    
    .consultation-form-wrapper {
        padding: 2.5rem;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    .aida-chat-box {
        width: calc(100vw - 40px);
        right: 20px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .avatar-glass-card {
        width: 100%;
        max-width: 320px;
        height: 420px;
    }
    
    .metrics-widget {
        flex-direction: column;
        gap: 1.8rem;
        width: 100%;
        align-items: center;
    }
    
    .metric-divider {
        width: 100%;
        height: 1px;
    }
}

/* ==========================================================================
   NEXT PAGE GUIDELINE BUTTON STYLING (LIQUID GLASS, TRANSPARENT)
   ========================================================================== */
.next-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 4rem auto 0 auto;
    padding-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.next-page-btn {
    backdrop-filter: blur(25px) saturate(120%);
    -webkit-backdrop-filter: blur(25px) saturate(120%);
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary) !important;
}

.next-page-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--color-text-primary) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px);
}
