/*
Theme Name: Zuriglow Theme
Theme URI: https://zuriglow.ch
Author: Lorien Group
Author URI: https://www.lorien.group
Description: Custom WordPress theme for Züri Glow Beauty Studio – Kosmetikstudio in Zürich Altstetten.
Version: 1.0
License: All Rights Reserved
Text Domain: zuriglow
Tags: beauty, cosmetics, one-page, custom-theme
*/

/* ═══════════════════════════════════════════════════════════════
   ZÜRI GLOW Beauty Studio — Design System
   Aesthetic: Bold Glamour — Magenta, Purple, Gold & Dark
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Color Palette — BOLD, vibrant & glamorous */
    --color-cream:       #FFFCF7;
    --color-cream-warm:  #FFF6EC;
    --color-ivory:       #FEFBF8;
    --color-lavender:    #C850C0;
    --color-lavender-light: #E8D4F8;
    --color-lavender-deep: #A020A0;
    --color-magenta:     #C850C0;
    --color-magenta-bright: #E040D0;
    --color-purple-dark: #2D1640;
    --color-purple-rich: #6B2FA0;
    --color-logo-blue:   #9B8FD0;
    --color-logo-peach:  #E89070;
    --color-logo-pink:   #FF69B4;
    --color-logo-lilac:  #B48FE0;
    --color-apricot:     #F8D4B8;
    --color-apricot-soft: #FDE8D5;
    --color-blush:       #FF69B4;
    --color-blush-light: #FFB6D9;
    --color-gold:        #E8B94F;
    --color-gold-light:  #F0D060;
    --color-gold-shimmer: #DAA520;
    --color-charcoal:    #1A1423;
    --color-warm-gray:   #4A3D50;
    --color-soft-gray:   #8A7E90;
    --color-whisper:     #F5F0F8;
    --color-white:       #FFFFFF;

    /* Gradients — BOLD and energetic */
    --gradient-hero:     linear-gradient(180deg, #F5E6FF 0%, #EDD0F8 25%, #E0B8F0 50%, #D8A8E8 75%, #D0A0E0 100%);
    --gradient-gold:     linear-gradient(135deg, #E8B94F, #F0D060, #DAA520);
    --gradient-card:     linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 228, 250, 0.4));
    --gradient-glow:     radial-gradient(ellipse at center, rgba(200, 80, 192, 0.2) 0%, transparent 70%);
    --gradient-footer:   linear-gradient(180deg, #2D1640 0%, #1A0E28 100%);
    --gradient-magenta:  linear-gradient(135deg, #E040D0, #C850C0, #A020A0);
    --gradient-featured: linear-gradient(135deg, #7B2FA0 0%, #9B40C0 50%, #C850C0 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Inter', 'Helvetica Neue', 'Arial', sans-serif;

    /* Spacing Scale */
    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max:   1280px;
    --container-pad:   clamp(1.25rem, 4vw, 3rem);
    --section-pad:     clamp(2.5rem, 6vw, 5rem);
    --border-radius:   12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;

    /* Transitions */
    --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint:   cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast:  200ms var(--ease-out-expo);
    --transition-base:  400ms var(--ease-out-expo);
    --transition-slow:  700ms var(--ease-out-expo);

    /* Shadows — bolder */
    --shadow-soft:     0 4px 20px rgba(26, 20, 35, 0.08);
    --shadow-medium:   0 8px 40px rgba(26, 20, 35, 0.12);
    --shadow-elevated: 0 16px 60px rgba(26, 20, 35, 0.18);
    --shadow-gold:     0 8px 32px rgba(232, 185, 79, 0.25);
    --shadow-magenta:  0 8px 32px rgba(200, 80, 192, 0.3);
}

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

/* ─── Skip Navigation (Accessibility) ─── */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10001;
    padding: 12px 24px;
    background: var(--color-charcoal);
    color: var(--color-cream);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    transition: top 0.3s ease;
}
.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* ─── Focus Visible (Accessibility) ─── */
:focus-visible {
    outline: 3px solid var(--color-magenta);
    outline-offset: 3px;
    border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-charcoal);
    background: linear-gradient(180deg,
        #F5E6FF 0%,
        #EDD0F8 5%,
        #FFF0F5 12%,
        #FFF5F0 18%,
        #FFF0FA 25%,
        #F8EEFF 32%,
        #FFF5F0 40%,
        #FFEEF8 48%,
        #F5F0FF 55%,
        #FFF0F5 63%,
        #FFF8F0 70%,
        #F8EEFF 78%,
        #FFF0F5 85%,
        #F5EEFF 92%,
        #F0E8FA 100%
    );
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(200, 80, 192, 0.3);
    border-top-color: var(--color-gold);
    animation: preloaderSpin 1.2s linear infinite;
}

@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ─── Cursor Glow ─── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 80, 192, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* ─── Typography System ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-magenta);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(135deg, var(--color-logo-peach), var(--color-logo-pink), var(--color-logo-lilac));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--color-logo-peach), var(--color-logo-pink), var(--color-magenta), var(--color-logo-lilac), var(--color-logo-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--color-warm-gray);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
}

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

.section-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-label::before { display: none; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-magenta);
    color: var(--color-white);
    border: 1.5px solid transparent;
    font-weight: 600;
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--color-magenta-bright), var(--color-gold));
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-magenta);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover span, .btn-primary:hover svg { position: relative; z-index: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-soft-gray);
}

.btn-ghost:hover {
    border-color: var(--color-magenta);
    color: var(--color-magenta);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
    transform: translateY(-2px);
}

/* ─── Header / Navigation ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 0 var(--container-pad);
}

.header.scrolled {
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(26, 20, 35, 0.08);
}

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

.nav-logo img {
    height: 78px;
    width: 78px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 0 20px rgba(232, 185, 79, 0.4), 0 0 40px rgba(200, 80, 192, 0.2);
}

.nav-logo:hover img { transform: scale(1.12); box-shadow: 0 0 35px rgba(232, 185, 79, 0.6), 0 0 60px rgba(200, 80, 192, 0.3); }

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-magenta);
    transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active { color: var(--color-charcoal); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-charcoal);
    color: var(--color-cream);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-magenta);
    transform: translateY(-1px);
    box-shadow: var(--shadow-magenta);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-charcoal);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 252, 248, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

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

.mobile-nav-content { text-align: center; }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 300;
    color: var(--color-charcoal);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link[data-index="0"] { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link[data-index="1"] { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-link[data-index="2"] { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link[data-index="3"] { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-link[data-index="4"] { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-link[data-index="5"] { transition-delay: 0.35s; }

.mobile-nav-link:hover { color: var(--color-magenta); }

.mobile-nav-cta {
    display: inline-flex;
    padding: 14px 36px;
    background: var(--gradient-magenta);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo) 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-social {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo) 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-social { opacity: 1; }
.mobile-nav-social a { color: var(--color-warm-gray); transition: color var(--transition-fast); }
.mobile-nav-social a:hover { color: var(--color-magenta); }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}


.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-purple-dark);
    margin-bottom: var(--space-xl);
    border: 1.5px solid rgba(200, 80, 192, 0.3);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold-shimmer) 0%, var(--color-gold) 50%, var(--color-magenta-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.85;
    color: var(--color-purple-dark);
    max-width: 520px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero .btn-ghost {
    color: var(--color-charcoal);
    border-color: rgba(26, 20, 35, 0.3);
}

.hero .btn-ghost:hover {
    border-color: var(--color-magenta);
    color: var(--color-magenta);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-purple-dark);
}

.hero-trust-item svg { color: var(--color-gold); }

.hero-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(26, 20, 35, 0.2);
    opacity: 1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.hero-image-frame {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-elevated);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2.5px solid rgba(232, 185, 79, 0.5);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2.5px solid rgba(232, 185, 79, 0.4);
    opacity: 0.8;
    animation: accentFloat 6s ease-in-out infinite;
}

@keyframes accentFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -15px) rotate(180deg); }
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(200, 80, 192, 0.15);
    z-index: 3;
}

.hero-float-card-1 {
    bottom: 80px;
    left: -40px;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero-float-card-2 {
    top: 60px;
    right: -30px;
    animation: floatCard2 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-float-icon { font-size: 1.4rem; }

.hero-float-card strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: var(--color-charcoal);
}

.hero-float-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--color-soft-gray);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-purple-dark);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(26, 20, 35, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-magenta);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about {
    background: transparent;
}

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

.about-visual { position: relative; }

.about-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(200, 168, 233, 0.15) 100%);
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 252, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-charcoal);
    padding: 20px 28px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 184, 240, 0.3);
}

.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.about-exp-text {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 2px;
    color: var(--color-warm-gray);
}

.about-content { padding-left: var(--space-xl); }

.about-text p {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.85;
}

.about-values {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about-value {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    border-radius: var(--border-radius);
    color: var(--color-lavender-deep);
}

.about-value h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.about-value p {
    font-size: 0.9rem;
    color: var(--color-soft-gray);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   TREATMENTS SECTION
   ═══════════════════════════════════════════════════════════════ */
.treatments {
    background: transparent;
    position: relative;
}



.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.treatment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 80, 192, 0.15);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.treatment-card:hover {
    box-shadow: var(--shadow-magenta);
    border-color: var(--color-magenta);
}

.treatment-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.01);
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(42, 34, 38, 0.3) 100%);
    pointer-events: none;
}

.treatment-card-content {
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
    position: relative;
}

.treatment-card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    background: var(--gradient-magenta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -20px;
    right: 24px;
    line-height: 1;
    opacity: 0.5;
}

.treatment-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
    color: var(--color-charcoal);
}

.treatment-card-content p {
    font-size: 0.92rem;
    color: var(--color-warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.treatment-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.treatment-features li {
    font-size: 0.82rem;
    color: var(--color-soft-gray);
    padding-left: 16px;
    position: relative;
}

.treatment-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-magenta);
    transform: translateY(-50%);
}

.treatments-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════════════════════════
   STUDIO SECTION
   ═══════════════════════════════════════════════════════════════ */
.studio {
    background: transparent;
}

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

.studio-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.studio-feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.studio-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-gold-light);
    border-radius: 50%;
    color: var(--color-gold);
}

.studio-feature h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.studio-feature p {
    font-size: 0.9rem;
    color: var(--color-soft-gray);
    line-height: 1.6;
}

.studio-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.studio-image-main {
    grid-column: 1 / -1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.studio-image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.studio-image-secondary {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 3px solid var(--color-white);
}

.studio-image-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   PREISE / PRICING SECTION
   ═══════════════════════════════════════════════════════════════ */
.preise {
    background: transparent;
    position: relative;
}




/* Price Tabs */
.price-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.price-tab {
    padding: 12px 26px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(200, 80, 192, 0.1);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-warm-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.price-tab:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-charcoal);
    border-color: var(--color-magenta);
}

.price-tab.active {
    background: var(--gradient-magenta);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-magenta);
}

/* Price Panels */
.price-panels { position: relative; }

.price-panel {
    display: none;
    animation: panelFadeIn 0.4s var(--ease-out-expo);
}

.price-panel.active { display: block; }

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

/* Price Groups */
.price-group {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(200, 80, 192, 0.08);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
    position: relative;
    transition: all var(--transition-fast);
}

.price-group:hover {
    border-color: rgba(200, 80, 192, 0.2);
    box-shadow: var(--shadow-soft);
}

.price-group-featured {
    background: var(--gradient-featured);
    color: var(--color-cream);
    border-color: transparent;
    box-shadow: var(--shadow-magenta);
}

.price-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.price-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--color-magenta);
    flex-shrink: 0;
}

.price-group-featured .price-icon {
    color: var(--color-gold);
}

.price-group-header h3 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-group-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.price-badge {
    padding: 4px 14px;
    background: var(--gradient-gold);
    color: var(--color-charcoal);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
}

.price-group-desc {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.price-group-featured .price-group-desc {
    color: rgba(253, 250, 246, 0.6);
}

/* Price Rows */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 80, 192, 0.06);
    gap: var(--space-md);
}

.price-row:last-child { border-bottom: none; }

.price-group-featured .price-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-row span {
    font-size: 0.92rem;
    color: var(--color-warm-gray);
    font-weight: 400;
}

.price-group-featured .price-row span {
    color: rgba(253, 250, 246, 0.75);
}

.price-row strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--color-charcoal);
}

.price-group-featured .price-row strong {
    color: var(--color-gold-light);
}

.price-row-abo {
    background: rgba(197, 165, 90, 0.06);
    margin: 0 calc(var(--space-xl) * -1);
    padding: 10px var(--space-xl);
    border-bottom-color: rgba(197, 165, 90, 0.1);
}

.price-group-featured .price-row-abo {
    background: rgba(255, 255, 255, 0.05);
}

.price-row-abo span::before {
    content: '📦 ';
    font-size: 0.75rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-soft-gray);
    text-align: center;
    font-style: italic;
    margin-top: var(--space-lg);
}

.preise-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Treatment card badge */
.treatment-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--gradient-gold);
    color: var(--color-charcoal);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .price-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .price-tabs::-webkit-scrollbar { display: none; }
    .price-tab { font-size: 0.72rem; padding: 8px 16px; }
}

@media (max-width: 480px) {
    .price-group { padding: var(--space-md); }
    .price-row-abo {
        margin: 0 calc(var(--space-md) * -1);
        padding: 10px var(--space-md);
    }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background: var(--color-charcoal);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-charcoal), transparent);
}

.testimonials-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-charcoal), transparent);
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonial-item {
    flex-shrink: 0;
    width: 380px;
    padding: var(--space-xl) var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: var(--space-sm);
}

.testimonial-item p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-item span {
    font-size: 0.78rem;
    color: var(--color-soft-gray);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.kontakt {
    background: var(--color-white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.kontakt-detail {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.kontakt-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    border-radius: 50%;
    color: var(--color-lavender-deep);
}

.kontakt-detail strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-soft-gray);
    margin-bottom: 4px;
}

.kontakt-detail p, .kontakt-detail a {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.kontakt-detail a:hover { color: var(--color-lavender-deep); }

.kontakt-hours {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--color-ivory);
    border-radius: var(--border-radius);
}

.kontakt-hours h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.kontakt-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kontakt-hour {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.kontakt-hour span:first-child { color: var(--color-warm-gray); }
.kontakt-hour .closed { color: var(--color-blush); }

.kontakt-hours-note {
    margin-top: var(--space-md);
    font-size: 0.82rem;
    color: var(--color-gold);
    text-align: center;
}

.kontakt-social {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.kontakt-social span {
    font-size: 0.82rem;
    color: var(--color-soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-whisper);
    border-radius: 50%;
    color: var(--color-warm-gray);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-lavender-deep);
    color: var(--color-lavender-deep);
    transform: translateY(-2px);
}

/* Map */
.kontakt-map-wrapper {
    width: 100%;
    height: 420px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(200, 168, 233, 0.12);
}

.kontakt-book-btn {
    margin-top: var(--space-xl);
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--gradient-footer);
    color: var(--color-cream);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: var(--space-md);
    border-radius: 50%;
    border: 2px solid var(--color-gold-light);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--color-soft-gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

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

.footer-links-group a, .footer-links-group li {
    font-size: 0.85rem;
    color: var(--color-soft-gray);
    transition: color var(--transition-fast);
}

.footer-links-group a:hover { color: var(--color-gold-light); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding-top: var(--space-xl);
    font-size: 0.78rem;
    color: var(--color-soft-gray);
}

.footer-credit a {
    color: var(--color-gold-light);
    transition: color var(--transition-fast);
}

.footer-credit a:hover { color: var(--color-gold); }

/* SGMK Membership Badge */
.footer-membership {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
}

.sgmk-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.sgmk-badge:hover { opacity: 1; }

.sgmk-badge img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
}

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: var(--space-xl); }
    .hero-visual { order: 1; max-width: 280px; margin: 0 auto; }
    .hero-text { text-align: center; order: -1; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-float-card-1 { left: -10px; }
    .hero-float-card-2 { right: -10px; }

    .about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .about-content { padding-left: 0; }
    .about-visual { max-width: 500px; margin: 0 auto; }

    .studio-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .studio-visual { order: -1; }

    .kontakt-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }

    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero { min-height: auto; padding: 90px 0 30px; }
    .hero-float-card { display: none; }
    .hero-image-accent { display: none; }
    .hero-scroll-indicator { display: none; }

    /* Compact hero image on mobile — text first, small visual below */
    .hero-visual {
        max-width: 220px;
        margin: 0 auto;
    }
    .hero-image {
        aspect-ratio: 3 / 4;
        max-height: 260px;
        object-fit: cover;
        object-position: top center;
        border-radius: 20px;
    }
    .hero-image-frame {
        border-radius: 20px;
    }
    .hero-content {
        gap: var(--space-lg);
    }

    /* Compact about image on mobile */
    .about-image {
        max-height: 420px;
        object-fit: cover;
        object-position: top center;
    }

    /* Brighter mobile gradient — eliminate dark purple edges */
    .hero-bg-gradient {
        background: linear-gradient(180deg, #FFFCF7 0%, #FAF5FE 50%, #FFFCF7 100%);
    }
    .hero-bg-gradient::before {
        display: none;
    }
    .hero-bg-gradient::after {
        display: none;
    }
    .hero-particles {
        display: none;
    }

    /* Force white/bright backgrounds on all sections */
    body { background-color: #FFFFFF; }
    .about { background: #FFFFFF; }
    .treatments { background: #FFFFFF; }
    .treatments::before { display: none; }
    .studio { background: #FFFFFF; }
    .preise { background: #FFFFFF; }
    .preise::before { display: none; }
    .kontakt { background: #FFFFFF; }
    .instagram-section { background: #FFFFFF; }
    .testimonials-section { background: #FEFBF8; }
    .testimonials-section::before,
    .testimonials-section::after { display: none; }

    /* Fix transparent review cards on mobile */
    .testimonial-item {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        width: 300px;
    }
    .testimonial-item p {
        color: #4A4045;
    }
    .testimonial-item span {
        color: #8A7F85;
    }
    .testimonial-stars {
        color: #D4AD5A;
    }

    .instagram-section::before { display: none; }

    .treatments-grid { grid-template-columns: 1fr; }

    .preise-grid { grid-template-columns: 1fr; }
    .preise-card-featured { transform: none; }
    .preise-card-featured:hover { transform: translateY(-6px); }

    .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

    /* Softer footer on mobile */
    .footer {
        background: linear-gradient(180deg, #4A4045 0%, #3A3035 100%);
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-badge { font-size: 0.65rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; }
    .hero-trust-divider { width: 40px; height: 1px; }
    .hero-visual { max-width: 300px; }

    .preise-card { padding: var(--space-xl); }
    .preise-amount { font-size: 2.8rem; }

    .kontakt-map-wrapper { height: 300px; }

    .cursor-glow { display: none; }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
        padding: 14px 20px;
    }
}

/* Particle styles */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat linear forwards;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM FEED SLIDER
   ═══════════════════════════════════════════════════════════════ */
.instagram-section {
    background: var(--color-ivory);
    overflow: hidden;
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

/* Profile Bar */
.ig-profile-bar {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: 12px 12px 12px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 168, 233, 0.12);
    border-radius: 60px;
    margin-top: var(--space-lg);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.ig-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--color-gold-light);
}

.ig-profile-info strong {
    display: block;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.ig-profile-info span {
    display: block;
    font-size: 0.72rem;
    color: var(--color-soft-gray);
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.ig-follow-btn svg { stroke: white; }

.ig-follow-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.35);
    color: white;
}

/* Slider Wrapper */
.ig-slider-wrapper {
    position: relative;
    margin-top: var(--space-2xl);
}

.ig-slider-viewport {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.ig-slider-viewport:active { cursor: grabbing; }

.ig-slider-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.5s var(--ease-out-expo);
    will-change: transform;
}

.ig-slider-track.dragging {
    transition: none;
}

/* Individual Slide */
.ig-slide {
    flex-shrink: 0;
    width: calc((100% - 2 * var(--space-md)) / 3);
    aspect-ratio: 4 / 5;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    display: block;
}

.ig-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.ig-slide:hover img {
    transform: scale(1.08);
}

.ig-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(42, 34, 38, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.ig-slide:hover .ig-slide-overlay { opacity: 1; }

.ig-slide-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo) 0.1s;
}

.ig-slide:hover .ig-slide-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.ig-slide-caption {
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out-expo) 0.1s;
}

.ig-slide:hover .ig-slide-caption {
    transform: translateY(0);
}

/* Slider Arrows */
.ig-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 233, 0.15);
    border-radius: 50%;
    color: var(--color-charcoal);
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.ig-slider-arrow:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.ig-slider-prev { left: -22px; }
.ig-slider-next { right: -22px; }

.ig-slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Slider Dots */
.ig-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-xl);
}

.ig-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-whisper);
    border: 1.5px solid var(--color-soft-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.ig-slider-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.3);
}

.ig-slider-dot:hover:not(.active) {
    background: var(--color-lavender-light);
    border-color: var(--color-lavender);
}

/* Social CTA */
.ig-social-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .ig-slider-prev { left: 8px; }
    .ig-slider-next { right: 8px; }
}

@media (max-width: 768px) {
    .ig-slide {
        width: calc((100% - var(--space-md)) / 2);
    }
    .ig-slider-arrow { display: none; }
    .ig-profile-bar {
        flex-direction: column;
        gap: var(--space-md);
        border-radius: var(--border-radius);
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .ig-slide {
        width: calc(100% - 20px);
    }
    .ig-social-cta { flex-direction: column; align-items: center; }
}

/* Noise texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-widget:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER CERTIFICATION BADGES
   ═══════════════════════════════════════════════════════════════ */
.footer-cert-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}
.footer-cert-text strong {
    color: var(--color-gold);
    font-weight: 600;
}
.footer-cert-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.vnissg-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 10px 20px;
    background: rgba(212, 173, 90, 0.08);
    border: 1px solid rgba(212, 173, 90, 0.25);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}
.vnissg-badge:hover {
    border-color: rgba(212, 173, 90, 0.5);
}
.vnissg-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
}
.vnissg-badge span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* SGMK badge larger */
.sgmk-badge img {
    height: 80px;
    transition: opacity 0.3s ease;
}
.sgmk-badge:hover img {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .footer-cert-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS — Logo Colors Flow
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: transparent;
    padding: var(--space-2xl) 0;
    overflow: visible;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.testimonials-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
    display: none !important;
    content: none !important;
    background: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    animation: marqueeScroll 35s linear infinite;
}

.testimonial-item {
    min-width: 380px;
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(200, 80, 192, 0.1);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.testimonial-item:hover {
    border-color: rgba(200, 80, 192, 0.25);
    box-shadow: var(--shadow-magenta);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-item p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.testimonial-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-logo-pink);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION — Logo Colors
   ═══════════════════════════════════════════════════════════════ */
.kontakt {
    background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT & STUDIO ICON ACCENTS — Logo Colors
   ═══════════════════════════════════════════════════════════════ */
.about-value-icon,
.studio-feature-icon {
    color: var(--color-logo-pink);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(155, 143, 208, 0.1));
    border-radius: 12px;
    padding: 10px;
    flex-shrink: 0;
}

.about-value:nth-child(2) .about-value-icon,
.studio-feature:nth-child(2) .studio-feature-icon {
    color: var(--color-logo-lilac);
    background: linear-gradient(135deg, rgba(180, 143, 224, 0.1), rgba(200, 80, 192, 0.1));
}

.about-value:nth-child(3) .about-value-icon,
.studio-feature:nth-child(3) .studio-feature-icon {
    color: var(--color-logo-peach);
    background: linear-gradient(135deg, rgba(232, 144, 112, 0.1), rgba(232, 185, 79, 0.1));
}

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM SECTION — Logo Colors
   ═══════════════════════════════════════════════════════════════ */
.instagram-section {
    background: transparent !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Solid dark background (overrides body gradient)
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: linear-gradient(180deg, #2D1640 0%, #1A0E28 100%) !important;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.footer a,
.footer p,
.footer li,
.footer h4,
.footer span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer a:hover {
    color: var(--color-gold) !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Social icons in contact section — force visible */
.kontakt-social-links .social-link {
    color: var(--color-magenta) !important;
    border-color: var(--color-magenta) !important;
}

.kontakt-social-links .social-link svg {
    stroke: var(--color-magenta) !important;
    fill: none !important;
}

.kontakt-social-links .social-link:nth-child(2) svg {
    fill: var(--color-magenta) !important;
    stroke: none !important;
}

.kontakt-social-links .social-link:nth-child(3) svg {
    fill: var(--color-magenta) !important;
    stroke: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS — Remove edge gradient masks
   ═══════════════════════════════════════════════════════════════ */
.testimonials-marquee::before,
.testimonials-marquee::after {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — Hide hero image, adjust layout
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
    }

    .hero-text {
        text-align: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Footer mobile centering */
    .footer-top {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem !important;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links-group {
        text-align: center;
    }

    .footer-links-group ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column !important;
        gap: 0.5rem;
    }

    .footer-membership {
        display: flex;
        justify-content: center;
    }

    .footer-cert-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Contact section mobile */
    .kontakt-grid {
        grid-template-columns: 1fr !important;
    }

    .kontakt-social {
        text-align: center;
    }

    .kontakt-social-links {
        justify-content: center;
    }
}

/* Remove body gradient leaking into footer area */
body::after {
    content: none;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL SECTIONS (Impressum / Datenschutz)
   ═══════════════════════════════════════════════════════════════ */
.legal-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.legal-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: var(--space-2xl);
    color: var(--color-charcoal);
}
.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}
.legal-section p,
.legal-section li {
    font-size: 0.92rem;
    color: var(--color-warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}
.legal-section a {
    color: var(--color-magenta);
    text-decoration: underline;
}
.legal-section a:hover {
    color: var(--color-lavender-deep);
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(26, 20, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-xl) var(--container-pad);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}
.cookie-consent.visible {
    transform: translateY(0);
}
.cookie-consent.hidden {
    transform: translateY(100%);
    pointer-events: none;
}
.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}
.cookie-consent p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}
.cookie-consent a {
    color: var(--color-gold);
    text-decoration: underline;
}
.cookie-consent-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 24px;
    font-size: 0.78rem;
}
.cookie-consent .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}
.cookie-consent .btn-ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}
@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION (WCAG 2.1 AA)
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-particles,
    .hero-particle,
    .cursor-glow,
    .hero-image-accent,
    .hero-float-card,
    .preloader-ring {
        display: none !important;
    }
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
    .testimonials-track {
        animation: none !important;
    }
}

/* ===== LEGAL SECTIONS (Impressum / Datenschutz) ===== */
.legal-section {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    padding: 4rem 2rem;
    animation: legalFadeIn 0.3s ease;
}

.legal-section.active {
    display: block;
}

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

.legal-section .container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 1.5rem 0 0.5rem;
}

.legal-section p,
.legal-section li {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
}

.legal-section a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: #fff;
}

.legal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.legal-close:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES MARQUEE BAND
   ═══════════════════════════════════════════════════════════════ */
.marquee-band {
    background: var(--color-charcoal);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeSlide 25s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    padding: 0 12px;
}

.marquee-dot {
    color: var(--color-gold) !important;
    font-size: 0.6rem !important;
    letter-spacing: 0 !important;
    padding: 0 8px !important;
}

@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   DARK STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, #1A0E28 0%, #2D1640 50%, #1A0E28 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 80, 192, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.stat-rating {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.stats-tagline {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
    background: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(200, 80, 192, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(200, 80, 192, 0.2);
}

.faq-item.active {
    border-color: var(--color-magenta);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--color-magenta);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--color-soft-gray);
    transition: transform var(--transition-base), color var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-magenta);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
    padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-warm-gray);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--color-lavender-deep);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: var(--space-md) var(--space-lg);
    }
    .faq-answer {
        padding: 0 var(--space-lg);
    }
    .faq-item.active .faq-answer {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ═══════════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(26, 20, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    .whatsapp-widget {
        bottom: 80px;
    }
    .cookie-consent {
        bottom: 64px;
    }
}

.mobile-sticky-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.mobile-sticky-phone:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.mobile-sticky-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px 20px;
    background: var(--gradient-magenta);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.mobile-sticky-book:hover {
    box-shadow: var(--shadow-magenta);
}

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════ */
.error-404 {
    background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   LASER SPECIAL BANNER
   ═══════════════════════════════════════════════════════════════ */
.laser-special {
    padding-top: 0;
}

.laser-special-card {
    background: var(--gradient-featured);
    border-radius: var(--border-radius-xl);
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-magenta);
}

.laser-special-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(232, 185, 79, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.laser-special-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--color-charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: var(--space-lg);
}

.laser-special-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.laser-special-title em {
    font-style: italic;
    color: var(--color-gold-light);
}

.laser-special-desc {
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: rgba(253, 250, 246, 0.8);
    line-height: 1.7;
}

.laser-special-offer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.laser-special-offer-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.85);
}

.laser-special-price-old {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: rgba(253, 250, 246, 0.5);
    text-decoration: line-through;
}

.laser-special-price {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--color-gold-light);
    line-height: 1;
}

.laser-special-note {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(253, 250, 246, 0.6);
    margin-bottom: var(--space-xl);
}

.laser-special-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.btn-ghost-light {
    color: var(--color-cream);
    border-color: rgba(253, 250, 246, 0.5);
}

.btn-ghost-light:hover {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}
