/* ═══════════════════════════════════════════════════════════════
   SIA WELLNESS STUDIO — COSMIC GOLD DESIGN SYSTEM
   Tema: Dark Cosmic + Oro + Glassmorphism (stile Lobby SIA)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ══════ VARIABILI GLOBALI ══════ */
:root {
    /* Cosmic Background */
    --nero-profondo: #0a0a0f;
    --blu-notte: #0c0f2e;
    --cosmo-bg: #0a0a1a;

    /* Gold Palette */
    --oro: #D9C89E;
    --oro-satinato: #C5A55A;
    --oro-caldo: #B8963E;
    --oro-chiaro: #f4e4c1;
    --oro-bg: rgba(217, 200, 158, 0.08);
    --oro-border: rgba(217, 200, 158, 0.25);
    --oro-glow: rgba(217, 200, 158, 0.4);

    /* Viola Accent (inherited from lobby identity) */
    --viola: #6F42C1;
    --viola-bg: rgba(111, 66, 193, 0.15);
    --rosa: #D66FD6;
    --blu: #4A63D9;

    /* Rainbow Card Accents */
    --rainbow-coral: #FF6B6B;
    --rainbow-coral-glow: rgba(255, 107, 107, 0.35);
    --rainbow-emerald: #2ECC71;
    --rainbow-emerald-glow: rgba(46, 204, 113, 0.35);
    --rainbow-sapphire: #3498DB;
    --rainbow-sapphire-glow: rgba(52, 152, 219, 0.35);
    --rainbow-amethyst: #9B59B6;
    --rainbow-amethyst-glow: rgba(155, 89, 182, 0.35);
    --rainbow-amber: #F39C12;
    --rainbow-amber-glow: rgba(243, 156, 18, 0.35);
    --rainbow-rose: #E91E63;
    --rainbow-rose-glow: rgba(233, 30, 99, 0.35);
    --rainbow-teal: #00BCD4;
    --rainbow-teal-glow: rgba(0, 188, 212, 0.35);
    --rainbow-magenta: #E040FB;
    --rainbow-magenta-glow: rgba(224, 64, 251, 0.35);
    --rainbow-lime: #8BC34A;
    --rainbow-lime-glow: rgba(139, 195, 74, 0.35);
    --rainbow-sky: #42A5F5;
    --rainbow-sky-glow: rgba(66, 165, 245, 0.35);

    /* Text Colors */
    --bianco: #f7f7f7;
    --bianco-morbido: rgba(247, 247, 247, 0.85);
    --bianco-tenue: rgba(247, 247, 247, 0.6);
    --bianco-ombra: rgba(247, 247, 247, 0.4);

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: all 0.5s var(--ease-luxury);

    /* Shadows */
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --gold-glow: 0 0 60px rgba(217, 200, 158, 0.15);
    --gold-glow-hover: 0 0 100px rgba(217, 200, 158, 0.25), 0 30px 60px rgba(217, 200, 158, 0.2);
}

/* ══════ RESET & BASE ══════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--cosmo-bg);
}

body {
    font-family: var(--font-sans);
    color: var(--bianco);
    line-height: 1.7;
    font-weight: 300;
    background: transparent;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Gradiente cosmico fisso come sfondo */
body::before {
    content: '';
    position: fixed;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: linear-gradient(135deg, var(--nero-profondo) 0%, var(--blu-notte) 50%, var(--cosmo-bg) 100%);
    z-index: -2;
    pointer-events: none;
}

/* ══════ STARFIELD ══════ */
.starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ══════ TYPOGRAPHY ══════ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--bianco);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
    color: var(--bianco-morbido);
    font-size: 1.1rem;
    line-height: 1.85;
}

.label-upper {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oro-satinato);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--bianco-tenue);
    max-width: 700px;
    margin: 0 auto;
}

.gold-text {
    background: linear-gradient(135deg, var(--oro-chiaro), var(--oro-satinato), var(--oro-caldo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════ LAYOUT ══════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

/* ══════ GOLD DIVIDER LINE ══════ */
.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--oro-satinato), var(--oro-chiaro), var(--oro-satinato), transparent);
    margin: 1.5rem auto;
    position: relative;
}

.gold-line::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
    color: var(--oro-satinato);
    background: var(--cosmo-bg);
    padding: 0 8px;
}

/* ══════ DECORATIVE BANDS ══════ */
.gold-band {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(217, 200, 158, 0.1) 10%,
            var(--oro-satinato) 30%,
            var(--oro-chiaro) 50%,
            var(--oro-satinato) 70%,
            rgba(217, 200, 158, 0.1) 90%,
            transparent 100%);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(217, 200, 158, 0.3), 0 0 60px rgba(217, 200, 158, 0.1);
}

.white-band {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(247, 247, 247, 0.05) 15%,
            rgba(247, 247, 247, 0.2) 35%,
            rgba(247, 247, 247, 0.35) 50%,
            rgba(247, 247, 247, 0.2) 65%,
            rgba(247, 247, 247, 0.05) 85%,
            transparent 100%);
    position: relative;
    z-index: 2;
}

/* Double gold band variant */
.gold-band-double {
    width: 100%;
    height: 16px;
    position: relative;
    z-index: 2;
}

.gold-band-double::before,
.gold-band-double::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--oro-satinato) 20%,
            var(--oro-chiaro) 50%,
            var(--oro-satinato) 80%,
            transparent 100%);
}

.gold-band-double::before {
    top: 0;
    box-shadow: 0 0 15px rgba(217, 200, 158, 0.25);
}

.gold-band-double::after {
    bottom: 0;
    box-shadow: 0 0 15px rgba(217, 200, 158, 0.25);
}

/* Section separator — cosmic diamond */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.section-separator::before,
.section-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--oro-satinato), transparent);
}

.section-separator::before {
    margin-right: 1.5rem;
}

.section-separator::after {
    margin-left: 1.5rem;
}

.section-separator span {
    color: var(--oro-satinato);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

/* ══════ NAVBAR ══════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: all 0.5s var(--ease-luxury);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--oro-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.navbar-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.navbar-logo-text {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--oro);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(217, 200, 158, 0.3);
}

.navbar-logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--bianco-tenue);
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.navbar-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bianco-tenue);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--oro-satinato);
    transition: width 0.3s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--oro);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--oro);
    transition: var(--transition);
}

.navbar-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.navbar-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.navbar-mobile.open {
    display: flex;
}

.navbar-mobile a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--bianco-morbido);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.navbar-mobile a:hover {
    color: var(--oro);
}

/* ══════ HERO SECTION ══════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 2rem 120px;
    position: relative;
}

/* Cosmic radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 200, 158, 0.06) 0%, rgba(111, 66, 193, 0.04) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(217, 200, 158, 0.15);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--bianco-tenue);
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════ HERO & CARD SVG ICONS ══════ */
.hero-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: iconGlow 4s ease-in-out infinite;
}

.hero-icon svg {
    filter: drop-shadow(0 0 15px rgba(217, 200, 158, 0.3));
}

.card-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}

.card-icon svg {
    filter: drop-shadow(0 0 10px rgba(217, 200, 158, 0.25));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.luxury-card:hover .card-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(217, 200, 158, 0.4));
}

@keyframes iconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(217, 200, 158, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(217, 200, 158, 0.45));
    }
}

/* ══════ HERO SLIDER ══════ */
.hero-slider {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.hero-slide {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide.active .hero-inner {
    animation: heroSlideIn 0.8s ease-out;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(217, 200, 158, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    border-color: var(--oro);
    background: rgba(217, 200, 158, 0.3);
}

.hero-dot.active {
    background: var(--oro);
    border-color: var(--oro);
    box-shadow: 0 0 12px rgba(217, 200, 158, 0.4);
}

/* Slider progress bar */
.hero-slider-progress {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--oro-satinato), var(--oro));
    border-radius: 2px;
    transition: width 0.1s linear;
}

.hero-slider-progress-bar.animating {
    animation: heroProgressFill 5s linear forwards;
}

@keyframes heroProgressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ══════ BUTTONS ══════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--oro-satinato), var(--oro-caldo));
    color: var(--nero-profondo);
    box-shadow: 0 4px 20px rgba(217, 200, 158, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(217, 200, 158, 0.5), 0 0 80px rgba(217, 200, 158, 0.15);
    transform: translateY(-2px);
}

/* Gold shine sweep on primary buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -140%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.15) 70%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: goldShineSweep 5.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes goldShineSweep {
    0% {
        left: -140%;
    }

    55% {
        left: -140%;
    }

    100% {
        left: 140%;
    }
}

.btn-outline {
    background: linear-gradient(135deg, rgba(217, 200, 158, 0.15), rgba(111, 66, 193, 0.2));
    color: var(--oro);
    border: 1px solid var(--oro-border);
    box-shadow: 0 0 20px rgba(217, 200, 158, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(217, 200, 158, 0.25), rgba(111, 66, 193, 0.3));
    border-color: var(--oro-satinato);
    box-shadow: 0 0 40px rgba(217, 200, 158, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 3.2rem;
    font-size: 0.88rem;
}

.btn-sm {
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
}

/* ══════ SECTION STYLES ══════ */
.section-dark {
    background: rgba(10, 10, 26, 0.4);
    border-top: 1px solid rgba(217, 200, 158, 0.06);
    border-bottom: 1px solid rgba(217, 200, 158, 0.06);
}

.section-accent {
    background: linear-gradient(135deg, rgba(217, 200, 158, 0.04) 0%, rgba(111, 66, 193, 0.03) 100%);
    border-top: 1px solid rgba(217, 200, 158, 0.08);
    border-bottom: 1px solid rgba(217, 200, 158, 0.08);
}

/* ══════ CARDS — RAINBOW GLASSMORPHISM ══════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.luxury-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.12) 0%,
            rgba(111, 66, 193, 0.06) 100%);
    border: 1px solid var(--oro-border);
    border-radius: 24px;
    padding: clamp(1.8rem, 3vw, 2.5rem);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

/* ── Rainbow accent top bar on cards ── */
.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rainbow-coral), var(--rainbow-amber));
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

/* Rainbow color cycling per card position */
.card-grid .luxury-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--rainbow-coral), var(--rainbow-amber));
}

.card-grid .luxury-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--rainbow-emerald), var(--rainbow-teal));
}

.card-grid .luxury-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--rainbow-sapphire), var(--rainbow-sky));
}

.card-grid .luxury-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--rainbow-amethyst), var(--rainbow-magenta));
}

.card-grid .luxury-card:nth-child(5)::before {
    background: linear-gradient(90deg, var(--rainbow-amber), var(--rainbow-lime));
}

.card-grid .luxury-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--rainbow-rose), var(--rainbow-coral));
}

.card-grid .luxury-card:nth-child(7)::before {
    background: linear-gradient(90deg, var(--rainbow-teal), var(--rainbow-sapphire));
}

.card-grid .luxury-card:nth-child(8)::before {
    background: linear-gradient(90deg, var(--rainbow-magenta), var(--rainbow-amethyst));
}

/* Colored glow matching the accent */
.card-grid .luxury-card:nth-child(1):hover {
    box-shadow: 0 0 60px var(--rainbow-coral-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(2):hover {
    box-shadow: 0 0 60px var(--rainbow-emerald-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(3):hover {
    box-shadow: 0 0 60px var(--rainbow-sapphire-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(4):hover {
    box-shadow: 0 0 60px var(--rainbow-amethyst-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(5):hover {
    box-shadow: 0 0 60px var(--rainbow-amber-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(6):hover {
    box-shadow: 0 0 60px var(--rainbow-rose-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(7):hover {
    box-shadow: 0 0 60px var(--rainbow-teal-glow), var(--card-shadow);
}

.card-grid .luxury-card:nth-child(8):hover {
    box-shadow: 0 0 60px var(--rainbow-magenta-glow), var(--card-shadow);
}

.luxury-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(217, 200, 158, 0.45);
    box-shadow: var(--gold-glow-hover);
}

/* Gold shine sweep on cards */
.luxury-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -140%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 30%,
            rgba(217, 200, 158, 0.15) 50%,
            rgba(255, 255, 255, 0.06) 70%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: goldShineSweep 7s ease-in-out infinite;
    pointer-events: none;
}

.luxury-card h3 {
    font-family: var(--font-serif);
    margin-bottom: 0.75rem;
    color: var(--oro-chiaro);
}

.luxury-card p {
    font-size: 1.05rem;
    color: var(--bianco-morbido);
}

/* ══════ TREATMENT CARDS — RAINBOW ══════ */
.treatment-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.10) 0%,
            rgba(111, 66, 193, 0.05) 100%);
    border: 1px solid var(--oro-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Rainbow left accent bar */
.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, var(--rainbow-coral), var(--rainbow-amber));
    pointer-events: none;
}

/* Rainbow cycling per treatment position */
.card-grid .treatment-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--rainbow-coral), var(--rainbow-amber));
}

.card-grid .treatment-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--rainbow-emerald), var(--rainbow-teal));
}

.card-grid .treatment-card:nth-child(3)::before {
    background: linear-gradient(180deg, var(--rainbow-sapphire), var(--rainbow-sky));
}

.card-grid .treatment-card:nth-child(4)::before {
    background: linear-gradient(180deg, var(--rainbow-amethyst), var(--rainbow-magenta));
}

.card-grid .treatment-card:nth-child(5)::before {
    background: linear-gradient(180deg, var(--rainbow-amber), var(--rainbow-lime));
}

.card-grid .treatment-card:nth-child(6)::before {
    background: linear-gradient(180deg, var(--rainbow-rose), var(--rainbow-coral));
}

.card-grid .treatment-card:nth-child(7)::before {
    background: linear-gradient(180deg, var(--rainbow-teal), var(--rainbow-sapphire));
}

.card-grid .treatment-card:nth-child(8)::before {
    background: linear-gradient(180deg, var(--rainbow-magenta), var(--rainbow-amethyst));
}

.card-grid .treatment-card:nth-child(9)::before {
    background: linear-gradient(180deg, var(--rainbow-lime), var(--rainbow-emerald));
}

.card-grid .treatment-card:nth-child(10)::before {
    background: linear-gradient(180deg, var(--rainbow-sky), var(--rainbow-sapphire));
}

.card-grid .treatment-card:nth-child(11)::before {
    background: linear-gradient(180deg, var(--rainbow-coral), var(--rainbow-rose));
}

/* Hover glows per treatment */
.card-grid .treatment-card:nth-child(1):hover {
    box-shadow: 0 20px 50px var(--rainbow-coral-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(2):hover {
    box-shadow: 0 20px 50px var(--rainbow-emerald-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(3):hover {
    box-shadow: 0 20px 50px var(--rainbow-sapphire-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(4):hover {
    box-shadow: 0 20px 50px var(--rainbow-amethyst-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(5):hover {
    box-shadow: 0 20px 50px var(--rainbow-amber-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(6):hover {
    box-shadow: 0 20px 50px var(--rainbow-rose-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(7):hover {
    box-shadow: 0 20px 50px var(--rainbow-teal-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(8):hover {
    box-shadow: 0 20px 50px var(--rainbow-magenta-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(9):hover {
    box-shadow: 0 20px 50px var(--rainbow-lime-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(10):hover {
    box-shadow: 0 20px 50px var(--rainbow-sky-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.card-grid .treatment-card:nth-child(11):hover {
    box-shadow: 0 20px 50px var(--rainbow-coral-glow), 0 0 60px rgba(0, 0, 0, 0.3);
}

.treatment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 200, 158, 0.45);
    box-shadow: 0 25px 60px rgba(217, 200, 158, 0.15), 0 0 80px rgba(217, 200, 158, 0.08);
}

.treatment-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--oro-chiaro);
    display: block;
    margin-bottom: 0.75rem;
}

.treatment-desc {
    font-size: 1rem;
    color: var(--bianco-morbido);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.treatment-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.treatment-benefits li {
    font-size: 0.95rem;
    color: var(--bianco-tenue);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.treatment-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--oro-satinato);
    font-size: 0.75rem;
}

.treatment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(217, 200, 158, 0.1);
    margin-bottom: 1rem;
}

.treatment-duration {
    font-size: 0.9rem;
    color: var(--bianco-tenue);
    letter-spacing: 0.05em;
}

.treatment-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--oro);
    font-weight: 600;
}

.treatment-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ══════ PRICING CARDS ══════ */
.pricing-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.15) 0%,
            rgba(111, 66, 193, 0.08) 100%);
    border: 1px solid rgba(217, 200, 158, 0.35);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow), var(--gold-glow);
}

/* Gold shine on pricing cards */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -140%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.06) 30%,
            rgba(217, 200, 158, 0.25) 50%,
            rgba(255, 255, 255, 0.08) 70%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: goldShineSweep 6s ease-in-out infinite;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(217, 200, 158, 0.6);
    box-shadow: var(--gold-glow-hover);
}

.pricing-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro-satinato);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--oro-chiaro);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(217, 200, 158, 0.3);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--bianco-tenue);
    margin-bottom: 2rem;
}

/* ══════ BUNDLE / PACKAGE CARDS ══════ */
.bundle-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.12) 0%,
            rgba(111, 66, 193, 0.06) 100%);
    border: 1px solid var(--oro-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

.bundle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(217, 200, 158, 0.2), transparent 50%, rgba(111, 66, 193, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Gold shine sweep on bundles */
.bundle-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -140%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 30%,
            rgba(217, 200, 158, 0.15) 50%,
            rgba(255, 255, 255, 0.06) 70%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: goldShineSweep 8s ease-in-out infinite;
    pointer-events: none;
}

.bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 200, 158, 0.5);
    box-shadow: var(--gold-glow-hover);
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bundle-type {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro-satinato);
    margin-bottom: 0.5rem;
}

.bundle-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--oro-chiaro);
}

.bundle-includes {
    margin-bottom: 2rem;
}

.bundle-includes h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bianco-tenue);
    margin-bottom: 0.75rem;
}

.bundle-includes ul {
    list-style: none;
    padding: 0;
}

.bundle-includes li {
    font-size: 0.85rem;
    color: var(--bianco-morbido);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(217, 200, 158, 0.06);
}

.bundle-includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--oro-satinato);
    font-size: 0.6rem;
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(217, 200, 158, 0.12);
    margin-bottom: 1.5rem;
}

.bundle-total {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--oro);
    text-shadow: 0 0 20px rgba(217, 200, 158, 0.2);
}

.bundle-installment {
    font-size: 0.82rem;
    color: var(--bianco-tenue);
}

.bundle-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ══════ DETOX LEVEL CARDS — RAINBOW ══════ */
.detox-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.detox-level-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.10) 0%,
            rgba(111, 66, 193, 0.06) 100%);
    border: 1px solid var(--oro-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--card-shadow);
}

.detox-level-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -140%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(217, 200, 158, 0.10) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: goldShineSweep 7s ease-in-out infinite;
    pointer-events: none;
}

.detox-level-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 200, 158, 0.5);
    box-shadow: var(--gold-glow-hover);
}

.detox-level-card.featured {
    border-color: rgba(217, 200, 158, 0.5);
    box-shadow: var(--card-shadow), var(--gold-glow);
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.18) 0%,
            rgba(111, 66, 193, 0.10) 100%);
}

.detox-days {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--oro);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(217, 200, 158, 0.3);
}

.detox-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro-satinato);
    margin-bottom: 1rem;
}

.detox-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--oro-chiaro);
    margin-bottom: 1rem;
}

.detox-desc {
    font-size: 0.88rem;
    color: var(--bianco-tenue);
}

/* ══════ DETOX CARD (generic, used in detox.html) ══════ */
.detox-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.10) 0%,
            rgba(111, 66, 193, 0.06) 100%);
    border: 1px solid var(--oro-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--card-shadow);
}

.detox-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--rainbow-emerald), var(--rainbow-teal));
    pointer-events: none;
}

.card-grid-3 .detox-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--rainbow-lime), var(--rainbow-emerald));
}

.card-grid-3 .detox-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--rainbow-amber), var(--rainbow-coral));
}

.card-grid-3 .detox-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--rainbow-magenta), var(--rainbow-amethyst));
}

.card-grid-3 .detox-card:nth-child(1):hover {
    box-shadow: 0 0 60px var(--rainbow-emerald-glow), var(--card-shadow);
}

.card-grid-3 .detox-card:nth-child(2):hover {
    box-shadow: 0 0 60px var(--rainbow-amber-glow), var(--card-shadow);
}

.card-grid-3 .detox-card:nth-child(3):hover {
    box-shadow: 0 0 60px var(--rainbow-magenta-glow), var(--card-shadow);
}

.detox-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 200, 158, 0.5);
}

/* ══════ PROCESS / STEPS ══════ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.06) 0%,
            rgba(111, 66, 193, 0.03) 100%);
    border: 1px solid rgba(217, 200, 158, 0.12);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    counter-increment: step;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.process-step:hover {
    border-color: rgba(217, 200, 158, 0.3);
    box-shadow: 0 0 40px rgba(217, 200, 158, 0.08);
}

.process-step::before {
    content: counter(step);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(217, 200, 158, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.process-step h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--oro-chiaro);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--bianco-tenue);
}

/* ══════ TIMELINE ══════ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--oro-satinato), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.35rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--oro-satinato);
    box-shadow: 0 0 12px rgba(217, 200, 158, 0.4);
}

.timeline-year {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--oro-satinato);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-text {
    font-size: 0.92rem;
    color: var(--bianco-morbido);
}

/* ══════ TESTIMONIALS — RAINBOW ══════ */
.testimonial-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.08) 0%,
            rgba(111, 66, 193, 0.04) 100%);
    border: 1px solid rgba(217, 200, 158, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Rainbow right accent bar */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    border-radius: 0 20px 20px 0;
    pointer-events: none;
}

.card-grid .testimonial-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--rainbow-sky), var(--rainbow-sapphire));
}

.card-grid .testimonial-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--rainbow-rose), var(--rainbow-magenta));
}

.card-grid .testimonial-card:nth-child(3)::before {
    background: linear-gradient(180deg, var(--rainbow-emerald), var(--rainbow-lime));
}

.card-grid .testimonial-card:nth-child(1):hover {
    box-shadow: 0 0 50px var(--rainbow-sky-glow);
}

.card-grid .testimonial-card:nth-child(2):hover {
    box-shadow: 0 0 50px var(--rainbow-rose-glow);
}

.card-grid .testimonial-card:nth-child(3):hover {
    box-shadow: 0 0 50px var(--rainbow-emerald-glow);
}

.testimonial-card:hover {
    border-color: rgba(217, 200, 158, 0.35);
    box-shadow: 0 0 40px rgba(217, 200, 158, 0.08);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--bianco-morbido);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--oro-satinato);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--oro);
    letter-spacing: 0.1em;
}

/* ══════ BENEFIT CARDS — RAINBOW ══════ */
.benefit-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.08) 0%,
            rgba(111, 66, 193, 0.04) 100%);
    border: 1px solid rgba(217, 200, 158, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Rainbow bottom accent bar */
.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

.card-grid .benefit-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--rainbow-coral), var(--rainbow-amber));
}

.card-grid .benefit-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--rainbow-sapphire), var(--rainbow-teal));
}

.card-grid .benefit-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--rainbow-emerald), var(--rainbow-lime));
}

.card-grid .benefit-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--rainbow-amethyst), var(--rainbow-rose));
}

.card-grid .benefit-card:nth-child(5)::before {
    background: linear-gradient(90deg, var(--rainbow-teal), var(--rainbow-sky));
}

.card-grid .benefit-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--rainbow-magenta), var(--rainbow-coral));
}

.card-grid .benefit-card:nth-child(1):hover {
    box-shadow: 0 0 50px var(--rainbow-coral-glow);
}

.card-grid .benefit-card:nth-child(2):hover {
    box-shadow: 0 0 50px var(--rainbow-sapphire-glow);
}

.card-grid .benefit-card:nth-child(3):hover {
    box-shadow: 0 0 50px var(--rainbow-emerald-glow);
}

.card-grid .benefit-card:nth-child(4):hover {
    box-shadow: 0 0 50px var(--rainbow-amethyst-glow);
}

.card-grid .benefit-card:nth-child(5):hover {
    box-shadow: 0 0 50px var(--rainbow-teal-glow);
}

.card-grid .benefit-card:nth-child(6):hover {
    box-shadow: 0 0 50px var(--rainbow-magenta-glow);
}

.benefit-card:hover {
    border-color: rgba(217, 200, 158, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(217, 200, 158, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(217, 200, 158, 0.4));
}

.benefit-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--oro-chiaro);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--bianco-tenue);
}

/* ══════ VISION / APPROACH CARDS ══════ */
.vision-card {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.06) 0%,
            rgba(111, 66, 193, 0.04) 100%);
    border: 1px solid rgba(217, 200, 158, 0.12);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.vision-card:hover {
    border-color: rgba(217, 200, 158, 0.3);
    box-shadow: 0 0 40px rgba(217, 200, 158, 0.08);
}

.vision-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(217, 200, 158, 0.2);
    margin-bottom: 0.75rem;
}

.vision-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--oro-chiaro);
    margin-bottom: 0.75rem;
}

.vision-card p {
    font-size: 0.88rem;
    color: var(--bianco-tenue);
}

/* ══════ VIDEO PLACEHOLDER ══════ */
.video-container {
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.06) 0%,
            rgba(111, 66, 193, 0.04) 100%);
    border: 1px solid rgba(217, 200, 158, 0.15);
    border-radius: 20px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--bianco-ombra);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.play-icon {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(217, 200, 158, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(217, 200, 158, 0.1);
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid var(--oro);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.play-icon:hover {
    border-color: var(--oro-satinato);
    box-shadow: 0 0 60px rgba(217, 200, 158, 0.25);
    transform: scale(1.1);
}

/* ══════ PROFILE IMAGE PLACEHOLDER ══════ */
.profile-container {
    width: 280px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(217, 200, 158, 0.10) 0%,
            rgba(111, 66, 193, 0.06) 100%);
    border: 1px solid var(--oro-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.profile-initials {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(217, 200, 158, 0.3);
    text-shadow: 0 0 30px rgba(217, 200, 158, 0.2);
}

/* ══════ FORM ══════ */
.form-cosmic {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 0.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select,
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(217, 200, 158, 0.05);
    border: 1px solid rgba(217, 200, 158, 0.2);
    border-radius: 10px;
    color: var(--bianco);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--oro-satinato);
    box-shadow: 0 0 20px rgba(217, 200, 158, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--bianco-ombra);
}

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

.form-select,
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D9C89E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select option,
.form-group select option {
    background: #0c0f2e;
    color: var(--bianco);
}

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

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bianco-morbido);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(217, 200, 158, 0.12);
    transition: var(--transition);
}

.form-checkbox-label:hover {
    border-color: rgba(217, 200, 158, 0.3);
    background: rgba(217, 200, 158, 0.05);
}

.form-checkbox-label input[type="checkbox"] {
    accent-color: var(--oro-satinato);
}

/* ══════ FINAL CTA SECTION ══════ */
.final-cta {
    text-align: center;
    padding: var(--section-padding) 0;
    position: relative;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 5%, var(--oro-satinato) 30%, var(--oro-chiaro) 50%, var(--oro-satinato) 70%, transparent 95%) 1;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 200, 158, 0.05) 0%, rgba(111, 66, 193, 0.03) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta h2 {
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(217, 200, 158, 0.12);
}

.final-cta p {
    margin-bottom: 2.5rem;
}

/* ══════ TWO-COL LAYOUT ══════ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

/* ══════ FOOTER ══════ */
.footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 10%, var(--oro-satinato) 35%, var(--oro-chiaro) 50%, var(--oro-satinato) 65%, transparent 90%) 1;
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 26, 0.5);
}

.footer-brand {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--oro);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 15px rgba(217, 200, 158, 0.2);
}

.footer-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--bianco-ombra);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--bianco-tenue);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

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

.footer-legal {
    font-size: 0.65rem;
    color: var(--bianco-ombra);
    letter-spacing: 0.05em;
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up[data-delay="1"] {
    transition-delay: 0.15s;
}

.fade-up[data-delay="2"] {
    transition-delay: 0.3s;
}

.fade-up[data-delay="3"] {
    transition-delay: 0.45s;
}

.fade-up[data-delay="4"] {
    transition-delay: 0.6s;
}

.fade-up[data-delay="5"] {
    transition-delay: 0.75s;
}

/* Cosmic glow pulse animation for hero elements */
@keyframes cosmicGlowPulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(217, 200, 158, 0.1);
    }

    50% {
        text-shadow: 0 0 40px rgba(217, 200, 158, 0.2), 0 0 60px rgba(111, 66, 193, 0.1);
    }
}

.hero h1 {
    animation: cosmicGlowPulse 4s ease-in-out infinite;
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .detox-levels {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .navbar-links {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    .card-grid,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 1.5rem 80px;
        min-height: 85vh;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bundle-header {
        flex-direction: column;
    }

    .treatment-card {
        padding: 1.5rem;
    }

    .treatment-actions {
        flex-direction: column;
    }

    .treatment-actions .btn {
        width: 100%;
    }

    .profile-container {
        width: 220px;
        height: 280px;
    }

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

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

    .bundle-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}