/* ==========================================================================
   LOCAL FONTS
   ========================================================================== */
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
   :root {
    /* Color Palette - Silent Luxury Refinement */
    --h-navy: 225; --s-navy: 25%; --l-navy: 13%;
    --h-taupe: 26; --s-taupe: 16%; --l-taupe: 65%;
    --h-rose: 25; --s-rose: 35%; --l-rose: 85%;
    --h-bg: 40; --s-bg: 15%; --l-bg: 97%;
    
    --clr-navy: hsl(var(--h-navy), var(--s-navy), var(--l-navy));
    --clr-taupe: hsl(var(--h-taupe), var(--s-taupe), var(--l-taupe));
    --clr-rose: hsl(var(--h-rose), var(--s-rose), var(--l-rose));
    --clr-bg: hsl(var(--h-bg), var(--s-bg), var(--l-bg));
    --clr-white: #FFFFFF;
    
    /* Dynamic Gradients */
    --grad-premium: linear-gradient(135deg, var(--clr-navy) 0%, hsl(var(--h-navy), var(--s-navy), 25%) 100%);
    --grad-soft: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-rose) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing Scale - Increased for Premium Feel */
    --space-2xs: 0.5rem;
    --space-xs: 1rem;
    --space-sm: 1.5rem;
    --space-md: 2.5rem;
    --space-lg: 4.5rem;
    --space-xl: 7.5rem;
    --space-2xl: 12rem;
    
    /* Typography Fine-tuning */
    --line-height-heading: 1.2;
    --line-height-body: 1.8;
    --ls-heading: 0.15em;
    --ls-nav: 0.2em;
    
    /* Effects - Glassmorphism 2.0 (Liquid Glass) */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-refraction: 0 0 0 1px rgba(255, 255, 255, 0.2);
    --glass-blur: blur(25px) saturate(180%);
    --shadow-premium: 0 20px 40px rgba(26, 30, 41, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 30px 60px rgba(26, 30, 41, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    
    /* Kinetic Typography Vars */
    --kinetic-weight: 400;
    --kinetic-spacing: 0.15em;
    --kinetic-skew: 0deg;

    /* Transitions */
    --transition-premium: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-magnetic: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Liquid Glow Tokens - Circadian Defaults */
    --glow-c1: rgba(203, 184, 169, 0.2); /* Default Taupe */
    --glow-c2: rgba(31, 36, 48, 0.12);   /* Default Navy */
    --glow-opacity: 0.4;
}

/* Generative Liquid Glow Background */
.liquid-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: var(--clr-bg);
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--glow-c1) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: var(--glow-opacity);
    animation: glow-move 25s infinite alternate ease-in-out;
}

.glow-blob:nth-child(2) {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--glow-c2) 0%, transparent 70%);
    right: -10vw;
    top: 10vh;
    animation-duration: 35s;
    animation-delay: -5s;
    opacity: 0.3;
}

@keyframes glow-move {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(20%, 15%) rotate(360deg); }
}

/* ==========================================================================
   HARMONIZATION UTILITIES
   ========================================================================== */
.pretitle {
    color: var(--clr-taupe);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.hero-h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--clr-navy);
    line-height: 1.1;
    font-weight: var(--kinetic-weight);
    letter-spacing: var(--kinetic-spacing);
    transform: skewX(var(--kinetic-skew));
    transition: font-weight 0.2s ease, letter-spacing 0.2s ease, transform 0.2s ease;
}

.scrolly-text {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1.2s var(--transition-premium);
    filter: blur(5px);
}

.scrolly-text.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hero-p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--clr-navy);
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-navy);
    opacity: 0.7;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--clr-taupe);
    box-shadow: 0 0 0 3px rgba(184, 164, 148, 0.1);
}

.quiz-result-card {
    background: var(--clr-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    max-width: 600px;
    margin: 0 auto 2rem;
    border: 1px solid var(--glass-border);
    animation: revealUp 0.8s var(--transition-premium);
}

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

/* Make logo transparent (freigestellt) globally */
.logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-premium);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    background: transparent !important;
}

img[src*="logo.png"] {
    mix-blend-mode: multiply;
    display: block;
    width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.02));
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

/* --- UX Feedback: Skeleton Loader Styles --- */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(203, 184, 169, 0.05) 25%, 
        rgba(203, 184, 169, 0.15) 50%, 
        rgba(203, 184, 169, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 8px;
    border: 1px solid rgba(203, 184, 169, 0.1);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text { height: 14px; margin-bottom: 8px; width: 100%; }
.skeleton-title { height: 28px; margin-bottom: 15px; width: 70%; }
.skeleton-circle { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem; }
.skeleton-card { height: 400px; padding: 2rem; border: 1px solid rgba(203, 184, 169, 0.2); }

/* --- Design Spells: Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

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

.scrolly-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Fallback for no-js or slow observer */
.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* --- Bento 2.0 Global Cards Physics & Luxury Lighting Setup --- */
.card-premium, 
.treatment-card, 
.concept-card, 
.service-card, 
.location-card, 
.problem-card,
.cta-card,
.cta-box,
.analysis-card,
.offer-card,
.bento-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    will-change: transform;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Ensure card children are layered above the spotlight glow */
.card-premium > *,
.treatment-card > *,
.concept-card > *,
.service-card > *,
.location-card > *,
.problem-card > *,
.cta-card > *,
.cta-box > *,
.analysis-card > *,
.offer-card > *,
.bento-card > * {
    position: relative;
    z-index: 2;
}

/* Luxury border highlight on hover for all interactive cards */
.card-premium:hover, 
.treatment-card:hover, 
.concept-card:hover, 
.service-card:hover, 
.location-card:hover, 
.problem-card:hover,
.cta-card:hover,
.cta-box:hover,
.analysis-card:hover,
.offer-card:hover,
.bento-card:hover {
    border-color: rgba(203, 184, 169, 0.5) !important;
    box-shadow: var(--glass-refraction), var(--shadow-hover) !important;
}

/* Show Spotlight Glow on hover */
.card-premium:hover .card-spotlight,
.treatment-card:hover .card-spotlight,
.concept-card:hover .card-spotlight,
.service-card:hover .card-spotlight,
.location-card:hover .card-spotlight,
.problem-card:hover .card-spotlight,
.cta-card:hover .card-spotlight,
.cta-box:hover .card-spotlight,
.analysis-card:hover .card-spotlight,
.offer-card:hover .card-spotlight,
.bento-card:hover .card-spotlight {
    opacity: 1 !important;
}

.card-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        800px circle at var(--x, 50%) var(--y, 50%),
        rgba(203, 184, 169, 0.22),
        rgba(255, 255, 255, 0.05) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* --- Premium Utilities --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
}

.card-premium {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-refraction), var(--shadow-premium);
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    will-change: transform;
    cursor: pointer;
    z-index: 1;
}

.card-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.03) 40%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.card-premium:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: var(--glass-refraction), var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Card children styling is now handled by the global cards setup above */

/* --- Location Page Refinements --- */
/* .location-hero moved to bottom of file */

.location-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(31, 36, 48, 0.9) 0%, rgba(31, 36, 48, 0.4) 100%);
    z-index: 1;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    color: var(--clr-white);
}

.trust-strip {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--clr-white);
    border: 1px solid var(--glass-border);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.trust-strip-item {
    text-align: center;
    flex: 1;
}

.trust-strip-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-navy);
    margin-bottom: 0.5rem;
}

.trust-strip-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-taupe);
}

@media (max-width: 768px) {
    .trust-strip {
        flex-direction: column;
        margin-top: -40px;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

.magnetic-wrap {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--clr-navy);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    color: rgba(31, 36, 48, 0.8);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.bg-light { background-color: var(--clr-white); }
.bg-navy { background-color: var(--clr-navy); }

.text-center { text-align: center; }
.text-white { color: var(--clr-white); }
.text-white p { color: rgba(255, 255, 255, 0.8); }

.mt-xl { margin-top: var(--space-xl); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-premium), var(--transition-magnetic);
    border: none;
    border-radius: 2px; /* Minimalist sharpening */
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-navy) 0%, #3a4256 100%);
    color: var(--clr-bg);
    box-shadow: 0 4px 15px rgba(31, 36, 48, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-taupe) 0%, #bca594 100%);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 184, 169, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1b3524 0%, #112217 100%) !important; /* Curated Luxury Emerald/Sage Green */
    color: var(--clr-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 15px rgba(27, 53, 36, 0.2) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--clr-taupe) 0%, #bca594 100%) !important;
    color: var(--clr-white) !important;
    border-color: var(--clr-taupe) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(203, 184, 169, 0.4) !important;
}

.btn-outline {
    border: 1px solid var(--clr-navy);
    color: var(--clr-navy);
}

.btn-outline:hover {
    background-color: var(--clr-navy);
    color: var(--clr-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 36, 48, 0.15);
}

.btn-text {
    text-transform: none;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    padding: 0;
    border-bottom: 1px solid transparent;
}

/* --- High-End Block CTAs --- */
.hero-ctas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

@media (max-width: 900px) {
    .hero-ctas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.btn-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 1px solid rgba(203, 184, 169, 0.2);
    box-shadow: 0 10px 30px rgba(31, 36, 48, 0.1);
    height: 100%;
    min-height: 120px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.btn-block.highlight {
    background: var(--clr-white) !important;
    color: var(--clr-navy) !important;
    border: 1px solid rgba(203, 184, 169, 0.4) !important;
    box-shadow: 0 15px 45px rgba(31, 36, 48, 0.05) !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-block.highlight:hover {
    border-color: var(--clr-taupe) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(203, 184, 169, 0.15) !important;
}

.btn-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    color: inherit;
}

.btn-sub {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 500;
    color: inherit;
}


/* --- Design Spell: Premium Shimmer --- */
@keyframes buttonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.btn-primary, .btn-outline, .btn-whatsapp, .quiz-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-outline::after, .btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: all 0.6s;
}

.btn-primary:hover::after, .btn-outline:hover::after, .btn-whatsapp:hover::after {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(31, 36, 48, 0.1), 0 0 20px rgba(203, 184, 169, 0.4);
    transform: translateY(-3px);
    background-color: hsl(var(--h-navy), var(--s-navy), 20%);
}

.btn-block:hover {
    background: var(--clr-taupe);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(203, 184, 169, 0.2);
}

.btn-block.highlight {
    background: var(--clr-white) !important;
    color: var(--clr-navy) !important;
    border: 1px solid rgba(203, 184, 169, 0.3) !important;
    box-shadow: 0 15px 40px rgba(31, 36, 48, 0.05) !important;
}

.btn-block.highlight:hover {
    background: var(--clr-white) !important;
    border-color: var(--clr-taupe) !important;
}

.btn-block.highlight:hover {
    background: white;
    color: var(--clr-navy);
    border-color: var(--clr-navy);
}

.btn-block.btn-outline-dark {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--clr-navy);
    color: var(--clr-navy);
    backdrop-filter: blur(5px);
}

.btn-block.btn-outline-dark:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* --- CTA Highlights & Badges --- */
.btn-block.highlight {
    border: 1px solid var(--clr-taupe);
    position: relative;
    overflow: hidden;
}

.btn-block.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: none;
    animation: shine 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

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

.btn-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--clr-taupe);
    color: var(--clr-white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(203, 184, 169, 0.2);
    white-space: nowrap;
    z-index: 20;
    opacity: 0.8;
}

.hero-ctas-grid {
    max-width: 700px;
}


.hero-badge-icon {
    color: var(--clr-taupe); 
    margin-right: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* --- COOKIE BANNER --- */

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(203, 184, 169, 0.3);
    border-radius: 8px;
    padding: 1.75rem;
    z-index: 100001;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--clr-navy);
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1.25rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.cookie-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-taupe);
    text-decoration: none;
}

.cookie-link[role="button"] {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 0;
    margin-left: auto;
}

.cookie-link[role="button"]:hover {
    color: var(--clr-navy);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

/* Mobile */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 16px 16px 0 0;
        padding: 1.5rem 1.25rem;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0,0,0,0.03);
        -webkit-overflow-scrolling: touch;
        max-height: 85vh;
        overflow-y: auto;
    }

    .cookie-banner.show {
        transform: translateY(0);
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .cookie-actions .btn {
        text-align: center;
    }

    .cookie-link[role="button"] {
        text-align: center;
        margin-left: 0;
        padding: 0.5rem 0;
    }
}

.btn-text:hover {
    border-bottom-color: var(--clr-navy);
}

/* Removed redundant .btn-block definitions */

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    isolation: isolate;
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.navbar.scrolled .logo img {
    width: 130px;
    max-height: 42px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap; /* Prevent stacking in main nav */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* --- Premium Language Switcher Capsule --- */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(31, 36, 48, 0.05);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(31, 36, 48, 0.1);
    transition: all var(--transition-premium);
}

.navbar:not(.scrolled) .lang-switcher {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 100px;
    cursor: pointer;
    color: var(--clr-navy);
    transition: all var(--transition-premium);
    letter-spacing: 1px;
}

.navbar:not(.scrolled) .lang-btn {
    color: var(--clr-navy);
    opacity: 0.7;
}

.lang-btn.active {
    background: var(--clr-navy);
    color: var(--clr-white) !important;
    box-shadow: 0 4px 10px rgba(31, 36, 48, 0.2);
}

.navbar:not(.scrolled) .lang-btn.active {
    background: var(--clr-navy);
    color: var(--clr-white) !important;
}

.lang-btn:hover:not(.active) {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    color: var(--clr-navy) !important;
    white-space: nowrap;
    transition: all var(--transition-fast), var(--transition-magnetic);
}

/* Adjustments for Russian - even more compact */
html[lang="ru"] .nav-links a {
    letter-spacing: 0.02em;
    font-size: 0.7rem;
}
html[lang="ru"] .nav-links {
    gap: 0.8rem;
}

.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .lang-btn,
.navbar:not(.scrolled) .nav-actions a {
    color: var(--clr-navy) !important;
}

/* Fix for dark headers (Subpages) */
.page-header-dark .navbar:not(.scrolled) .nav-links a,
.page-header-dark .navbar:not(.scrolled) .lang-btn,
.page-header-dark .navbar:not(.scrolled) .nav-actions a,
.page-header-dark .navbar:not(.scrolled) .hamburger span {
    color: var(--clr-white) !important;
    background-color: transparent;
}

.page-header-dark .navbar:not(.scrolled) .hamburger span {
    background-color: var(--clr-white) !important;
}

.page-header-dark .navbar:not(.scrolled) .lang-switcher {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .lang-btn,
.navbar.scrolled .nav-actions a,
.navbar.scrolled .nav-actions .btn-outline {
    color: var(--clr-navy);
    border-color: var(--clr-navy);
}

.navbar:not(.scrolled) .nav-actions .btn-outline {
    color: var(--clr-navy);
    border-color: var(--clr-navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-fast);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-md);
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft gradient overlay to ensure text readability over the warm image */
    background: linear-gradient(to right, rgba(247, 246, 245, 0.95) 0%, rgba(247, 246, 245, 0.4) 50%, rgba(247, 246, 245, 0.1) 100%);
}

.hero-content {
    max-width: 1000px;
    padding-top: 180px; /* Increased further to prevent overlap with navbar */
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: var(--space-md);
    color: var(--clr-navy);
    line-height: var(--line-height-heading);
    letter-spacing: var(--ls-heading);
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--clr-navy);
    opacity: 0.9;
}

.hero-ctas-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-ctas-grid a:first-child {
    grid-row: span 2;
}

.btn-block.highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2rem;
    height: 100%;
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-premium) !important;
    border-radius: var(--radius-lg);
    transition: var(--transition-premium) !important;
}

.btn-block.highlight:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.6) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--clr-taupe) !important;
}

.btn-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-navy);
    display: block;
    margin-bottom: 0.5rem;
}

.btn-sub {
    font-size: 0.85rem;
    color: var(--clr-taupe);
    opacity: 0.9;
}

@media (max-width: 992px) {
    .hero-ctas-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .hero-ctas-grid a:first-child {
        grid-row: auto;
    }
    
    .btn-block.highlight {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-ctas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-content {
        padding-top: 80px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
}

/* Removed redundant .btn-block and button sub-styles */

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
    padding: var(--space-md) 0;
    background-color: var(--clr-white);
    border-bottom: 1px solid rgba(203, 184, 169, 0.3);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-line {
    width: 30px;
    height: 1px;
    background-color: var(--clr-taupe);
}

.trust-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== */
.philosophy {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, var(--glow-c1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
    animation: liquid-move 25s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes liquid-move {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(-15%, 15%) scale(1.2) rotate(5deg); }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--clr-taupe);
}

.philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.quote {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--clr-navy);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--line-height-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--glass-bg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-refraction), var(--shadow-premium);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background-color: var(--clr-white);
    border-color: rgba(203, 184, 169, 0.4);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(31, 36, 48, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.service-link {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clr-taupe);
}

.service-card:hover .service-link {
    color: var(--clr-navy);
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--space-xl);
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-taupe);
    z-index: -1;
}

.founder-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.signature {
    display: flex;
    flex-direction: column;
}

.signature strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-navy);
}

.signature span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-taupe);
    margin-top: 5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(31, 36, 48, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(31, 36, 48, 0.1);
}

.testimonial-card i {
    color: var(--clr-taupe);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--clr-navy);
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(203, 184, 169, 0.15);
    transition: all var(--transition-premium);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-taupe);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 2px solid var(--clr-taupe);
    box-shadow: 0 10px 25px rgba(31, 36, 48, 0.08);
    background: var(--clr-sand);
    position: relative;
}

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

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--clr-navy);
}

.team-info .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-taupe);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.team-info .quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-text);
    font-style: italic;
    font-family: var(--font-body);
    margin: 0;
    max-width: 100%;
    opacity: 0.9;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(203, 184, 169, 0.3);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-navy);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--clr-taupe);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Fix visibility in dark sections */
.bg-navy .faq-question {
    color: var(--clr-rose);
}

.bg-navy .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CTA SECTION (LEAD CAPTURE)
   ========================================================================== */
.cta-section {
    padding: 8rem 0;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-rose);
}

.cta-subtitle {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--clr-white);
    padding: var(--space-lg);
    border-radius: 2px;
}

.form-group {
    margin-bottom: var(--space-sm);
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-navy);
    background-color: var(--clr-bg);
    transition: border-color var(--transition-fast);
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--clr-taupe);
}

.lead-form .btn-primary {
    background: linear-gradient(135deg, var(--clr-navy) 0%, #3a4256 100%);
    color: var(--clr-bg);
    box-shadow: 0 4px 15px rgba(31, 36, 48, 0.15);
}

.lead-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-taupe) 0%, #bca594 100%);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 184, 169, 0.4);
}

/* ==========================================================================
   QUIZ FUNNEL (MULTI-STEP FORM)
   ========================================================================== */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-btn {
    padding: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--clr-taupe);
    color: var(--clr-navy);
    font-family: var(--font-body);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-premium);
    text-align: left;
}

.quiz-btn:hover {
    background-color: var(--clr-taupe);
    color: var(--clr-white);
}

.quiz-step {
    animation: fadeIn 0.4s ease-in-out;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--clr-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-taupe);
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-taupe);
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--clr-taupe);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-btn {
    text-decoration: none;
    color: var(--clr-text);
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--clr-taupe);
}

.lang-btn.active {
    color: var(--clr-navy);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(203, 184, 169, 0.3);
    padding-top: var(--space-md);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: var(--space-md);
}

/* ==========================================================================
    HAMBURGER MENU & MOBILE NAV
    ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.navbar .hamburger span {
    background-color: var(--clr-navy);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0), visibility 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 1000;
    visibility: hidden;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-actions {
        display: flex; /* Keep switcher visible */
    }
}

/* ==========================================================================
   TEAM SECTION (Atelier Experts)
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: #FFFFFF;
    border: 1px solid rgba(203, 184, 169, 0.15);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--clr-taupe);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 2px solid var(--clr-taupe);
    box-shadow: 0 10px 25px rgba(31, 36, 48, 0.08);
    background: var(--clr-sand);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 2.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--clr-navy);
}

.team-info .role {
    color: var(--clr-taupe);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-info .quote {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-navy);
    opacity: 0.8;
    font-style: italic;
    position: relative;
}

/* Skeleton Loaders (UX Polish) */

/* Skeleton Loaders (UX Polish) */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-circle { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.5rem; }
.skeleton-title { height: 1.5rem; width: 60%; margin: 0 auto 1rem; }
.skeleton-text { height: 0.8rem; width: 90%; margin: 0 auto 0.5rem; }

/* Russian specific: earlier breakpoint for mobile menu */
@media (max-width: 1250px) {
    html[lang="ru"] .nav-links {
        display: none !important;
    }
    html[lang="ru"] .hamburger {
        display: flex !important;
    }
    html[lang="ru"] .nav-actions .btn {
        display: none;
    }
    html[lang="ru"] .nav-actions {
        margin-right: 3rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .nav-actions .btn {
        display: none; /* Hide desktop CTA on mobile */
    }
}

@media (max-width: 992px) {
    .philosophy-grid,
    .founder-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .founder-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        padding-top: 160px !important;
        padding-bottom: 60px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        line-height: 1.2;
        margin-top: 0;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(247, 246, 245, 0.95) 0%, rgba(247, 246, 245, 0.8) 100%);
    }
    
    .hero-ctas {
        flex-direction: column;
        justify-content: center;
    }
    
    .trust-grid {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ==========================================================================
   COOKIE SETTINGS MODAL
   ========================================================================== */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 36, 48, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: var(--clr-white);
    max-width: 520px;
    width: calc(100% - 2rem);
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--clr-taupe);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cookie-modal-close:hover {
    color: var(--clr-navy);
}

.cookie-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--clr-navy);
    padding-right: 2rem;
}

.cookie-modal-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(203, 184, 169, 0.2);
}

.cookie-option-info h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-navy);
    margin-bottom: 0.2rem;
    margin-top: 0;
}

.cookie-option-info p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #888;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 24px;
    transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--clr-navy);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(203, 184, 169, 0.2);
}

.cookie-modal-actions .btn {
    flex: 1;
    text-align: center;
}

.cookie-modal-legal {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 1.25rem;
}

.cookie-modal-legal a {
    color: var(--clr-taupe);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-modal {
        align-items: flex-end;
    }
    .cookie-modal-overlay {
        border-radius: 16px 16px 0 0;
    }
    .cookie-modal-content {
        width: 100%;
        max-width: none;
        max-height: 90vh;
        margin: 0;
        border-radius: 16px 16px 0 0;
        padding: 2rem 1.25rem;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .cookie-modal-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* ==========================================================================
   FORM & INTERACTIVE ELEMENTS
   ========================================================================== */

/* ==========================================================================
   CUSTOM CURSOR (Ultra Premium)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor, 
    body.has-custom-cursor a, 
    body.has-custom-cursor button, 
    body.has-custom-cursor input, 
    body.has-custom-cursor .btn {
        cursor: none;
    }
    
    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: var(--clr-navy);
        border-radius: 50%;
        pointer-events: none;
        z-index: 100000;
        margin: -3px 0 0 -3px;
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    }

    .custom-cursor-follower {
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(31, 36, 48, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        margin: -18px 0 0 -18px;
        transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    .custom-cursor.hover {
        width: 0px;
        height: 0px;
    }

    .custom-cursor-follower.hover {
        width: 50px;
        height: 50px;
        margin: -25px 0 0 -25px;
        background-color: rgba(203, 184, 169, 0.2);
        border-color: var(--clr-taupe);
        backdrop-filter: blur(2px);
    }
}

/* ==========================================================================
   FILM GRAIN (Magazin-Papier Effekt)
   ========================================================================== */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* ==========================================================================
   KEN BURNS EFFECT (Atmende Website)
   ========================================================================== */
@keyframes kenBurns {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-bg img {
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center;
}

/* ==========================================================================
   VIEWPORT EDGE SHIMMER (Premium Atelier Glow)
   ========================================================================== */
@keyframes viewportShimmer {
    0%   { opacity: 0.55; }
    50%  { opacity: 1; }
    100% { opacity: 0.55; }
}

@media (hover: hover) and (pointer: fine) {
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9995;
        box-shadow:
            inset 0   0   60px  4px  rgba(201, 168, 124, 0.22),
            inset 0   0   140px 10px rgba(201, 168, 124, 0.10),
            inset 0   0   220px 30px rgba(203, 184, 169, 0.06);
        animation: viewportShimmer 5s ease-in-out infinite;
    }
}


/* ==========================================================================
   SUBPAGE SPECIFIC STYLES (Academy & Locations)
   ========================================================================== */
.page-hero { padding: 130px 0 60px; background: linear-gradient(135deg, var(--clr-navy) 0%, #2a3040 100%); color: white; }
.page-hero h1, .page-hero p, .page-hero em { color: white !important; }
.page-hero p:first-of-type { color: var(--clr-taupe) !important; }
.page-body { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.page-body h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--clr-navy); margin: 3rem 0 1rem; }
.page-body p { color: var(--clr-navy); margin-bottom: 1.4rem; line-height: 1.85; }
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.course-card { background: var(--clr-navy); color: white; padding: 1.75rem; transition: transform 0.3s ease; border-radius: 4px; }
.course-card:hover { transform: translateY(-4px); }
.course-card .tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--clr-taupe); border: 1px solid rgba(203,184,169,0.4); padding: 0.2rem 0.6rem; margin-bottom: 0.9rem; }
.course-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: #EABFB9; margin-bottom: 0.65rem; }
.course-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.7; }
.testimonial-block { background: rgba(203,184,169,0.07); border-left: 3px solid var(--clr-taupe); padding: 1.4rem 1.75rem; margin: 1.5rem 0; }
.testimonial-block p { font-style: italic; margin-bottom: 0.75rem; font-size: 0.95rem; }
.testimonial-block cite { font-style: normal; font-size: 0.82rem; color: var(--clr-taupe); }
.cta-box-academy { background: var(--clr-navy); color: white; padding: 2.5rem; margin-top: 4rem; text-align: center; }
.cta-box-academy h3 { font-family: var(--font-heading); color: #EABFB9; font-size: 1.7rem; margin-bottom: 0.85rem; }
.cta-box-academy p { color: rgba(255,255,255,0.72); margin-bottom: 1.75rem; }

/* Location Specific Styles */
/* .location-hero merged below */
.location-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.location-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.location-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(31, 36, 48, 0.75), rgba(31, 36, 48, 0.4)); z-index: 1; }
.location-hero-content { position: relative; z-index: 2; color: white; max-width: 600px; }
.location-hero-content .section-tag { color: var(--clr-taupe); letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 1rem; display: block; }
.location-hero-content h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.2; }
.location-hero-content p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

/* Trust Bar (Locations) */
.trust-bar { display: flex; justify-content: center; gap: 3rem; padding: 2rem 0; border-top: 1px solid rgba(203, 184, 169, 0.3); border-bottom: 1px solid rgba(203, 184, 169, 0.3); margin: 3rem 0; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item .number { font-family: var(--font-heading); font-size: 2.5rem; color: var(--clr-navy); display: block; }
.trust-item .label { font-size: 0.85rem; color: var(--clr-taupe); text-transform: uppercase; letter-spacing: 1px; }

/* Location Services Grid */
.location-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.location-service-card { background: #f9f8f6; padding: 2rem; border-radius: 8px; transition: transform 0.3s ease; border: 1px solid rgba(203,184,169,0.3); }
.location-service-card:hover { transform: translateY(-5px); }
.location-service-card h3 { font-family: var(--font-heading); margin-bottom: 1rem; font-size: 1.3rem; }
.location-service-card p { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }
.location-service-card .tag { display: inline-block; background: var(--clr-taupe); color: var(--clr-navy); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 1rem; }

/* Location Info / Map */
.location-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 4rem 0; }
.location-map-container { width: 100%; height: 400px; border-radius: 8px; overflow: hidden; }
.location-details-box { display: flex; flex-direction: column; justify-content: center; }
.detail-row { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
.detail-icon-circle { width: 40px; height: 40px; background: var(--clr-taupe); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1rem; flex-shrink: 0; }
.detail-text-content strong { display: block; margin-bottom: 0.3rem; }
.detail-text-content span { font-size: 0.9rem; opacity: 0.7; }

/* Location Detail Item */
.detail-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.detail-icon { color: var(--clr-taupe); flex-shrink: 0; padding-top: 0.2rem; }
.detail-icon svg { width: 24px; height: 24px; stroke-width: 1.5px; }
.detail-text { display: flex; flex-direction: column; gap: 0.4rem; }
.detail-text strong { font-family: var(--font-heading); color: var(--clr-navy); font-size: 1.1rem; letter-spacing: 0.5px; }
.detail-text span { font-size: 0.95rem; line-height: 1.6; color: var(--clr-navy); opacity: 0.85; }
@media (max-width: 768px) {
    .location-info-grid { grid-template-columns: 1fr; }
    .course-grid { grid-template-columns: 1fr; }
    .location-info { grid-template-columns: 1fr; }
    .location-map { height: 300px; order: 2; }
}

/* --- CLEANED OVERRIDES --- */
.cta-section .btn-outline {
    color: var(--clr-white) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}
.cta-section .btn-outline:hover {
    background: var(--clr-white);
    color: var(--clr-navy) !important;
}

.cta-section h2 {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ==========================================================================
   FLOATING QUIZ BUTTON
   ========================================================================== */
#quiz-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-premium);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 1000;
    transition: all var(--transition-premium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulseSoft 4s infinite ease-in-out;
}

#quiz-float-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: hsl(var(--h-navy), var(--s-navy), 20%);
    box-shadow: 0 15px 40px rgba(31, 36, 48, 0.15), 0 0 20px rgba(203, 184, 169, 0.3);
    border-color: var(--clr-taupe);
}

@keyframes pulseSoft {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-premium); }
    50% { transform: scale(1.03); box-shadow: 0 10px 30px rgba(203, 184, 169, 0.2); }
}
/* ==========================================================================
   QUIZ INTERFACE
   ========================================================================== */
.quiz-container {
    max-width: 800px;
    width: 100%;
    margin: 4rem auto;
    padding: var(--space-xl) var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    position: relative;
    min-height: 550px; /* Prevent footer jumping during transitions */
    display: flex;
    flex-direction: column;
}

.concierge-avatar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.concierge-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--clr-taupe);
    padding: 3px;
    background: white;
    box-shadow: var(--shadow-premium);
    object-fit: cover;
}

.chat-bubble {
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    animation: bubble-pop 0.6s var(--transition-premium);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.chat-bubble:hover {
    transform: translateY(-3px) scale(1.01);
}

.bubble-ai {
    background: white;
    color: var(--clr-navy);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 1rem;
    background: white;
    border-radius: 1.5rem;
    width: fit-content;
    margin-bottom: 1.5rem;
    border-bottom-left-radius: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-taupe);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

@keyframes bubble-pop {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

.quiz-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: var(--ls-heading);
}

.quiz-header p {
    color: var(--clr-navy);
    opacity: 0.6;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Progress Track */
.progress-track {
    width: 100%;
    height: 2px;
    background: rgba(203, 184, 169, 0.2);
    margin-bottom: var(--space-xl);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--clr-navy);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.progress-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--clr-bg);
    border: 2px solid rgba(203, 184, 169, 0.4);
    transition: all var(--transition-premium);
}

.progress-dot.active {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(31, 36, 48, 0.2);
}

/* Quiz Steps */
.quiz-step {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
    text-align: center;
}

.quiz-step.active {
    display: flex;
    animation: fade-in 0.5s ease;
}

.step-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-taupe);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.step-question {
    display: none; /* Already shown as AI bubble */
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 1rem 0 2rem 0;
}

.option-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 184, 169, 0.2);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(31, 36, 48, 0.03);
    text-align: center;
}

.option-card:hover {
    background: white;
    border-color: var(--clr-taupe);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(203, 184, 169, 0.2);
}

.option-card.selected {
    background: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
    box-shadow: 0 10px 20px rgba(31, 36, 48, 0.2);
}

.option-card span {
    position: relative;
    z-index: 1;
}

.quiz-container .lead-form {
    background: transparent;
    padding: 0;
    max-width: 100%;
}

.quiz-container .lead-form input {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Result Container */
.result-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .quiz-container { padding: var(--space-lg) var(--space-sm); }
    .options-grid { grid-template-columns: 1fr; gap: var(--space-xs); }
}


/* ==========================================================================
   QUIZ FLOATING BUTTON (PREMIUM REFINEMENT)
   ========================================================================== */
.quiz-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--clr-navy);
    color: var(--clr-white) !important;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 15px 35px rgba(26, 30, 41, 0.2);
    transition: all var(--transition-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.quiz-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.quiz-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(26, 30, 41, 0.3);
    background: #252a3a;
}

.quiz-btn:hover::before {
    left: 100%;
}

.quiz-btn-icon {
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

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

@media (max-width: 768px) {
    .quiz-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.85rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */
/* Lang Switcher Redundancy Removed */

/* Redundancy Removed */

/* ==========================================================================
   LOCATION HERO (STUTTGART / MG)
   ========================================================================== */
.location-hero {
    position: relative;
    padding: 14rem 0 8rem; /* Increased top padding to push content safely below navbar */
    color: var(--clr-white);
    background: var(--clr-bg);
    overflow: hidden;
    display: block; /* Removed flex centering to prevent upwards growth on mobile */
    min-height: 100vh;
}
@media (max-width: 768px) {
    .location-hero {
        padding: 11rem 0 5rem; /* Still enough for mobile navbar */
        min-height: auto;
    }
}

.location-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.location-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-hero-overlay {
    position: absolute;
    inset: 0;
    /* Soft premium gradient matching the start page */
    background: linear-gradient(to right, rgba(247, 246, 245, 0.95) 0%, rgba(247, 246, 245, 0.6) 50%, rgba(247, 246, 245, 0.2) 100%);
    z-index: 1;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.location-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 1.5rem 0;
    color: var(--clr-navy);
    line-height: 1.1;
}

.location-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--clr-navy);
    opacity: 0.85;
    line-height: 1.6;
}

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

/* ==========================================================================
   SECTION HEADER & UTILITIES
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--clr-navy);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--clr-navy);
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--grad-premium);
    margin: 2rem auto;
}

.tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--grad-premium);
    color: var(--clr-white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   BENTO GRID & PREMIUM CARDS
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.card-premium {
    background: var(--clr-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--clr-taupe);
}

.card-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--clr-navy);
    margin-bottom: 1.25rem;
}

.card-premium p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-navy);
    opacity: 0.75;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-premium {
        grid-column: span 1 !important;
        padding: 2rem;
    }
}

/* Light overrides removed as they are now default */

/* ========================================= */
/* SILO COMPONENTS (Falten, Haut, etc.)      */
/* ========================================= */
.treatment-grid, .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
.treatment-card, .problem-card { background: #fff; border: 1px solid rgba(203, 184, 169, 0.3); border-radius: 8px; padding: 2rem; transition: all 0.3s ease; cursor: pointer; }
.treatment-card:hover, .problem-card:hover { border-color: var(--clr-taupe); box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.treatment-card h3, .problem-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--clr-navy); }
.treatment-card .duration { color: var(--clr-taupe); font-size: 0.9rem; margin-bottom: 1rem; }
.treatment-card p, .problem-card p { color: rgba(31, 36, 48, 0.7); margin-bottom: 1.5rem; }
.benefits { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.benefits li { padding: 0.25rem 0; color: rgba(31, 36, 48, 0.7); display: flex; align-items: flex-start; }
.benefits li::before { content: '\2726'; color: var(--clr-taupe); margin-right: 0.5rem; font-size: 0.9em; }
.footer-trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(203, 184, 169, 0.2);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--clr-navy);
    letter-spacing: 0.5px;
}

.footer-trust-bar .trust-icon {
    color: var(--clr-taupe);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .footer-trust-bar {
        justify-content: flex-start;
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
    }
}

/* --- PREMIUM CHAT UI (AI CONCIERGE) --- */
#concierge-chat {
    gap: 1.2rem;
    padding: 1rem 0;
}

.chat-bubble {
    padding: 1.2rem 1.6rem;
    border-radius: 1.5rem;
    max-width: 85%;
    font-size: 1.05rem;
    line-height: 1.6;
    animation: bubbleFadeIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bubble-ai {
    align-self: flex-start;
    background: white;
    color: var(--clr-navy);
    border: 1px solid rgba(203, 184, 169, 0.3);
    border-bottom-left-radius: 0.2rem;
}

.bubble-user {
    align-self: flex-end;
    background: var(--clr-taupe);
    color: white;
    border-bottom-right-radius: 0.2rem;
}

.bubble-insight {
    align-self: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--clr-navy);
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
    margin: 1rem 0;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 1.5rem;
    width: fit-content;
    align-self: flex-start;
    border: 1px solid rgba(203, 184, 169, 0.2);
    margin-bottom: 1rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-taupe);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bubbleFadeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.quiz-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}




/* ==========================================================================
   THUMB-ZONE MOBILE NAVIGATION (2026 TREND)
   ========================================================================== */
.mobile-thumb-nav {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 450px;
    background: rgba(26, 30, 41, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 10px 15px;
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

@media (max-width: 768px) {
    .mobile-thumb-nav {
        display: flex;
    }
    
    #quiz-float-btn {
        display: none !important;
    }
    
    .navbar.scrolled {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.thumb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thumb-item:hover, .thumb-item.active {
    color: var(--clr-white);
    opacity: 1;
}

.thumb-icon {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.thumb-center {
    background: var(--grad-premium);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -35px;
    border: 4px solid #1a1e29;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.thumb-center .thumb-icon {
    font-size: 1.5rem;
    margin: 0;
}
