/* ==========================================================
 * styles.css — FlacSpace Web
 * Design: white + charcoal · Brand: purple #4b4696 + yellow #f6c56e
 * ========================================================== */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    --c-accent:      #4b4696;
    --c-accent-dark: #3a3780;
    --c-yellow:      #f6c56e;
    --c-dark:        #0C0E1E;
    --c-text:        #1d1d1b;
    --c-muted:       #74747C;
    --c-surface:     #F7F7F5;
    --c-border:      #E8E8E6;
    --c-white:       #FFFFFF;

    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   20px;
    --r-xl:   28px;
    --r-full: 999px;

    --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,.09);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.16);

    --ease: cubic-bezier(.4,0,.2,1);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-text {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
}
.h2-text {
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.h3-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.3;
}
.label-text {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
}
.text-accent { color: var(--c-accent); }
.text-muted-c { color: var(--c-muted); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-flac {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9375rem;
    padding: .875rem 2rem;
    border-radius: var(--r-full);
    transition: all var(--ease) .2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: var(--font);
}
.btn-flac-primary {
    background: var(--c-accent);
    color: #fff !important;
    box-shadow: 0 4px 24px rgba(75,70,150,.28);
}
.btn-flac-primary:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(75,70,150,.4);
    color: #fff !important;
}
.btn-flac-lg {
    font-size: 1rem;
    padding: 1.0625rem 2.5rem;
}
.btn-flac-outline-white {
    background: transparent;
    color: rgba(255,255,255,.9) !important;
    border: 2px solid rgba(255,255,255,.3);
}
.btn-flac-outline-white:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    color: #fff !important;
}
.btn-flac-outline-dark {
    background: transparent;
    color: var(--c-text) !important;
    border: 2px solid var(--c-border);
}
.btn-flac-outline-dark:hover {
    background: var(--c-surface);
    border-color: var(--c-text);
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-surface { background: var(--c-surface); }
.section-white   { background: var(--c-white); }
.section-dark    { background: var(--c-dark); color: #fff; }

/* Context rules: dark section overrides */
.section-dark .section-tag        { color: var(--c-yellow); }
.section-dark .h2-text,
.section-dark h2.h2-text          { color: #fff; }
.section-dark .section-lead       { color: rgba(255,255,255,.55); }
.section-dark .step-num           { -webkit-text-stroke-color: rgba(255,255,255,.12); }
.section-dark .step-title         { color: #fff; }
.section-dark .step-desc          { color: rgba(255,255,255,.55); }
.section-dark .step-item:hover .step-num { -webkit-text-stroke-color: var(--c-yellow); }

.section-tag {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .875rem;
}
.section-lead {
    font-size: 1.0625rem;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 520px;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 1.125rem 0;
    transition: padding .32s var(--ease), background .32s var(--ease), box-shadow .32s var(--ease);
}
#navbar-main.scrolled {
    background: rgba(255,255,255,.95);


    padding: .7rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
/* ── Logo ── */
.nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: filter .35s var(--ease), opacity .35s;
}
/* Logo: nessun filter durante lo scroll (performance) */
#navbar-main .nav-logo-img { filter: none; }

.nav-link-c {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.75) !important;
    padding: .4rem .875rem !important;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
}
.nav-link-c:hover {
    color: #fff !important;
    background: rgba(255,255,255,.1);
}
#navbar-main.scrolled .nav-link-c {
    color: var(--c-muted) !important;
}
#navbar-main.scrolled .nav-link-c:hover {
    color: var(--c-text) !important;
    background: var(--c-surface);
}
.nav-cta-btn {
    font-size: .875rem;
    font-weight: 700;
    background: var(--c-accent);
    color: #fff !important;
    padding: .5rem 1.25rem !important;
    border-radius: var(--r-full);
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 3px 16px rgba(75,70,150,.25);
}
.nav-cta-btn:hover {
    background: var(--c-accent-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(75,70,150,.35);
}
.navbar-toggler-c {
    padding: .4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.navbar-toggler-c span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background .3s;
}
#navbar-main.scrolled .navbar-toggler-c span { background: var(--c-text); }

/* Mobile menu */
#navMobile {
    margin-top: .75rem;
    background: rgba(8,12,24,.97);
    
    border-radius: var(--r-lg);
    padding: .5rem 1rem 1rem;
}
#navbar-main.scrolled #navMobile {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-lg);
}
.nav-link-mobile {
    display: block;
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: .75rem 1rem;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
}
.nav-link-mobile:hover { color: #fff; background: rgba(255,255,255,.08); }
#navbar-main.scrolled .nav-link-mobile { color: var(--c-muted); }
#navbar-main.scrolled .nav-link-mobile:hover { color: var(--c-text); background: var(--c-surface); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
    min-height: 100svh;
    background: var(--c-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ── Video background hero ── */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateZ(0); /* forza GPU layer */

}
.hero-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(4,6,14,.96) 0%, rgba(4,6,14,.88) 40%, rgba(4,6,14,.45) 65%, rgba(4,6,14,.2) 100%),
        linear-gradient(to bottom, rgba(4,6,14,.5) 0%, transparent 25%, transparent 75%, rgba(4,6,14,.65) 100%);
}
.hero-grid {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 3rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(75,70,150,.18);
    border: 1px solid rgba(75,70,150,.4);
    color: #a09ee0;
    font-size: .8125rem;
    font-weight: 700;
    padding: .375rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: 1.75rem;
    letter-spacing: .04em;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--c-accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.hero-title {
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0,0,0,.8), 0 1px 4px rgba(0,0,0,.9);
}
.hero-title em {
    font-style: normal;
    color: var(--c-yellow);
    text-shadow: 0 2px 24px rgba(0,0,0,.8);
}
.hero-rotating {
    display: inline-block;
    min-width: 1px;
}
.hero-sub {
    font-size: clamp(.9375rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,.9);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 12px rgba(0,0,0,.9), 0 2px 24px rgba(0,0,0,.7);
}
/* ── Hero searchbar (Airbnb style) ───────────────────────── */
/* ── Hero CTA group (sostituisce la searchbar) ─────────────── */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-cta-main {
    font-size: 1rem;
    padding: 1rem 2.25rem;
}
.hero-cta-sec {
    font-size: 1rem;
    padding: 1rem 2.25rem;
}
.hero-cta-ghost {
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.hero-cta-ghost:hover { color: rgba(255,255,255,.85); }

@media (max-width: 767.98px) {
    .hero-cta-group { flex-direction: column; align-items: stretch; gap: .75rem; }
    .hero-cta-main, .hero-cta-sec { width: 100%; justify-content: center; }
    .hero-cta-ghost { text-align: center; padding: .25rem 0; }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-btn-ghost {
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.hero-btn-ghost:hover { color: rgba(255,255,255,.85); }
.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.3);
    font-size: .8125rem;
    font-weight: 500;
}
.scroll-pulse {
    width: 40px; height: 1px;
    background: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}
.scroll-pulse::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 60%;
    height: 100%;
    background: var(--c-accent);
    animation: scanline 2.4s ease-in-out infinite;
}
@keyframes scanline { to { left: 140%; } }

/* Hero floating cards */
.hero-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 6rem;
}
.hcard {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
    color: #fff;
    transition: transform .3s var(--ease);
}
.hcard:hover { transform: translateX(-6px); }
.hcard-num {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}
.hcard-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.45);
    margin-top: .25rem;
}
.hcard-accent { border-color: rgba(75,70,150,.3); }
.hcard-accent .hcard-num { color: var(--c-accent); }

/* ── STATS TICKER ────────────────────────────────────────── */
.stats-ticker-section {
    background: var(--c-dark);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 1.125rem 0;
    overflow: hidden;
}
.ticker-outer {
    overflow: hidden;
    position: relative;
}
/* fade edges */
.ticker-outer::before,
.ticker-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--c-dark), transparent);
}
.ticker-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--c-dark), transparent);
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
    will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tik-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: .75rem 1.75rem;
    margin: 0 .625rem;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    cursor: default;
}
.tik-item:hover {
    background: rgba(75,70,150,.15);
    border-color: rgba(75,70,150,.4);
}
.tik-num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--c-yellow);
    line-height: 1;
}
.tik-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}
.tik-dot {
    color: rgba(255,255,255,.15);
    font-size: .875rem;
    flex-shrink: 0;
    margin: 0 .25rem;
}

/* ── SEDI ────────────────────────────────────────────────── */
.sede-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/2.2;
    cursor: pointer;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: block;
}
.sede-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.sede-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--ease);
}
.sede-card:hover .sede-img { transform: scale(1.05); }
.sede-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
}
.sede-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    color: #fff;
}
.sede-badge {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: var(--r-full);
    background: var(--c-accent);
    color: #fff;
    margin-bottom: .875rem;
}
.sede-badge.presto {
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.7);
}
.sede-name {
    font-size: 1.3125rem;
    font-weight: 700;
    margin-bottom: .125rem;
    line-height: 1.2;
}
.sede-city {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    margin-bottom: .875rem;
}
.sede-meta {
    display: flex;
    gap: 1.25rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.65);
}
.sede-meta span { display: flex; align-items: center; gap: .3rem; }

/* Gradient placeholders */
.sg-1 { background: linear-gradient(145deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.sg-2 { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.sg-3 { background: linear-gradient(145deg, #0f0c29 0%, #302b63 60%, #24243e 100%); }
.sg-4 { background: linear-gradient(145deg, #1c1c1c 0%, #2d2d2d 100%); }

/* ── COME FUNZIONA — editorial ───────────────────────────── */
.cf-row {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cf-num {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .85;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.12);
    flex-shrink: 0;
    min-width: 140px;
    transition: -webkit-text-stroke-color .4s;
    user-select: none;
}
.cf-row:hover .cf-num { -webkit-text-stroke-color: var(--c-yellow); }
.cf-content { flex: 1; padding-top: .5rem; }
.cf-title {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.cf-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    max-width: 520px;
}
.cf-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    margin-top: 1.5rem;
    color: var(--c-yellow);
    font-weight: 700;
    font-size: .9375rem;
    transition: gap .2s;
}
.cf-link:hover { gap: .625rem; color: var(--c-yellow); }
.cf-divider { height: 1px; background: rgba(255,255,255,.06); }
@media (max-width: 575.98px) {
    .cf-row { gap: 1.5rem; }
    .cf-num { min-width: 80px; font-size: 4.5rem; }
}
.step-arrow {
    position: absolute;
    right: -12%;
    top: 3.5rem;
    font-size: 1.5rem;
    color: var(--c-border);
    z-index: 1;
}

/* ── TIPOLOGIE GRID ──────────────────────────────────────── */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--c-border);
}
.tp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 2.25rem 1rem;
    background: var(--c-white);
    text-decoration: none;
    transition: background .22s, transform .22s, box-shadow .22s;
    position: relative;
    text-align: center;
    z-index: 0;
}
.tp-item:hover {
    background: var(--c-dark);
    z-index: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.tp-em { font-size: 2.25rem; line-height: 1; display: block; transition: transform .22s; }
.tp-item:hover .tp-em { transform: scale(1.2); }
.tp-name { font-size: .8125rem; font-weight: 700; color: var(--c-text); line-height: 1.3; transition: color .22s; }
.tp-item:hover .tp-name { color: rgba(255,255,255,.85); }
@media (max-width: 991.98px) { .tp-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 575.98px) {
    .tp-grid { grid-template-columns: repeat(2, 1fr); }
    .tp-item { padding: 1.75rem .75rem; }
}

/* ── TIPOLOGIE BENTO (unused) ────────────────────────────── */
.tipo-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}
.tb-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tb-card:hover { transform: scale(1.025); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.tb-tall { grid-row: span 2; }
.tb-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s var(--ease);
}
.tb-card:hover .tb-bg { transform: scale(1.06); }
.tb-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
    transition: background .3s;
}
.tb-card:hover .tb-body { background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 100%); }
.tb-emoji {
    font-size: 2.25rem;
    display: block;
    margin-bottom: .5rem;
    line-height: 1;
    transition: transform .3s var(--ease);
}
.tb-card:hover .tb-emoji { transform: scale(1.15); }
.tb-name {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: .75rem;
}
.tb-cta {
    display: inline-flex;
    align-items: center;
    font-size: .8125rem;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.15);
    
    border: 1px solid rgba(255,255,255,.2);
    padding: .35rem 1rem;
    border-radius: var(--r-full);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s;
}
.tb-card:hover .tb-cta { opacity: 1; transform: translateY(0); }

/* Gradienti per tipologia — tutti ancorati ai colori brand */
.tb-bambini   .tb-bg { background: linear-gradient(145deg, #e8780a 0%, #f6c56e 100%); }
.tb-diciottesimo .tb-bg { background: linear-gradient(145deg, #2d1b6e 0%, #4b4696 60%, #7c3aed 100%); }
.tb-laurea    .tb-bg { background: linear-gradient(145deg, #0f1f5c 0%, #1e3a8a 60%, #4b4696 100%); }
.tb-adulti    .tb-bg { background: linear-gradient(145deg, #78350f 0%, #b45309 50%, #d97706 100%); }
.tb-aziendale .tb-bg { background: linear-gradient(145deg, #0c0e1e 0%, #0f2a4a 60%, #1e3a5f 100%); }
.tb-musicale  .tb-bg { background: linear-gradient(145deg, #060410 0%, #1a0a2e 50%, #4b4696 100%); }
.tb-addio     .tb-bg { background: linear-gradient(145deg, #4c0519 0%, #881337 50%, #c42b5e 100%); }
.tb-workshop  .tb-bg { background: linear-gradient(145deg, #1a1a2e 0%, #283347 60%, #334155 100%); }

@media (max-width: 991.98px) {
    .tipo-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .tb-tall { grid-row: span 2; }
    .tb-cta { opacity: 1; transform: translateY(0); }
}
@media (max-width: 575.98px) {
    .tipo-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .tb-emoji { font-size: 1.75rem; }
    .tb-name { font-size: 1rem; }
}

/* ── TIPOLOGIE (old — unused) ────────────────────────────── */
.tipo-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--c-border);
    background: var(--c-white);
    cursor: pointer;
    transition: all .25s var(--ease);
    height: 100%;
}
.tipo-card:hover {
    border-color: var(--c-accent);
    background: var(--c-accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(75,70,150,.22);
}
.tipo-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: .875rem;
    line-height: 1;
}
.tipo-name {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: .25rem;
}
.tipo-desc {
    font-size: .8125rem;
    color: var(--c-muted);
    line-height: 1.5;
    transition: color .25s;
}
.tipo-card:hover .tipo-desc { color: rgba(255,255,255,.8); }
.tipo-cta {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-top: .875rem;
    display: flex;
    align-items: center;
    gap: .25rem;
    transition: color .25s;
}
.tipo-card:hover .tipo-cta { color: rgba(255,255,255,.9); }

/* ── CONFIGURATORE ───────────────────────────────────────── */
.wizard-wrap {
    background: var(--c-white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.wizard-head {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--c-border);
}
.wizard-head-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .25rem;
}
.wizard-head-sub {
    font-size: .875rem;
    color: var(--c-muted);
}

/* Steps indicator */
.wiz-steps {
    display: flex;
    align-items: center;
    margin-top: 1.75rem;
}
.wiz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    gap: .375rem;
}
.wiz-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--c-border);
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-muted);
    position: relative;
    z-index: 1;
    transition: all .3s;
}
.wiz-step.active .wiz-dot {
    border-color: var(--c-accent);
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 3px 12px rgba(75,70,150,.35);
}
.wiz-step.done .wiz-dot {
    border-color: var(--c-accent);
    background: var(--c-accent);
    color: #fff;
}
.wiz-step-lbl {
    font-size: .6875rem;
    font-weight: 600;
    color: var(--c-muted);
    text-align: center;
}
.wiz-step.active .wiz-step-lbl { color: var(--c-accent); font-weight: 700; }
.wiz-step::before {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(-50% + 15px);
    right: calc(50% + 15px);
    height: 2px;
    background: var(--c-border);
    transition: background .3s;
}
.wiz-step:first-child::before { display: none; }
.wiz-step.done::before { background: var(--c-accent); }

/* Wizard body */
.wizard-body {
    padding: 2rem 2.5rem;
    min-height: 300px;
}
.wiz-panel { display: none; }
.wiz-panel.active { display: block; }
.wiz-panel-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--c-text);
}

/* Option cards (event types) */
.opt-card {
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1rem .875rem;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    background: var(--c-white);
    height: 100%;
}
.opt-card:hover { border-color: rgba(75,70,150,.4); background: rgba(75,70,150,.03); }
.opt-card.selected { border-color: var(--c-accent); background: rgba(75,70,150,.07); }
.opt-icon { font-size: 1.75rem; display: block; line-height: 1; margin-bottom: .375rem; }
.opt-name { font-size: .8125rem; font-weight: 700; color: var(--c-text); }

/* Sede option cards */
.sede-opt {
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    height: 100%;
}
.sede-opt:hover { border-color: rgba(75,70,150,.5); }
.sede-opt.selected { border-color: var(--c-accent); }
.sede-opt.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
.sede-opt-img { height: 72px; }
.sede-opt-body { padding: .75rem 1rem; }
.sede-opt-name { font-size: .875rem; font-weight: 700; margin-bottom: .125rem; }
.sede-opt-meta { font-size: .75rem; color: var(--c-muted); }

/* Catering cards */
.catering-card {
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    height: 100%;
}
.catering-card:hover { border-color: rgba(75,70,150,.4); }
.catering-card.selected { border-color: var(--c-accent); background: rgba(75,70,150,.06); }
.catering-card.top::after {
    content: 'Più scelto';
    position: absolute;
    top: -10px; right: 12px;
    background: var(--c-accent);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    padding: .2rem .625rem;
    border-radius: var(--r-full);
}
.cat-name { font-size: .9375rem; font-weight: 700; margin-bottom: .25rem; }
.cat-price { font-size: .875rem; color: var(--c-accent); font-weight: 700; margin-bottom: .375rem; }
.cat-desc { font-size: .8125rem; color: var(--c-muted); line-height: 1.5; }

/* Extra checkboxes */
.extra-card {
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1rem;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    gap: .875rem;
}
.extra-card:has(input:checked) {
    border-color: var(--c-accent);
    background: rgba(75,70,150,.05);
}
.extra-card input[type="checkbox"] { display: none; }
.extra-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.extra-card-name { font-size: .875rem; font-weight: 700; }
.extra-card-desc { font-size: .75rem; color: var(--c-muted); }

/* Form fields */
.f-label {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .4rem;
    display: block;
}
.f-input {
    width: 100%;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    padding: .75rem 1rem;
    font-family: var(--font);
    font-size: .9375rem;
    color: var(--c-text);
    background: var(--c-white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.f-input:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(75,70,150,.1);
}

/* Wizard footer */
.wizard-foot {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wiz-step-info { font-size: .8125rem; color: var(--c-muted); font-weight: 500; }

/* Success state */
.wiz-success { text-align: center; padding: 2rem 1rem 1rem; }
.success-circle {
    width: 72px; height: 72px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    background: #25D366;
    color: #fff !important;
    font-weight: 700;
    font-size: .9375rem;
    padding: .875rem 2rem;
    border-radius: var(--r-full);
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── CONFIGURATORE SPLIT SCREEN ─────────────────────────── */
.cfg-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    background: var(--c-dark);
    position: relative;
}
/* Left */
.cfg-left {
    padding: clamp(2rem, 5vw, 4rem);
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    max-height: 100svh;
    position: sticky;
    top: 0;
}
.cfg-left-h2 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -.04em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: .5rem;
}
.cfg-left-sub { font-size: .875rem; color: rgba(255,255,255,.4); font-weight: 500; }
/* Progress bar sinistra */
.csl-progress { display: flex; align-items: center; gap: 1rem; }
.csl-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    overflow: hidden;
}
.csl-bar > div {
    height: 100%;
    background: linear-gradient(to right, var(--c-accent), var(--c-yellow));
    transition: width .4s var(--ease);
    border-radius: 2px;
}
.csl-step-lbl { font-size: .75rem; color: rgba(255,255,255,.3); font-weight: 600; white-space: nowrap; }
/* Panels sinistra */
.csl-panels { flex: 1; }
/* Nav sinistra */
.cfg-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
#cfg-next { flex: 1; justify-content: center; }

/* Right: preview card */
.cfg-right {
    position: sticky;
    top: 0;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}
.cfg-preview-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 2/3;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
    transition: box-shadow .4s;
}
/* Background della card (gradiente tipo → foto sede) */
.cpv-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a1a2e 0%, #131428 100%);
    background-size: cover;
    background-position: center;
    transition: background-image .5s, background-color .5s;
}
.cpv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.2) 100%);
}
/* Gradienti per tipo evento */
.tbg-privata   { background: linear-gradient(145deg, #2d1b6e 0%, #4b4696 100%) !important; }
.tbg-diciott   { background: linear-gradient(145deg, #1a0a2e 0%, #4b4696 60%, #7c3aed 100%) !important; }
.tbg-bambini   { background: linear-gradient(145deg, #e8780a 0%, #f6c56e 100%) !important; }
.tbg-laurea    { background: linear-gradient(145deg, #0f1f5c 0%, #1e3a8a 60%, #4b4696 100%) !important; }
.tbg-aziendale { background: linear-gradient(145deg, #0c0e1e 0%, #0f2a4a 100%) !important; }
.tbg-musicale  { background: linear-gradient(145deg, #060410 0%, #1a0a2e 50%, #4b4696 100%) !important; }

/* Stato iniziale */
.cpv-default {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 2;
}
.cpv-logo { height: 28px; width: auto; max-width: 130px; object-fit: contain; opacity: .7; flex-shrink: 0; }
.cpv-waiting {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-align: center;
    line-height: 1.5;
}
.cpv-dots { display: flex; gap: .5rem; }
.cpv-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    animation: dot-pulse 1.4s ease-in-out infinite;
}
.cpv-dots span:nth-child(2) { animation-delay: .2s; }
.cpv-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-pulse {
    0%, 80%, 100% { transform: scale(1); opacity: .3; }
    40% { transform: scale(1.4); opacity: 1; }
}

/* Preview progressiva */
.cpv-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .5rem;
}
.cpv-logo-sm { height: 20px; width: auto; max-width: 100px; object-fit: contain; opacity: .5; margin-bottom: .75rem; flex-shrink: 0; }
.cpv-em { font-size: 2.5rem; line-height: 1; margin-bottom: .25rem; }
.cpv-etype { font-size: 1.125rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.cpv-vsede { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.cpv-details { display: flex; flex-direction: column; gap: .25rem; }
.cpv-details span { font-size: .8125rem; color: rgba(255,255,255,.65); }
.cpv-price-big {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--c-yellow);
    margin-top: .75rem;
}
.cpv-note { font-size: .6875rem; color: rgba(255,255,255,.25); line-height: 1.4; }

/* Brief finale */
.cpv-brief {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.cpv-brief-em { font-size: 2.25rem; line-height: 1; margin-bottom: .25rem; }
.cpv-brief-title { font-size: 1.0625rem; font-weight: 800; color: #fff; margin-bottom: .125rem; }
.cpv-brief-venue { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.cpv-brief-rows { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .875rem; }
.cpv-brief-rows span { font-size: .8125rem; color: rgba(255,255,255,.7); }
.cpv-brief-price { font-size: 1.75rem; font-weight: 900; color: var(--c-yellow); letter-spacing: -.04em; margin-bottom: .25rem; }
.cpv-brief-ctas { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.cpv-cta-wa {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: .375rem;
    background: #25D366; color: #fff !important;
    font-weight: 700; font-size: .8125rem;
    padding: .625rem 1rem; border-radius: var(--r-full);
    text-decoration: none; transition: background .2s;
}
.cpv-cta-wa:hover { background: #1ebe5d; }
.cpv-cta-tel {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff !important; font-weight: 700; font-size: .8125rem;
    padding: .625rem .875rem; border-radius: var(--r-full);
    text-decoration: none; transition: background .2s;
}
.cpv-cta-form {
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.5);
    font-size: .75rem; font-weight: 600;
    padding: .625rem .875rem; border-radius: var(--r-full);
    cursor: pointer; transition: all .2s; font-family: var(--font);
}
.cpv-cta-form:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* Mobile: stack */
@media (max-width: 991.98px) {
    .cfg-split-section { grid-template-columns: 1fr; min-height: auto; }
    .cfg-right { height: 420px; position: relative; padding: 1.5rem; }
    .cfg-preview-card { max-width: 280px; }
    .cfg-left { max-height: none; position: relative; overflow-y: visible; overflow: visible; }
    .cfg-left-h2 { font-size: 1.75rem; }
}
@media (max-width: 575.98px) {
    .cfg-right { height: 360px; }
    .cfg-preview-card { max-width: 220px; }
}

/* ── CONFIGURATORE 5-STEP ────────────────────────────────── */
.cfg-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-xl);
    overflow: hidden;
}

/* Top bar */
.cfg-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
    gap: 1rem;
}
.cfg-steps-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.cfg-sn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
    position: relative;
}
.cfg-sn-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: .8125rem; font-weight: 800;
    color: rgba(255,255,255,.3);
    transition: all .3s; z-index: 1;
}
.cfg-sn-lbl {
    font-size: .6875rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: rgba(255,255,255,.25);
    white-space: nowrap;
}
.cfg-sn-active .cfg-sn-dot {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    box-shadow: 0 3px 12px rgba(75,70,150,.4);
}
.cfg-sn-active .cfg-sn-lbl { color: rgba(255,255,255,.7); }
.cfg-sn-done .cfg-sn-dot {
    background: var(--c-yellow);
    border-color: var(--c-yellow);
    color: var(--c-dark);
}
.cfg-sn-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.08);
    margin-bottom: 1.25rem;
    transition: background .3s;
}
.cfg-line-done { background: var(--c-yellow); }

/* Live price */
.cfg-live-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.cfg-lp-label {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: .125rem;
}
.cfg-lp-val {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--c-yellow);
    line-height: 1;
}

/* Progress line */
.cfg-progress-bar {
    height: 3px;
    background: rgba(255,255,255,.06);
}
.cfg-progress-bar > div {
    height: 100%;
    background: linear-gradient(to right, var(--c-accent), var(--c-yellow));
    transition: width .4s var(--ease);
}

/* Panels */
.cfg-panel { display: none; padding: 1.25rem 0; min-height: 0; }
.cfg-active { display: block; }
.cfg-ptitle { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }

/* Override griglie nel contesto split-screen (pannello sinistro stretto) */
.cfg-split-section .cfg-types    { grid-template-columns: repeat(3, 1fr) !important; gap: .625rem !important; }
.cfg-split-section .cfg-sedi     { grid-template-columns: 1fr !important; gap: .625rem !important; }
.cfg-split-section .cfg-catering { grid-template-columns: 1fr 1fr !important; gap: .625rem !important; }
.cfg-split-section .cfg-extra    { grid-template-columns: 1fr 1fr !important; gap: .625rem !important; }
.cfg-split-section .cfg-type     { padding: .875rem .5rem !important; }
.cfg-split-section .cfg-t-nm     { font-size: .6875rem !important; }
.cfg-split-section .cfg-sede-photo { height: 70px !important; }
.cfg-split-section .cfg-ospiti-wrap { flex-direction: column !important; align-items: flex-start !important; gap: .75rem !important; }
.cfg-split-section .cfg-durate   { gap: .375rem !important; }
.cfg-split-section .cfg-durata   { padding: .5rem .75rem !important; font-size: .8125rem !important; }
.cfg-split-section .cfg-cat      { padding: 1rem .875rem !important; }
.cfg-split-section .cfg-cat-name { font-size: .875rem !important; }
.cfg-split-section .cfg-cat-desc { font-size: .75rem !important; }
.cfg-split-section .cfg-ex       { padding: .875rem 1rem !important; }
.cfg-split-section .cfg-durate small { font-size: .5625rem !important; }

/* Event types */
.cfg-types {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .875rem;
}
.cfg-type {
    display: flex; flex-direction: column; align-items: center; gap: .625rem;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    cursor: pointer; transition: all .22s;
    font-family: var(--font);
}
.cfg-type:hover   { background: rgba(75,70,150,.18); border-color: rgba(75,70,150,.4); }
.cfg-type.cfg-sel { background: rgba(75,70,150,.28); border-color: var(--c-accent); box-shadow: 0 4px 20px rgba(75,70,150,.25); }
.cfg-t-em { font-size: 2rem; line-height: 1; }
.cfg-t-nm { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.65); text-align: center; line-height: 1.3; }
.cfg-type.cfg-sel .cfg-t-nm { color: #fff; }

/* Sedi cards */
/* Nuove card sede fotografiche */
.cfg-sedi-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .875rem;
}
.cfg-sede-v2 {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    background: none;
    font-family: var(--font);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cfg-sede-v2:hover {
    border-color: rgba(75,70,150,.6);
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.cfg-sede-v2.cfg-sel {
    border-color: var(--c-accent);
    box-shadow: 0 8px 28px rgba(75,70,150,.35);
}
.csv2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .45s var(--ease);
}
.cfg-sede-v2:hover .csv2-bg { transform: scale(1.07); }
.csv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.05) 100%);
}
.csv2-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: .875rem 1rem;
    color: #fff;
    text-align: left;
}
.csv2-area {
    display: block;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-yellow);
    margin-bottom: .25rem;
}
.csv2-name {
    display: block;
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: .2rem;
}
.csv2-meta {
    display: block;
    font-size: .6875rem;
    color: rgba(255,255,255,.55);
}
.csv2-check {
    position: absolute;
    top: .625rem;
    right: .625rem;
    width: 26px; height: 26px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s, transform .2s;
}
.cfg-sede-v2.cfg-sel .csv2-check { opacity: 1; transform: scale(1); }

/* Override nel contesto split (pannello sinistro stretto) */
.cfg-split-section .cfg-sedi-v2 { grid-template-columns: 1fr !important; gap: .625rem !important; }
.cfg-split-section .cfg-sede-v2 { aspect-ratio: 16/7 !important; }

@media (max-width: 767.98px) {
    .cfg-sedi-v2 { grid-template-columns: 1fr; }
    .cfg-sede-v2 { aspect-ratio: 16/7; }
}

.cfg-sedi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cfg-sede {
    border: 2px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer; transition: all .22s;
    background: rgba(255,255,255,.04);
    font-family: var(--font); text-align: left;
}
.cfg-sede:hover   { border-color: rgba(75,70,150,.5); }
.cfg-sede.cfg-sel { border-color: var(--c-accent); box-shadow: 0 6px 24px rgba(75,70,150,.25); }
.cfg-sede-photo {
    height: 110px;
    background-size: cover;
    background-position: center;
    transition: transform .4s;
}
.cfg-sede:hover .cfg-sede-photo { transform: scale(1.04); }
.cfg-sede-body { padding: .875rem 1rem; }
.cfg-sede-body strong { display: block; font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.cfg-sede-body span { display: block; font-size: .75rem; color: rgba(255,255,255,.45); }
.cfg-sede-cap { color: rgba(246,197,110,.7) !important; font-weight: 600; margin-top: .25rem; }

/* Ospiti */
.cfg-ospiti-wrap { display: flex; align-items: center; gap: 2rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.cfg-ol { font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.55); flex-shrink: 0; }
.cfg-num-ctrl {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-full);
    overflow: hidden;
}
.cfg-num-btn {
    width: 42px; height: 42px;
    background: none; border: none;
    color: #fff; font-size: 1.25rem; font-weight: 300;
    cursor: pointer; transition: background .2s;
    font-family: var(--font);
}
.cfg-num-btn:hover { background: rgba(255,255,255,.1); }
.cfg-num-val {
    min-width: 60px; text-align: center;
    font-size: 1.5rem; font-weight: 800;
    color: var(--c-yellow); letter-spacing: -.03em;
}

/* Durata */
.cfg-durate { display: flex; gap: .625rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cfg-durata {
    padding: .625rem 1.25rem;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: var(--r-full);
    color: rgba(255,255,255,.65);
    font-size: .875rem; font-weight: 600;
    cursor: pointer; transition: all .2s;
    font-family: var(--font);
}
.cfg-durata small { display: block; font-size: .6875rem; color: var(--c-yellow); font-weight: 600; margin-top: .2rem; opacity: .75; }
.cfg-durata:hover   { border-color: rgba(75,70,150,.4); color: #fff; }
.cfg-durata.cfg-sel {
    background: rgba(75,70,150,.25);
    border-color: var(--c-accent);
    color: #fff;
}
.cfg-date-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.cfg-date-row .cfg-ol { white-space: nowrap; }
.cfg-date-row .f-input { max-width: 220px; flex: 1; }

/* Catering */
.cfg-catering {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cfg-cat {
    display: flex; flex-direction: column;
    padding: 1.5rem 1.25rem;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    cursor: pointer; transition: all .22s;
    text-align: left; position: relative;
    font-family: var(--font);
}
.cfg-cat:hover   { border-color: rgba(75,70,150,.4); }
.cfg-cat.cfg-sel { border-color: var(--c-accent); background: rgba(75,70,150,.18); }
.cfg-cat-badge {
    position: absolute; top: -10px; right: 10px;
    background: var(--c-accent); color: #fff;
    font-size: .6875rem; font-weight: 700;
    padding: .2rem .625rem; border-radius: var(--r-full);
}
.cfg-cat-name  { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .375rem; }
.cfg-cat-price { font-size: .875rem; font-weight: 700; color: var(--c-yellow); margin-bottom: .5rem; }
.cfg-cat-desc  { font-size: .8125rem; color: rgba(255,255,255,.4); line-height: 1.5; }

/* Extra */
.cfg-extra { display: grid; grid-template-columns: repeat(2, 1fr); gap: .875rem; }
.cfg-ex {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    cursor: pointer; transition: all .22s;
    position: relative;
}
.cfg-ex input { display: none; }
.cfg-ex:hover     { border-color: rgba(75,70,150,.4); }
.cfg-ex.cfg-ex-on { border-color: var(--c-accent); background: rgba(75,70,150,.15); }
.cfg-ex-em { font-size: 1.75rem; flex-shrink: 0; }
.cfg-ex-info strong { display: block; font-size: .9375rem; font-weight: 700; color: #fff; }
.cfg-ex-info span   { font-size: .8125rem; color: rgba(255,255,255,.4); }
.cfg-ex-check {
    position: absolute; top: .75rem; right: .875rem;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff; font-size: .75rem;
    display: none; align-items: center; justify-content: center; font-weight: 700;
}
.cfg-ex.cfg-ex-on .cfg-ex-check { display: flex; }

/* Summary screen */
.cfg-summary-panel { padding: 2rem; }
.cfg-sum-header {
    display: flex; align-items: center; gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.cfg-sum-icon { font-size: 3rem; line-height: 1; }
.cfg-sum-type { font-size: 1.375rem; font-weight: 800; color: #fff; }
.cfg-sum-sede { font-size: .9375rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.cfg-sum-rows { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.cfg-sum-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .875rem 1.25rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--r-md);
}
.cfg-sum-row span { font-size: .875rem; color: rgba(255,255,255,.45); }
.cfg-sum-row strong { font-size: .9375rem; font-weight: 700; color: #fff; }
.cfg-sum-price {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(246,197,110,.08);
    border: 1px solid rgba(246,197,110,.2);
    border-radius: var(--r-lg);
    margin-bottom: .75rem;
}
.cfg-sum-price span { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.5); }
.cfg-sum-price strong { font-size: 1.75rem; font-weight: 900; color: var(--c-yellow); letter-spacing: -.03em; }
.cfg-sum-note { font-size: .8125rem; color: rgba(255,255,255,.25); margin-bottom: 2rem; text-align: center; }
.cfg-sum-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cfg-cta-wa {
    display: inline-flex; align-items: center; gap: .75rem;
    background: #25D366; color: #fff !important;
    font-weight: 800; font-size: 1rem;
    padding: 1rem 2rem; border-radius: var(--r-full);
    text-decoration: none;
    box-shadow: 0 5px 24px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s;
}
.cfg-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }
.cfg-cta-tel {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    color: #fff !important; font-weight: 700; font-size: 1rem;
    padding: 1rem 1.75rem; border-radius: var(--r-full);
    text-decoration: none; transition: background .2s;
}
.cfg-cta-tel:hover { background: rgba(255,255,255,.14); }
.cfg-cta-form {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.5);
    font-size: .875rem; font-weight: 600;
    padding: 1rem 1.75rem; border-radius: var(--r-full);
    cursor: pointer; transition: all .2s;
    font-family: var(--font);
}
.cfg-cta-form:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* Nav */
.cfg-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.cfg-step-lbl { font-size: .8125rem; color: rgba(255,255,255,.3); font-weight: 600; }

/* Responsive */
@media (max-width: 991.98px) {
    .cfg-types { grid-template-columns: repeat(3, 1fr); }
    .cfg-catering { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
    .cfg-topbar { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cfg-types { grid-template-columns: repeat(3, 1fr); }
    .cfg-sedi { grid-template-columns: 1fr; }
    .cfg-extra { grid-template-columns: 1fr; }
    .cfg-catering { grid-template-columns: 1fr 1fr; }
    .cfg-panel, .cfg-nav { padding-left: 1.25rem; padding-right: 1.25rem; }
    .cfg-sn-lbl { display: none; }
    .cfg-sum-ctas { flex-direction: column; }
    .cfg-cta-wa, .cfg-cta-tel, .cfg-cta-form { justify-content: center; }
}

/* ── WHATSAPP BUILDER ────────────────────────────────────── */
.bk-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.bk-progress {
    display: flex;
    align-items: center;
    padding: 1.75rem 2rem 2rem;
    gap: 0;
    position: relative;
}
.bk-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: .8125rem; font-weight: 800;
    color: rgba(255,255,255,.35);
    flex-shrink: 0; z-index: 1;
    transition: all .3s;
}
.bk-dot-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; box-shadow: 0 3px 14px rgba(75,70,150,.4); }
.bk-dot-done   { background: var(--c-yellow); border-color: var(--c-yellow); color: var(--c-dark); }
.bk-line { flex: 1; height: 2px; background: rgba(255,255,255,.08); transition: background .3s; }
.bk-line-done  { background: var(--c-yellow); }
.bk-panel { display: none; padding: 0 2rem 1.5rem; min-height: 260px; }
.bk-panel-active { display: block; }
.bk-panel-title { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.bk-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.bk-type {
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    padding: 1rem .75rem;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    cursor: pointer; transition: all .2s;
    font-family: var(--font);
}
.bk-type:hover        { background: rgba(75,70,150,.2);  border-color: rgba(75,70,150,.4); }
.bk-type.bk-selected  { background: rgba(75,70,150,.25); border-color: var(--c-accent); }
.bk-type-em { font-size: 1.75rem; line-height: 1; }
.bk-type-nm { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.65); text-align: center; line-height: 1.3; }
.bk-type.bk-selected .bk-type-nm { color: #fff; }
.bk-sedi { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
.bk-sede {
    padding: 1rem 1.25rem; text-align: left;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    cursor: pointer; transition: all .2s;
    font-family: var(--font);
}
.bk-sede:hover        { border-color: rgba(75,70,150,.4); background: rgba(75,70,150,.12); }
.bk-sede.bk-selected  { border-color: var(--c-accent); background: rgba(75,70,150,.2); }
.bk-sede strong { display: block; font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.bk-sede small  { font-size: .75rem; color: rgba(255,255,255,.4); }
.bk-sede.bk-selected small { color: rgba(255,255,255,.6); }
.bk-label { display: block; font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: .4rem; }
.bk-summary {
    background: rgba(246,197,110,.06);
    border: 1px solid rgba(246,197,110,.2);
    border-radius: var(--r-lg);
    padding: 1.25rem; margin-bottom: 1.5rem;
    font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.75;
    display: none;
}
.bk-summary.visible { display: block; }
.bk-summary strong { color: var(--c-yellow); }
.bk-wa { text-align: center; padding: .5rem 0 1rem; }
.bk-wa-btn {
    display: inline-flex; align-items: center; gap: .875rem;
    background: #25D366; color: #fff !important;
    font-weight: 800; font-size: 1.125rem;
    padding: 1.125rem 2.5rem; border-radius: var(--r-full);
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,.38);
    transition: transform .2s, box-shadow .2s;
    margin-bottom: .75rem;
}
.bk-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,.5); }
.bk-wa-note { font-size: .8125rem; color: rgba(255,255,255,.3); margin: 0; }
.bk-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.bk-step-lbl { font-size: .8125rem; color: rgba(255,255,255,.3); font-weight: 600; }
.bk-form-section { margin-top: .5rem; }
.bk-form-header { padding: 1.25rem 0 1rem; border-top: 1px solid rgba(255,255,255,.06); }
.bk-form-label { font-size: .9375rem; font-weight: 700; color: rgba(255,255,255,.45); margin: 0 0 .25rem; }
.bk-form-sub   { font-size: .8125rem; color: rgba(255,255,255,.25); margin: 0; line-height: 1.5; }
@media (max-width: 767.98px) {
    .bk-types { grid-template-columns: repeat(4, 1fr); gap: .5rem; }
    .bk-type-nm { display: none; }
    .bk-sedi { grid-template-columns: 1fr; }
    .bk-panel, .bk-foot { padding-left: 1.25rem; padding-right: 1.25rem; }
    .bk-progress { padding: 1.5rem 1.25rem 1.75rem; }
}

/* ── FOMO STRIP ──────────────────────────────────────────── */
.fomo-strip {
    background: linear-gradient(90deg, #0C0E1E 0%, #15163a 50%, #0C0E1E 100%);
    border: none;
    border-radius: var(--r-full);
    padding: .75rem 1.5rem;
    margin: 0 auto 3rem;
    max-width: max-content;
    box-shadow: 0 12px 40px -16px rgba(75,70,150,.6);
}
.fomo-strip .container {
    justify-content: center;
}
.fomo-strip-sede {
    background: rgba(0,0,0,.55);
    border-radius: 0;
    max-width: none;
    margin: 0;
    box-shadow: none;
    padding: .875rem 0;
}
.fomo-strip-sede .container { justify-content: flex-start; }
.fomo-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    white-space: nowrap;
}
.fomo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #FF3B30;
    box-shadow: 0 0 6px rgba(255,59,48,.6);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
.fomo-icon { font-size: 1rem; line-height: 1; }
.fomo-txt strong { color: #fff; }
.fomo-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}
@media (max-width: 767.98px) {
    .fomo-strip { padding: .625rem 0; }
    .fomo-item { font-size: .75rem; }
}

/* ── IL SISTEMA FLACSPACE ────────────────────────────────── */
.sistema-section {
    background: var(--c-dark);
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.sistema-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1rem;
    margin-bottom: 3rem;
}
.sf-step {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-xl);
    padding: 2rem 1.5rem;
    transition: border-color .3s, background .3s;
}
.sf-step:hover { border-color: rgba(75,70,150,.4); background: rgba(75,70,150,.08); }
.sf-num {
    font-size: 3rem; font-weight: 900; letter-spacing: -.06em;
    color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.12);
    line-height: 1; margin-bottom: .875rem; transition: -webkit-text-stroke-color .3s;
}
.sf-step:hover .sf-num { -webkit-text-stroke-color: var(--c-yellow); }
.sf-icon { font-size: 1.75rem; margin-bottom: .875rem; display: block; }
.sf-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.sf-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }
.sf-arrow {
    font-size: 1.5rem; color: rgba(255,255,255,.15);
    display: flex; align-items: center; padding-top: 2.5rem; font-weight: 300;
}
.sistema-powered {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
    font-size: .8125rem; color: rgba(255,255,255,.3); font-weight: 500;
}
.sistema-badge {
    display: inline-flex; align-items: center; gap: .625rem;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-full); padding: .375rem 1rem .375rem .625rem;
    text-decoration: none; color: rgba(255,255,255,.6); font-weight: 700; font-size: .875rem;
    transition: border-color .2s, color .2s;
}
.sistema-badge:hover { border-color: rgba(75,70,150,.5); color: rgba(255,255,255,.9); }
.sf-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #30D158;
    box-shadow: 0 0 6px #30D158; animation: pulse-dot 2s infinite; flex-shrink: 0;
}
.sf-badge-sub { font-size: .6875rem; font-weight: 400; color: rgba(255,255,255,.3); }
@media (max-width: 991.98px) {
    .sistema-flow { grid-template-columns: 1fr; gap: .875rem; }
    .sf-arrow { padding-top: 0; justify-content: center; transform: rotate(90deg); }
}
@media (max-width: 575.98px) {
    .sf-num { font-size: 2.25rem; }
    .sistema-powered { flex-direction: column; align-items: flex-start; }
    .sf-badge-sub { display: none; }
}

/* ── BOOKING STUDIO ──────────────────────────────────────── */
.studio-section {
    background: var(--c-surface);
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.studio-h2 { margin-bottom: 1rem; }
.studio-lead {
    font-size: 1rem;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Referente di sede — badge nel blocco prenotazione */
.mgr-card {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-left: 3px solid var(--c-accent);
    border-radius: var(--r-lg);
    padding: .9375rem 1.125rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.mgr-av {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mgr-av-sm { width: 30px; height: 30px; font-size: .8125rem; }
.mgr-body { display: flex; flex-direction: column; line-height: 1.35; }
.mgr-body strong { font-size: .9375rem; font-weight: 700; color: var(--c-text); }
.mgr-body > span { font-size: .8125rem; color: var(--c-muted); font-weight: 600; }
.mgr-cta { width: 100%; margin-bottom: 1.75rem; }

/* Riga referente sotto le CTA dell'hero sede (fondo scuro) */
.vp-hero-mgr {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    padding: .5rem 1.125rem .5rem .5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-full);
    color: rgba(255,255,255,.7);
    font-size: .875rem;
    font-weight: 500;
    text-align: left;
}
.vp-hero-mgr strong { color: #fff; font-weight: 700; }
.vp-hero-mgr-center { margin-top: 1.75rem; }

/* Timeline steps */
.studio-steps { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.ss-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.ss-n {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
}
.ss-step strong { display: block; font-weight: 700; font-size: .9375rem; margin-bottom: .125rem; }
.ss-step span   { font-size: .875rem; color: var(--c-muted); }

/* Quote */
.studio-quote {
    background: var(--c-white);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 1.125rem 1.25rem;
    margin: 0 0 1.75rem;
    font-size: .9375rem;
    font-style: italic;
    color: var(--c-text);
    line-height: 1.65;
}
.studio-quote cite {
    display: block;
    font-style: normal;
    font-size: .8125rem;
    color: var(--c-muted);
    margin-top: .5rem;
    font-weight: 600;
}

/* Contact links */
.studio-contacts { display: flex; gap: .875rem; flex-wrap: wrap; }
.studio-contact {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.25rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: var(--c-text);
    flex: 1; min-width: 140px;
    transition: border-color .2s, box-shadow .2s;
}
.studio-contact:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); color: var(--c-text); }
.studio-contact > span:first-child { font-size: 1.375rem; flex-shrink: 0; }
.studio-contact strong { display: block; font-size: .875rem; font-weight: 700; }
.studio-contact span   { font-size: .8125rem; color: var(--c-muted); }

/* Form card */
.studio-form-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--c-border);
}
.studio-form-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--c-dark);
    color: rgba(255,255,255,.6);
    font-size: .8125rem;
    font-weight: 600;
}
.sfb-info {
    display: flex;
    align-items: center;
    gap: .625rem;
}
.sfb-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #30D158;
    box-shadow: 0 0 6px #30D158;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}
.sfb-secure { font-size: .75rem; color: rgba(255,255,255,.4); }

.studio-form-card iframe {
    display: block;
    width: 100%;
    min-height: 1100px;
    border: none;
}

@media (max-width: 991.98px) {
    .studio-form-card iframe { min-height: 1300px; }
    /* Taglia la fascia blu "MyRetail srl - Franchisor" in cima all'embed SmartVenue */
    .studio-form-card .sv-clip { overflow: hidden; height: 1080px; border-radius: 0 0 var(--r-xl) var(--r-xl); }
    .studio-form-card .sv-clip iframe { margin-top: -220px; display: block; }
}
@media (max-width: 575.98px) {
    .studio-form-card iframe { min-height: 1500px; }
    .studio-form-card .sv-clip { height: 1280px; }
    .studio-contacts { flex-direction: column; }
}

/* Form candidatura franchising: NON è l'embed SmartVenue, quindi non deve
   ereditarne i min-height (1100/1300/1500px) — lasciavano centinaia di px
   di bianco sotto il bottone. Misurato ~1080px a 390px di larghezza. */
.studio-form-card iframe#fr-form-iframe { min-height: 820px; }
@media (max-width: 991.98px) {
    .studio-form-card iframe#fr-form-iframe { min-height: 1100px; }
}
@media (max-width: 575.98px) {
    .studio-form-card iframe#fr-form-iframe { min-height: 1200px; }
}

/* ── BOOKING EMBED ───────────────────────────────────────── */
.booking-wrap {
    background: var(--c-white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.booking-wrap iframe {
    display: block;
    min-height: 1100px;
    transition: height .3s ease;
}
@media (max-width: 991.98px) {
    .booking-wrap iframe { min-height: 1300px; }
}
@media (max-width: 575.98px) {
    .booking-wrap iframe { min-height: 1500px; }
}

/* ── PERCHÉ NOI ──────────────────────────────────────────── */
.perche-card {
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--c-border);
    height: 100%;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.perche-card:hover {
    border-color: var(--c-accent);
    box-shadow: 0 10px 36px rgba(75,70,150,.08);
    transform: translateY(-4px);
}
.perche-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(75,70,150,.1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: background .25s;
}
.perche-card:hover .perche-icon-wrap { background: rgba(75,70,150,.18); }
.perche-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.perche-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* ── BOOKING PROOF ───────────────────────────────────────── */
.booking-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-top: 1.25rem;
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}
.booking-proof span:first-child { color: var(--c-yellow); letter-spacing: .08em; }

/* ── RECENSIONE FEATURED ─────────────────────────────────── */
.review-featured {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1.5px solid var(--c-border);
    position: relative;
    overflow: hidden;
}
.review-featured::before {
    content: '"';
    position: absolute;
    top: -1rem; right: 2rem;
    font-size: 12rem;
    color: var(--c-accent);
    opacity: .07;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.rf-stars {
    color: var(--c-yellow);
    font-size: 1.125rem;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}
.rf-quote {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--c-text);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 780px;
    border: none;
    padding: 0;
}
.rf-author { display: flex; align-items: center; gap: 1rem; }
.rf-name { font-size: 1rem; font-weight: 700; }
.rf-event { font-size: .875rem; color: var(--c-muted); margin-top: .125rem; }

/* ── RECENSIONI ──────────────────────────────────────────── */
.review-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.review-card::before {
    content: '"';
    position: absolute;
    top: -.5rem; right: 1.25rem;
    font-size: 9rem;
    color: var(--c-accent);
    opacity: .06;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.review-stars {
    color: var(--c-yellow);
    font-size: .875rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.review-text {
    font-size: .9375rem;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: .875rem; }
.review-av {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    flex-shrink: 0;
}
.review-name { font-size: .875rem; font-weight: 700; }
.review-event-type { font-size: .8125rem; color: var(--c-muted); }

/* ── CTA FINALE ──────────────────────────────────────────── */
#cta-finale {
    background: var(--c-dark);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden;
}
#cta-finale::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(75,70,150,.10) 0%, transparent 65%);
}
.cta-text {
    position: relative;
    z-index: 1;
}
.cta-big { color: #fff; }
.cta-sub {
    color: rgba(255,255,255,.5);
    font-size: 1.0625rem;
    margin: 1.25rem 0 2.5rem;
    line-height: 1.7;
}
.cta-phone {
    color: rgba(255,255,255,.35);
    font-size: .875rem;
    margin-top: 1.5rem;
}
.cta-phone a {
    color: rgba(255,255,255,.6);
    font-weight: 600;
    transition: color .2s;
}
.cta-phone a:hover { color: #fff; }

/* ── VERSUS SECTION ──────────────────────────────────────── */
.vs-section {
    background: var(--c-dark);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}
.vs-intro {
    padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}
.vs-intro .section-tag { color: var(--c-yellow); }
.vs-intro .h2-text { color: #fff; }

.vs-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    max-width: 1320px;
    margin: 0 auto;
    padding-left: max(1.5rem, calc((100vw - 1320px) / 2 + 1.5rem));
    padding-right: max(1.5rem, calc((100vw - 1320px) / 2 + 1.5rem));
    transition: background .25s;
}
.vs-row:hover { background: rgba(255,255,255,.02); }
.vs-row:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }

.vs-bad {
    font-size: clamp(.9375rem, 1.5vw, 1.125rem);
    font-style: italic;
    color: rgba(255,255,255,.22);
    line-height: 1.5;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.1);
    text-align: right;
    transition: color .3s;
}
.vs-row:hover .vs-bad { color: rgba(255,255,255,.35); }

.vs-sep {
    display: flex;
    align-items: center;
    gap: .375rem;
    flex-shrink: 0;
    color: transparent;
    background: linear-gradient(to right, #4b4696, #c42b5e, #e8780a, #f6c56e);
    -webkit-background-clip: text;
    background-clip: text;
}
.vs-arrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #4b4696, #f6c56e);
    border-radius: 2px;
}
.vs-arrow-head {
    font-size: 1.25rem;
    font-weight: 700;
}

.vs-good {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    transition: color .3s;
}
.vs-row:hover .vs-good { color: var(--c-yellow); }

@media (max-width: 767.98px) {
    .vs-row {
        grid-template-columns: 1fr;
        gap: .75rem;
        padding: 1.5rem 1.25rem;
    }
    .vs-bad { text-align: left; font-size: .875rem; }
    .vs-sep { display: none; }
    .vs-good { font-size: 1rem; padding-left: 1rem; border-left: 2px solid var(--c-yellow); }
}

/* ── SEZIONE UNIFICATA "PERCHÉ FLACSPACE" ────────────────── */
.pf-section {
    background: var(--c-dark);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}
.pf-hook {
    padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}
.pf-question {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}
.pf-answer {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.pf-answer strong { color: var(--c-yellow); font-weight: 800; }

/* vs-section eredita pf-section */
.pf-section .vs-section { background: transparent; padding: 0; }

@media (max-width: 767.98px) {
    .pf-hook { padding: 2.5rem 0 1.5rem; }
    .pf-question { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}

/* ── DIFFERENZIATORE ─────────────────────────────────────── */
.diff-strip { background: var(--c-white); }
.diff-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--c-text);
}
.diff-answer {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.diff-answer strong { color: var(--c-text); }
.diff-features { display: flex; flex-direction: column; gap: .875rem; }
.diff-feat {
    display: flex;
    align-items: center;
    gap: .875rem;
    color: var(--c-text);
    font-size: .9375rem;
    font-weight: 600;
    padding: .625rem .875rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: border-color .2s;
}
.diff-feat:hover { border-color: var(--c-accent); }
.diff-feat-icon { font-size: 1.25rem; flex-shrink: 0; }

/* ── NETWORK SECTION ─────────────────────────────────────── */
.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.network-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    transition: background .25s, border-color .25s;
}
.network-stat:hover {
    background: rgba(75,70,150,.15);
    border-color: rgba(75,70,150,.4);
}
.network-num {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--c-yellow);
    line-height: 1;
    margin-bottom: .375rem;
}
.network-label {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

/* ── FRANCHISING TEASER ──────────────────────────────────── */
.franchise-teaser {
    background: var(--c-dark);
    position: relative;
    overflow: hidden;
}
.franchise-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(246,197,110,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 50%, rgba(75,70,150,.15) 0%, transparent 55%);
}
.franchise-teaser .container { position: relative; z-index: 1; }
.franchise-hl { color: #fff; }
.franchise-nums {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.fn-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color .25s;
}
.fn-item:hover { border-color: rgba(246,197,110,.35); }
.fn-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.fn-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem;
}
.fn-desc {
    font-size: .8125rem;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
}

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
    background: #05070E;
    padding: 4.5rem 0 2rem;
    font-size: .875rem;
    color: rgba(255,255,255,.45);
}
.foot-logo-link {
    display: inline-flex;
    margin-bottom: 1rem;
}
.foot-logo-img {
    height: 38px;
    width: auto;
    display: block;
    /* filter rimosso per performance */
}
.foot-tagline {
    color: rgba(255,255,255,.35);
    line-height: 1.65;
    font-size: .875rem;
    margin-bottom: 1.5rem;
    max-width: 240px;
}
.foot-social {
    display: flex;
    gap: .625rem;
}
.foot-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.4);
    transition: all .2s;
}
.foot-social a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.foot-col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 1.25rem;
    display: block;
}
.foot-links { display: flex; flex-direction: column; gap: .625rem; }
.foot-links a {
    color: rgba(255,255,255,.35);
    font-size: .875rem;
    transition: color .2s;
}
.foot-links a:hover { color: rgba(255,255,255,.85); }
hr.foot-hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.05);
    margin: 2.5rem 0 1.75rem;
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.25);
}
.foot-bottom a { color: rgba(255,255,255,.25); transition: color .2s; }
.foot-bottom a:hover { color: rgba(255,255,255,.6); }
.foot-bottom-links { display: flex; gap: 1.5rem; }

/* ── VENUE PAGES (new template) ─────────────────────────── */

/* Hero */
.vp-hero {
    min-height: 100svh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.vp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4,6,14,.98) 0%, rgba(4,6,14,.65) 45%, rgba(4,6,14,.2) 100%),
        linear-gradient(to right, rgba(4,6,14,.6) 0%, transparent 60%);
}
.hero-grid { z-index: 1; }
.vp-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
    padding-top: 7rem;
    color: #fff;
}
.vp-hero-area {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #fff;
    padding: .3rem .875rem;
    border-radius: var(--r-full);
    margin-bottom: 1.25rem;
}
.vp-hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.04;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,.7);
    margin-bottom: 1rem;
}
.vp-hero-address {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: .9375rem;
    margin-bottom: 2rem;
}
.vp-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2.5rem;
}
.vp-stat { text-align: left; padding: 0 1.5rem; }
.vp-stat:first-child { padding-left: 0; }
.vp-stat-n { display: block; font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em; color: var(--c-yellow); line-height: 1; }
.vp-stat-l { display: block; font-size: .6875rem; color: rgba(255,255,255,.4); margin-top: .25rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.vp-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.vp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll hint */
.vp-scroll {
    position: absolute;
    bottom: 1.75rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.3);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.vp-scroll-line {
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}
.vp-scroll-line::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 60%;
    height: 100%;
    background: var(--c-yellow);
    animation: scanline 2.4s ease-in-out infinite;
}

/* Pillars (promessa) */
.vp-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.vp-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
    transition: border-color .2s;
}
.vp-pillar:hover { border-color: rgba(75,70,150,.4); }
.vp-pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.vp-pillar strong { display: block; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.vp-pillar span { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* Features grid (dotazioni) */
.vp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.vp-feature {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: 1.125rem 1.25rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    background: var(--c-white);
    transition: border-color .2s, transform .2s;
}
.vp-feature:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.vp-feature-icon { font-size: 1.375rem; flex-shrink: 0; }
.vp-feature-name { font-size: .875rem; font-weight: 600; color: var(--c-text); line-height: 1.4; }

@media (max-width: 991.98px) {
    .vp-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .vp-features-grid { grid-template-columns: 1fr; }
    .vp-hero-title { font-size: 2.5rem; }
    .vp-scroll { display: none; }
}

/* Photo + info section */
.vp-photo-big {
    height: 100%;
    min-height: 420px;
    border-radius: var(--r-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
}

/* Info stack */
.vp-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.vp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-md);
}
.vp-info-item > span:first-child { font-size: 1.25rem; flex-shrink: 0; }
.vp-info-item strong { display: block; font-weight: 700; color: #fff; font-size: .875rem; margin-bottom: .125rem; }
.vp-info-item span { font-size: .8125rem; color: rgba(255,255,255,.45); }

/* ── SEDE PAGES — nuovi componenti ──────────────────────── */

/* ── GALLERY BRICOLAGE ───────────────────────────────────── */
.gallery-bricolage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: .625rem;
    border-radius: var(--r-xl);
    overflow: hidden;
}
.gb-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform .4s var(--ease);
}
.gb-item:hover { transform: scale(1.02); z-index: 2; }
.gb-item:focus-visible { outline: 2px solid var(--accent, #fff); outline-offset: 2px; z-index: 2; }
.gb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s;
}
.gb-item:hover .gb-overlay { background: rgba(0,0,0,.1); }

/* Dimensioni bricolage */
.gb-large  { grid-column: span 2; grid-row: span 2; }
.gb-tall   { grid-column: span 1; grid-row: span 2; }
.gb-medium { grid-column: span 2; grid-row: span 1; }
.gb-small  { grid-column: span 1; grid-row: span 1; }

@media (max-width: 991.98px) {
    .gallery-bricolage {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }
    .gb-large { grid-column: span 2; grid-row: span 2; }
    .gb-tall  { grid-row: span 2; }
}
@media (max-width: 575.98px) {
    .gallery-bricolage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: .375rem;
    }
    .gb-large { grid-column: span 2; grid-row: span 2; }
    .gb-tall  { grid-column: span 1; grid-row: span 2; }
    .gb-medium { grid-column: span 2; }
}

/* ── LIGHTBOX GALLERIA ───────────────────────────────────── */
body.lb-lock { overflow: hidden; }
.lb {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 7, 14, .93);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease);
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb-img {
    max-width: 92vw;
    max-height: 86vh;
    border-radius: var(--r-lg, 14px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
    object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: background .2s, transform .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
    letter-spacing: .04em;
}
@media (max-width: 575.98px) {
    .lb-close { top: .5rem; right: .5rem; }
    .lb-prev  { left: .4rem; }
    .lb-next  { right: .4rem; }
    .lb-img   { max-width: 96vw; }
}

/* Mappa Google Maps */
.sede-map-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,.08);
}
.sede-map-wrap iframe {
    display: block;
    width: 100%;
    /* filtro dark per integrare con lo sfondo scuro della sezione */
    filter: invert(92%) hue-rotate(180deg) saturate(.8);
}
@media (max-width: 767.98px) {
    .sede-map-wrap iframe { height: 280px !important; }
}

/* Nota dotazioni — neutrale */
.vp-dotazioni-note {
    font-size: .875rem;
    color: var(--c-muted);
    margin-top: 1.75rem;
    text-align: center;
    font-style: italic;
}

/* Info cards (4 colonne) */
.vp-info-card {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    height: 100%;
    transition: border-color .2s;
}
.vp-info-card:hover { border-color: var(--c-accent); }
.vp-ic-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.vp-ic-title { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-accent); margin-bottom: .75rem; }
.vp-ic-rows { display: flex; flex-direction: column; gap: .375rem; }
.vp-ic-rows span { font-size: .875rem; color: var(--c-muted); line-height: 1.5; }

/* ── SEDE PAGES ──────────────────────────────────────────── */
.sede-hero {
    min-height: 70svh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.sh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,24,.95) 0%, rgba(8,12,24,.55) 50%, rgba(8,12,24,.2) 100%);
}
.sh-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
    padding-top: 7rem;
    color: #fff;
}
.sede-hero-area {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #fff;
    padding: .3rem .875rem;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}
.sh-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: .875rem;
}
.sh-address {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: .9375rem;
    margin-bottom: 2rem;
}
.sh-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.sh-stat { text-align: center; padding: 0 1.5rem; }
.sh-stat:first-child { padding-left: 0; }
.sh-stat-num { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--c-yellow); line-height: 1; }
.sh-stat-label { display: block; font-size: .6875rem; color: rgba(255,255,255,.45); margin-top: .25rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.sh-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* Info list */
.sh-info-list { display: flex; flex-direction: column; gap: .875rem; margin-top: 2rem; }
.sh-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
}
.sh-info-icon { font-size: 1.25rem; flex-shrink: 0; }
.sh-info-row strong { display: block; font-weight: 700; font-size: .875rem; margin-bottom: .2rem; }
.sh-info-row span { font-size: .875rem; color: var(--c-muted); }

/* Foto box */
.sh-photo-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
}

/* Dotazioni */
.dot-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    transition: border-color .2s;
    height: 100%;
}
.dot-item:hover { border-color: var(--c-accent); }
.dot-icon { font-size: 1.25rem; flex-shrink: 0; }
.dot-name { font-size: .875rem; font-weight: 600; }

/* Access list */
.access-list { display: flex; flex-direction: column; gap: .875rem; }
.access-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: border-color .2s;
}
.access-item:hover { border-color: var(--c-accent); }
.access-icon { font-size: 1.25rem; flex-shrink: 0; }
.access-item strong { display: block; font-weight: 700; font-size: .9375rem; margin-bottom: .125rem; }
.access-item span { font-size: .875rem; color: var(--c-muted); }

/* ══════════════════════════════════════════════════════════
   FRANCHISING PAGE — design completamente nuovo
   ══════════════════════════════════════════════════════════ */

/* Hero */
.fr-eyebrow {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 1.75rem;
}
.fr-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}
.fr-accent { color: var(--c-yellow); }
.fr-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.fr-cta-btn { font-size: 1.125rem; padding: 1.125rem 2.75rem; }
/* Hero franchising — sottotitolo card numeri */
.hcard-sub {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-top: .375rem;
    letter-spacing: .01em;
}

/* ── FRANCHISING · MOSAICO DETTAGLI ──────────────────────── */
.fr-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 168px;
    gap: .75rem;
}
.fm-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
}
.fm-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.fm-item:hover img { transform: scale(1.05); }
.fm-lg   { grid-column: span 2; grid-row: span 2; }
.fm-wide { grid-column: span 2; }
.fm-tall { grid-row: span 2; }
.fm-cap {
    position: absolute; inset: auto 0 0 0;
    padding: 2.5rem 1.125rem 1rem;
    background: linear-gradient(to top, rgba(5,7,14,.94) 0%, rgba(5,7,14,.75) 45%, transparent 100%);
    display: flex; flex-direction: column; gap: .3rem;
}
.fm-lbl {
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-yellow);
}
.fm-txt {
    font-size: .8125rem;
    color: rgba(255,255,255,.75);
    line-height: 1.45;
}
.fm-item:not(.fm-lg):not(.fm-wide):not(.fm-tall) .fm-txt { display: none; }
.fm-item:not(.fm-lg):not(.fm-wide):not(.fm-tall):hover .fm-txt { display: block; }
.fm-lg .fm-lbl { font-size: .75rem; }
.fm-lg .fm-txt { font-size: .9375rem; max-width: 30ch; }

@media (max-width: 991.98px) {
    .fr-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; }
    .fm-lg { grid-column: span 2; grid-row: span 2; }
    .fm-wide, .fm-tall { grid-column: span 2; grid-row: span 1; }
    /* le tile piccole restano affiancate ma più alte, così la didascalia ci sta */
    .fm-item:not(.fm-lg):not(.fm-wide):not(.fm-tall) { grid-row: span 2; }
    /* stessa specificità della regola che nasconde il testo su desktop, così qui vince */
    .fm-item:not(.fm-lg):not(.fm-wide):not(.fm-tall) .fm-txt {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* sposto in fondo l'ultima tile larga: senza questo le due piccole
       finiscono su righe diverse e lasciano due buchi nella griglia */
    .fr-mosaic .fm-item:nth-child(5) { order: 1; }
    .fr-chips { gap: .375rem; margin-top: 1.5rem; }
    .fr-chip { font-size: .75rem; padding: .375rem .75rem; }
}
@media (max-width: 575.98px) {
    .fr-mosaic { grid-auto-rows: 132px; gap: .5rem; }
    .fm-txt { font-size: .75rem; }
    .fm-cap { padding: 2rem .875rem .75rem; }
}

/* Chip dotazioni */
.fr-chips {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-top: 2rem;
}
.fr-chip {
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-full);
    padding: .4375rem .9375rem;
}

/* ── FRANCHISING · COSA CI FAI DENTRO ────────────────────── */
.fr-uses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.fr-use {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.375rem 1.25rem;
    transition: border-color .2s, transform .3s var(--ease), box-shadow .2s;
}
.fr-use:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.fr-use-icon { font-size: 1.75rem; display: block; margin-bottom: .625rem; }
.fr-use strong { display: block; font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; }
.fr-use > span:last-child { font-size: .8125rem; color: var(--c-muted); line-height: 1.6; }

@media (max-width: 991.98px) { .fr-uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) {
    /* su telefono restano 2 colonne con emoji + titolo: otto card in colonna
       singola con descrizione allungavano la sezione di oltre 1000px */
    .fr-uses { grid-template-columns: repeat(2, 1fr); gap: .625rem; }
    .fr-use { padding: 1rem .875rem; }
    .fr-use-icon { font-size: 1.5rem; margin-bottom: .375rem; }
    .fr-use strong { font-size: .875rem; margin-bottom: 0; }
    .fr-use > span:last-child { display: none; }
}

/* Weekend / settimana */
.fr-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.fr-split-col {
    background: var(--c-surface);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    padding: 1.5rem 1.625rem;
}
.fr-split-col-alt { border-left-color: var(--c-yellow); }
.fr-split-tag {
    font-size: .6875rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--c-muted);
}
.fr-split-title { display: block; font-size: 1.0625rem; font-weight: 700; margin: .5rem 0 .5rem; }
.fr-split-col p { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; margin: 0; }
.fr-split-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: .5rem 0 0;
}
@media (max-width: 767.98px) {
    .fr-split { grid-template-columns: 1fr; }
    .fr-split-note { text-align: left; }
}

/* Hero franchising — "non serve un locale" */
.fr-hero-flag {
    display: flex;
    align-items: center;
    gap: .75rem;
    max-width: 520px;
    margin: 1.5rem 0 .25rem;
    padding: .8125rem 1.125rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-left: 3px solid var(--c-yellow);
    border-radius: var(--r-md);
    color: rgba(255,255,255,.65);
    font-size: .9375rem;
    line-height: 1.55;
}
.fr-hero-flag strong { color: #fff; font-weight: 700; }
.fr-hero-flag-icon { font-size: 1.25rem; flex-shrink: 0; }
@media (max-width: 575.98px) {
    .fr-hero-flag { font-size: .875rem; padding: .75rem .9375rem; }
}

.fr-cta-note {
    font-size: .8125rem;
    color: rgba(255,255,255,.3);
    margin-top: 1rem;
    font-weight: 500;
}

/* Statement */
.fr-statement {
    background: #060810;
    padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.05);
}
.fr-quote { margin-bottom: 4rem; }
.fr-quote-mark {
    font-size: 8rem;
    color: var(--c-accent);
    opacity: .3;
    line-height: .6;
    display: block;
    font-family: Georgia, serif;
    margin-bottom: -1rem;
}
.fr-quote-text {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
.fr-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.fr-num-item { text-align: center; }
.fr-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--c-yellow);
    line-height: 1;
    margin-bottom: .375rem;
}
.fr-num-label {
    font-size: .875rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
}
.fr-num-sep {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.08);
}
@media (max-width: 767.98px) {
    .fr-num-sep { display: none; }
    .fr-numbers { gap: 2rem; }
}

/* 3 Pillars */
.fr-pillar {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: border-color .25s, transform .25s;
}
.fr-pillar:hover { border-color: var(--c-accent); transform: translateY(-5px); }
.fr-pillar-featured {
    background: var(--c-dark);
    border-color: rgba(75,70,150,.4);
}
.fr-pillar-featured:hover { border-color: var(--c-yellow); }
.fr-pillar-num {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -.06em;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 1.25rem;
    display: block;
}
.fr-pillar-title { font-size: 1.1875rem; font-weight: 700; margin-bottom: .75rem; }
.fr-pillar-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.7; }

/* "È per te" section */
.fr-for-you {
    background: var(--c-dark);
    position: relative;
    overflow: hidden;
}
.fr-for-you::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 85% 50%, rgba(246,197,110,.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 50%, rgba(75,70,150,.14) 0%, transparent 55%);
}
.fr-for-you .container { position: relative; z-index: 1; }
.fr-profiles { display: flex; flex-direction: column; gap: 1rem; }
.fr-profile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
    transition: border-color .2s, box-shadow .2s;
}
.fr-profile:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }
.fr-profile-featured {
    background: rgba(75,70,150,.07);
    border-color: rgba(75,70,150,.3);
}
.fr-profile-featured:hover { border-color: var(--c-accent); }
.fr-profile-icon { font-size: 1.875rem; flex-shrink: 0; margin-top: .1rem; }
.fr-profile strong { display: block; font-weight: 700; color: var(--c-text); margin-bottom: .25rem; font-size: .9375rem; }
.fr-profile span { font-size: .875rem; color: var(--c-muted); line-height: 1.6; }
.fr-profile-featured strong { color: var(--c-accent); }
.fr-profile-featured span { color: var(--c-muted); }

/* Processo */
.fr-step {
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
}
.fr-step-line {
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 50%;
    height: 2px;
    background: var(--c-border);
}
.fr-step:last-child .fr-step-line { display: none; }
.fr-step-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-surface);
    border: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 800;
    color: var(--c-muted);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}
.fr-step-dot-accent {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(75,70,150,.4);
}
.fr-step-badge {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--c-surface);
    color: var(--c-muted);
    border: 1px solid var(--c-border);
    padding: .2rem .75rem;
    border-radius: var(--r-full);
    margin-bottom: .875rem;
}
.fr-step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.fr-step-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }
@media (max-width: 767.98px) {
    .fr-step-line { display: none; }
}

/* CTA Finale */
.fr-cta-section {
    background: var(--c-dark);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden;
}
.fr-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(75,70,150,.14) 0%, transparent 65%);
}
.fr-cta-section .container { position: relative; z-index: 1; }
.fr-cta-title {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
}
.fr-cta-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 3rem;
}
.fr-contacts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.fr-contact {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.75rem;
    color: #fff;
    text-decoration: none;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: background .2s, border-color .2s, transform .2s;
}
.fr-contact:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--c-yellow);
    transform: translateY(-3px);
    color: #fff;
}
.fr-contact-icon { font-size: 1.75rem; flex-shrink: 0; }
.fr-contact-info { display: flex; flex-direction: column; text-align: left; min-width: 0; flex: 1; }
.fr-contact-label { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.fr-contact-val { font-size: .8125rem; font-weight: 700; margin-top: .125rem; }
.fr-cta-fine {
    font-size: .8125rem;
    color: rgba(255,255,255,.2);
    margin-top: 1.5rem;
}

/* diff cards */
.diff-card {
    border-radius: var(--r-xl);
    padding: 2rem;
    height: 100%;
}
.diff-no {
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.08);
}
.diff-yes {
    background: rgba(75,70,150,.15);
    border: 1.5px solid rgba(75,70,150,.4);
}
.diff-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    padding: .25rem .875rem;
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
}
.diff-list {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.diff-no .diff-list li {
    color: rgba(255,255,255,.45);
    font-size: .9375rem;
    padding-left: 1.5rem;
    position: relative;
}
.diff-no .diff-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(255,80,80,.6);
    font-weight: 700;
}
.diff-yes .diff-list li {
    color: rgba(255,255,255,.85);
    font-size: .9375rem;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}
.diff-yes .diff-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-yellow);
    font-weight: 700;
}

/* get cards */
.get-card {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 2rem 1.75rem;
    height: 100%;
    position: relative;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.get-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(75,70,150,.1);
}
.get-num {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--c-border);
    line-height: 1;
    margin-bottom: .5rem;
    transition: -webkit-text-stroke-color .25s;
}
.get-card:hover .get-num { -webkit-text-stroke-color: var(--c-accent); }
.get-icon { font-size: 2rem; margin-bottom: .875rem; display: block; }
.get-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; }
.get-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* persona cards */
.persona-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: border-color .25s, transform .25s;
}
.persona-card:hover { border-color: var(--c-accent); transform: translateY(-4px); }
.persona-featured {
    background: var(--c-dark);
    border-color: rgba(75,70,150,.4);
}
.persona-featured:hover { border-color: var(--c-yellow); }
.persona-avatar { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.persona-type {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .75rem;
}
.persona-featured .persona-type { color: var(--c-yellow); }
.persona-headline {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-style: italic;
}
.persona-featured .persona-headline { color: #fff; }
.persona-body { font-size: .9375rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.persona-featured .persona-body { color: rgba(255,255,255,.55); }
.persona-cta { font-size: .875rem; font-weight: 700; color: var(--c-accent); }
.persona-featured .persona-cta { color: var(--c-yellow); }

/* process steps (franchise) */
.fstep {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1.5px solid var(--c-border);
}
.fstep-highlight {
    background: rgba(75,70,150,.12);
    border-color: rgba(75,70,150,.4);
}
.fstep-num {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: .75rem;
}
.fstep-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(75,70,150,.1);
    color: var(--c-accent);
    border: 1px solid rgba(75,70,150,.2);
    padding: .2rem .75rem;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}
.fstep-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; }
.fstep-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* tech grid */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.tech-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    transition: background .2s, border-color .2s;
}
.tech-item:hover { background: rgba(75,70,150,.15); border-color: rgba(75,70,150,.3); }
.tech-icon { font-size: 1.375rem; flex-shrink: 0; }
.tech-label { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.75); }

/* exclusivity visual */
.exclusivity-visual {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 2.5rem auto;
}
.ev-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 20px; height: 20px;
    background: var(--c-accent);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(75,70,150,.2);
}
.ev-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 2px solid;
    animation: ev-pulse 3s ease-in-out infinite;
}
.ev-ring-1 {
    width: 80px; height: 80px;
    border-color: rgba(75,70,150,.5);
    animation-delay: 0s;
}
.ev-ring-2 {
    width: 140px; height: 140px;
    border-color: rgba(75,70,150,.25);
    animation-delay: .8s;
}
@keyframes ev-pulse {
    0%, 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: .5; transform: translate(-50%,-50%) scale(1.06); }
}
.ev-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--c-accent);
    z-index: 4;
    margin-top: 24px;
    white-space: nowrap;
}

/* founder cards */
.founder-card {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: border-color .25s, box-shadow .25s;
}
.founder-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.founder-avatar {
    width: 72px; height: 72px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    letter-spacing: .02em;
}
.founder-name { font-size: 1.25rem; font-weight: 700; margin-bottom: .25rem; }
.founder-role { font-size: .875rem; color: var(--c-accent); font-weight: 600; margin-bottom: 1rem; }
.founder-bio { font-size: .9375rem; color: var(--c-muted); line-height: 1.7; }

/* ── SEDI ROWS ───────────────────────────────────────────── */
.section-sedi {
    background: var(--c-dark);
}
.sedi-header {
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.sedi-header .section-tag { color: var(--c-yellow); }
.sedi-header .h2-text { color: #fff; }

.sede-row {
    display: flex;
    min-height: 380px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    transition: background .3s;
}
.sede-row:hover { background: rgba(255,255,255,.025); }
.sede-row:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }

/* Alternanza foto sx/dx */
.sede-row-rev .sr-photo { order: 2; }
.sede-row-rev .sr-info  { order: 1; }

.sr-photo {
    flex: 0 0 55%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform .6s var(--ease);
    /* fallback se foto mancante */
    background-color: #1a1a2e;
}
.sede-row-rev .sr-photo { flex: 0 0 45%; }
.sede-row:not(.sede-row-rev) .sr-info { flex: 0 0 45%; }
.sede-row-rev .sr-info { flex: 0 0 55%; }
.sede-row:hover .sr-photo { transform: scale(1.04); }

.sr-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
    color: #fff;
    position: relative;
}
.sr-num {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255,255,255,.25);
    text-transform: uppercase;
    margin-bottom: .75rem;
    display: block;
}
.sr-num-cs { color: rgba(246,197,110,.4); }
.sr-area {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.sr-area::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--c-accent);
}
.sr-area-cs { color: rgba(246,197,110,.6); }
.sr-area-cs::before { background: rgba(246,197,110,.6); }
.sr-name {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
}
.sr-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .875rem;
    margin-bottom: 2rem;
}
.sr-stats span {
    font-size: .8125rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .375rem;
}
.sr-stats span::before {
    content: '·';
    color: rgba(255,255,255,.2);
    display: none;
}
.sr-stats span:not(:first-child)::before { display: block; }
.sr-cta {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: gap .2s;
}
.sede-row:hover .sr-cta { gap: .875rem; }
.sr-cta-cs { color: rgba(255,255,255,.4); }
.sede-row-cs .sr-name { color: rgba(255,255,255,.55); }

@media (max-width: 767.98px) {
    /* Sede rows: stack verticale */
    .sede-row, .sede-row-rev {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .sr-photo {
        flex: none !important;
        width: 100% !important;
        height: 180px !important;
        order: 1 !important;
    }
    .sr-info {
        flex: none !important;
        width: 100% !important;
        order: 2 !important;
        padding: 1.25rem 1.25rem !important;
    }
    .sr-name { font-size: 1.5rem; }
    .sr-stats { font-size: .75rem; flex-wrap: wrap; gap: .375rem .5rem; }
    .sr-cta, .sr-cta-cs { font-size: .875rem; }
}

/* ── ESPANSIONE INTERNAZIONALE ───────────────────────────── */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.exp-item {
    border-radius: var(--r-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1.5px solid;
    transition: transform .25s, border-color .25s;
}
.exp-item:hover { transform: translateY(-4px); }
.exp-item-active {
    background: rgba(75,70,150,.15);
    border-color: rgba(75,70,150,.4);
}
.exp-item-soon {
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.08);
}
.exp-item-future {
    background: rgba(246,197,110,.05);
    border-color: rgba(246,197,110,.12);
}
.exp-flag { font-size: 2rem; margin-bottom: .375rem; }
.exp-country {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem;
}
.exp-status {
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    font-weight: 500;
}
.exp-item-active .exp-status { color: var(--c-yellow); font-weight: 700; }

/* ── VENUES LAYOUT ───────────────────────────────────────── */
.venues-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
}
/* Featured card */
.venue-featured {
    grid-row: 1 / 2;
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    min-height: 520px;
    display: block;
    text-decoration: none;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.venue-featured:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}
.vf-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .7s var(--ease);
}
.venue-featured:hover .vf-img { transform: scale(1.04); }
.vf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.7) 100%);
}
.vf-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem;
    color: #fff;
}
.vf-area {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #fff;
    padding: .3rem .875rem;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}
.vf-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.05;
    margin-bottom: .75rem;
}
.vf-meta {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.25rem;
}
.vf-cta {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    font-weight: 700;
    background: rgba(255,255,255,.15);
    
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: var(--r-full);
    border: 1px solid rgba(255,255,255,.2);
    transition: background .2s;
}
.venue-featured:hover .vf-cta { background: rgba(255,255,255,.25); }

/* 3-card grid */
.venues-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.25rem;
}
.venue-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    min-height: 160px;
    display: block;
    text-decoration: none;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.venue-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}
.vc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease);
}
.venue-card:hover .vc-img { transform: scale(1.06); }
.vc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 100%);
}
.vc-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem;
    color: #fff;
}
.vc-area {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #fff;
    padding: .2rem .625rem;
    border-radius: var(--r-full);
    margin-bottom: .625rem;
    align-self: flex-start;
}
.vc-name {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .25rem;
}
.vc-meta { font-size: .8125rem; color: rgba(255,255,255,.55); }
.venue-cs .vc-name { color: rgba(255,255,255,.7); }

@media (max-width: 991.98px) {
    .venues-layout { grid-template-columns: 1fr; }
    .venue-featured { min-height: 380px; }
    .venues-grid { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
    .venue-card { min-height: 180px; }
}
@media (max-width: 575.98px) {
    .venues-grid { grid-template-columns: 1fr; }
}

/* ── ATMOSFERA STRIP ─────────────────────────────────────── */
.atmo-strip { overflow: hidden; }
.atmo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 320px;
    gap: 4px;
}
.atmo-item {
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease), filter .5s;
    filter: brightness(.85) saturate(1.1);
}
.atmo-item:hover { transform: scale(1.03); filter: brightness(1) saturate(1.2); }
@media (max-width: 767.98px) {
    .atmo-grid {
        grid-template-columns: repeat(3, 1fr);
        height: 220px;
    }
    .atmo-item:nth-child(4),
    .atmo-item:nth-child(5) { display: none; }
}

/* ── PHOTO BENTO ─────────────────────────────────────────── */
.photo-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 240px;
    gap: .75rem;
    border-radius: var(--r-xl);
    overflow: hidden;
}
.pb-item { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.pb-1 { grid-column: 1; grid-row: 1 / 3; }
.pb-2 { grid-column: 2; grid-row: 1; }
.pb-3 { grid-column: 2; grid-row: 2; }
.pb-4 { display: none; }
.pb-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease);
}
.pb-item:hover .pb-img { transform: scale(1.04); }
.bento-caption {
    text-align: center;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-top: 1.25rem;
}
@media (max-width: 767.98px) {
    .photo-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }
    .pb-1 { grid-column: 1 / 3; grid-row: 1; }
    .pb-2 { grid-column: 1; grid-row: 2; }
    .pb-3 { grid-column: 2; grid-row: 2; }
}

/* ── LOCATION CARDS (reali) ──────────────────────────────── */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.loc-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: block;
    cursor: pointer;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    text-decoration: none;
}
.loc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.lc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--ease);
}
.loc-card:hover .lc-img { transform: scale(1.05); }
.lc-img-blur { filter: blur(3px) brightness(.7); }
.lc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.lc-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    color: #fff;
}
.lc-badge {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: var(--r-full);
    margin-bottom: .75rem;
}
.lc-cs-label {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
    padding: .25rem .75rem;
    border-radius: var(--r-full);
    margin-bottom: .75rem;
}
.lc-name { font-size: 1.1875rem; font-weight: 700; margin-bottom: .25rem; line-height: 1.2; }
.lc-info { font-size: .8125rem; color: rgba(255,255,255,.6); margin-bottom: .875rem; }
.lc-cta {
    font-size: .8125rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    transition: color .2s;
}
.loc-card:hover .lc-cta { color: #fff; }
@media (max-width: 991.98px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .loc-grid { grid-template-columns: 1fr; }
    .loc-card { aspect-ratio: 4/3; }
}

/* Opportunità cards */
.opp-card {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.opp-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.opp-icon { font-size: 2rem; margin-bottom: .875rem; display: block; }
.opp-title { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.opp-desc { font-size: .875rem; color: var(--c-muted); line-height: 1.6; }

/* Package cards */
.package-card {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.package-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(75,70,150,.1);
}
.package-icon { font-size: 2.25rem; display: block; margin-bottom: 1rem; }
.package-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; }
.package-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* Process steps */
.process-step {
    padding: 2rem 1.5rem;
    background: var(--c-surface);
    border-radius: var(--r-xl);
    height: 100%;
    position: relative;
    transition: box-shadow .25s;
}
.process-step:hover { box-shadow: var(--shadow-md); }
.ps-num {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--c-border);
    line-height: 1;
    margin-bottom: 1rem;
    transition: -webkit-text-stroke-color .3s;
}
.process-step:hover .ps-num { -webkit-text-stroke-color: var(--c-accent); }
.ps-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.ps-desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* Profile list */
.profile-list { display: flex; flex-direction: column; gap: 1.25rem; }
.profile-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: border-color .2s;
}
.profile-item:hover { border-color: var(--c-accent); }
.profile-check {
    width: 28px; height: 28px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}
.profile-item strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.profile-item span { font-size: .875rem; color: var(--c-muted); line-height: 1.55; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--c-border);
    padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-q {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .625rem;
    color: var(--c-text);
}
.faq-a { font-size: .9375rem; color: var(--c-muted); line-height: 1.7; }

/* Franchise contact */
.franchise-contact-block { max-width: 640px; margin: 0 auto; }
.fc-channels {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.fc-channel {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: #fff;
    transition: background .2s, border-color .2s, transform .2s;
    text-decoration: none;
    flex: 1;
    min-width: 180px;
}
.fc-channel:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--c-yellow);
    transform: translateY(-3px);
    color: #fff;
}
.fc-ch-icon { font-size: 1.75rem; flex-shrink: 0; }
.fc-ch-label { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.fc-ch-val { font-size: .9375rem; font-weight: 700; color: #fff; margin-top: .125rem; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 990;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(37,211,102,.38);
    color: #fff;
    font-size: 1.5rem;
    transition: transform .2s var(--ease), box-shadow .2s;
}
.wa-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    color: #fff;
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.3);
    animation: wa-ring 2.5s ease-in-out infinite;
}
@keyframes wa-ring {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Hero animations (immediate) */
.anim-up   { animation: fadeInUp .6s var(--ease) both; }
.anim-up-2 { animation-delay: .1s; }
.anim-up-3 { animation-delay: .2s; }
.anim-up-4 { animation-delay: .32s; }
.anim-up-5 { animation-delay: .44s; }

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal-delay-4 { transition-delay: .44s; }
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-side { display: none; }
    .step-arrow { display: none; }
    .wizard-body { padding: 1.5rem; }
    .wizard-head { padding: 1.5rem; }
    .wizard-foot { padding: 1.25rem 1.5rem; flex-direction: column; gap: 1rem; align-items: stretch; }
    .wizard-foot .btn-flac { width: 100%; }
    .wiz-step-lbl { display: none; }
}
@media (max-width: 767.98px) {
    .wa-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; font-size: 1.25rem; }
    .stat-sep { display: none; }
    .section { padding: 3.5rem 0; }
    .hero-content { padding-top: 6rem; padding-bottom: 2rem; }
    .wizard-head { padding: 1.25rem; }
    .wizard-body { padding: 1.25rem; }
    .wizard-foot { padding: 1rem 1.25rem; }
}

/* ── DARK MODE ───────────────────────────────────────────── */
[data-theme-mode="dark"] {
    --c-text:    #F2F2F7;
    --c-muted:   #8E8E93;
    --c-surface: #111114;
    --c-white:   #000000;
    --c-border:  #2C2C2E;
}
[data-theme-mode="dark"] #navbar-main.scrolled {
    background: rgba(18,18,20,.95);
}
[data-theme-mode="dark"] .wizard-wrap   { background: #111114; }
[data-theme-mode="dark"] .review-card   { background: #111114; border-color: #2C2C2E; }
[data-theme-mode="dark"] .tipo-card     { background: #111114; }
[data-theme-mode="dark"] .perche-card   { background: #111114; }
[data-theme-mode="dark"] .opt-card      { background: #111114; }
[data-theme-mode="dark"] .catering-card { background: #111114; }
[data-theme-mode="dark"] .extra-card    { background: #111114; }
[data-theme-mode="dark"] .f-input       { background: #111114; color: #F2F2F7; }
[data-theme-mode="dark"] .hcard         { background: rgba(255,255,255,.04); }
[data-theme-mode="dark"] #navMobile     { background: rgba(18,18,20,.98); }

/* ══════════════════════════════════════════════════════════
   MOBILE — fix completo homepage
   ══════════════════════════════════════════════════════════ */

/* ── Hero ── */
#hero {
    min-height: 100vh; /* fallback per browser senza svh */
    min-height: 100svh;
    /* foto fallback se video non parte */
    background: url('assets/images/party-celebrate.jpg') center/cover no-repeat, var(--c-dark);
}
.hero-video-wrap video { display: block; }

/* Mobile: video attivo anche qui; la foto di #hero fa da fallback se non parte */
@media (max-width: 991.98px) {
    .hero-video-wrap { display: block; }
}

@media (max-width: 991.98px) {
    .hero-side { display: none !important; }
    .hero-content { padding-top: 6rem !important; }
}

@media (max-width: 767.98px) {
    /* Hero testo — su mobile il video è off (foto fallback): testo centrato */
    #hero { display: flex; align-items: center; }
    #hero > .container { width: 100%; }
    .hero-content { padding-top: 6rem !important; padding-bottom: 3rem !important; text-align: center; }
    .display-text { font-size: clamp(1.625rem, 7vw, 2.25rem); }
    .hero-rotating { font-size: clamp(1.375rem, 6vw, 1.875rem); }
    .hero-title { margin-bottom: 1rem; }
    .hero-sub {
        font-size: .9375rem;
        color: rgba(255,255,255,.85);
        margin: 0 auto 1.75rem;
        line-height: 1.6;
    }
    .hero-cta-group { align-items: center; }
    .hero-actions { flex-direction: column; gap: .75rem; align-items: stretch; }
    .hero-actions .btn-flac { width: 100%; justify-content: center; }
    .hero-btn-ghost { text-align: center; padding: .25rem 0; }
    .hero-scroll-hint { display: none; }
    .hero-badge { font-size: .75rem; }

    /* Ticker */
    .tik-item { padding: .625rem 1.25rem; margin: 0 .375rem; }
    .tik-num { font-size: 1.1rem; }
    .tik-label { font-size: .625rem; letter-spacing: .06em; }

    /* Differenziatore */
    .diff-strip { padding: 2.5rem 0; }
    .diff-headline { font-size: clamp(1.5rem, 6vw, 2rem); }
    .diff-answer { font-size: 1rem; margin-bottom: 1.5rem; }

    /* Sedi rows */
    .sedi-header { padding: 2rem 0 1rem; }
    .sedi-header .h2-text { font-size: 1.75rem; }

    /* Espansione */
    .exp-grid { grid-template-columns: repeat(3, 1fr); gap: .625rem; }
    .exp-flag { font-size: 1.5rem; }
    .exp-country { font-size: .8125rem; }
    .exp-status { font-size: .6875rem; }

    /* Come funziona */
    .cf-row { flex-direction: column; gap: .75rem; padding: 1.75rem 0; }
    .cf-num { font-size: 3.5rem; min-width: auto; }
    .cf-title { font-size: 1.25rem; }
    .cf-desc { font-size: .9375rem; }

    /* Versus */
    .vs-intro { padding: 2.5rem 0 1.5rem; }
    .vs-row {
        grid-template-columns: 1fr !important;
        gap: .375rem;
        padding: 1.25rem 1.25rem;
    }
    .vs-bad { text-align: left; font-size: .875rem; }
    .vs-sep { display: none; }
    .vs-good {
        font-size: 1rem;
        padding-left: 1rem;
        border-left: 2px solid var(--c-yellow);
    }

    /* Configuratore */
    .cfg-topbar { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.25rem 1rem; gap: .875rem; }
    .cfg-steps-nav { width: 100%; }
    .cfg-sn-lbl { display: none; }
    .cfg-live-price { align-self: flex-end; }
    .cfg-panel { padding: 1.25rem 1.25rem 1rem; min-height: 200px; }
    .cfg-types { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
    .cfg-type { padding: 1rem .5rem; }
    .cfg-t-em { font-size: 1.5rem; }
    .cfg-t-nm { font-size: .6875rem; }
    .cfg-sedi { grid-template-columns: 1fr; gap: .75rem; }
    .cfg-sede-photo { height: 90px; }
    .cfg-ospiti-wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cfg-durate { gap: .5rem; }
    .cfg-durata { padding: .5rem .875rem; font-size: .8125rem; }
    .cfg-catering { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .cfg-extra { grid-template-columns: 1fr; }
    .cfg-nav { padding: 1rem 1.25rem; }
    .cfg-sum-ctas { flex-direction: column; }
    .cfg-cta-wa, .cfg-cta-tel, .cfg-cta-form { justify-content: center; width: 100%; }

    /* Recensioni */
    .rf-quote { font-size: 1.0625rem; }
    .review-card { padding: 1.5rem; }

    /* CTA finale */
    #cta-finale { padding: 3.5rem 0; }
    .cta-big { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .cta-sub { font-size: .9375rem; }
    .d-flex.gap-3.justify-content-center { flex-direction: column; align-items: center; }

    /* Footer */
    .foot-logo-img { height: 30px; }
}

@media (max-width: 575.98px) {
    /* Hero ultra small */
    .display-text { font-size: clamp(1.75rem, 8vw, 2.25rem); }
    .hero-badge { display: none; }

    /* Espansione */
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-item-future { display: none; }

    /* Configuratore */
    .cfg-types { grid-template-columns: repeat(2, 1fr); }
    .cfg-catering { grid-template-columns: 1fr; }
    .cfg-progress-bar { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIX — aggiornamenti post-redesign
   ══════════════════════════════════════════════════════════ */

/* ── Configuratore split: preview nascosta su mobile ── */
@media (max-width: 991.98px) {
    .cfg-right { display: none; }
    .cfg-split-section { display: block; }
    .cfg-left {
        padding: 1.5rem 1.25rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
        max-height: none;
        position: relative;
    }
    /* Mostra prezzo inline nel nav del wizard */
    .cfg-nav::after {
        content: attr(data-price);
        font-size: .8125rem;
        font-weight: 700;
        color: var(--c-yellow);
        margin-left: auto;
    }
}

/* ── FOMO strip mobile ── */
@media (max-width: 767.98px) {
    .fomo-strip { padding: .875rem 1.25rem; margin-bottom: 2.5rem; max-width: calc(100% - 2rem); }
    .fomo-strip .container { gap: .625rem; flex-direction: column; align-items: center; }
    .fomo-item { font-size: .8125rem; }
    .fomo-strip-sede { max-width: none; }
    .fomo-strip-sede .container { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 575.98px) {
    .fomo-strip .container { flex-direction: column; align-items: center; gap: .5rem; }
}

/* ── Perché FLACspace (pf-section) mobile ── */
@media (max-width: 767.98px) {
    .pf-hook { padding: 2.5rem 0 1.5rem; }
    .pf-question { font-size: clamp(1.625rem, 6vw, 2.25rem); }
    .pf-answer { font-size: 1rem; }
}

/* ── Sede pages mobile ── */
@media (max-width: 767.98px) {
    .vp-hero { min-height: 70vh; }
    .vp-hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .vp-stats { gap: 0; }
    .vp-stat { padding: 0 .875rem; }
    .vp-stat:first-child { padding-left: 0; }
    .vp-stat-n { font-size: 1.125rem; }
    .vp-stat-l { font-size: .5625rem; }
    .vp-hero-ctas { gap: .625rem; }
    .vp-hero-ctas .btn-flac { padding: .75rem 1.25rem !important; font-size: .875rem; }
    .vp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .vp-photo-big { min-height: 220px; margin-top: 1.5rem; }
    .sh-info-list { margin-top: 1.25rem; }
    /* Info cards sede: 2 colonne su mobile */
    .vp-info-card { padding: 1.125rem 1rem; }
    .vp-ic-icon { font-size: 1.375rem; margin-bottom: .5rem; }
    .vp-ic-rows span { font-size: .8125rem; }
    /* Mappa */
    .sede-map-wrap iframe { height: 260px !important; }
}

/* ── Sistema FLACspace mobile ── */
@media (max-width: 767.98px) {
    .sistema-section { padding: 3rem 0; }
    .sf-step { padding: 1.5rem 1.25rem; }
    .sf-num { font-size: 2.25rem; }
    .sf-title { font-size: .9375rem; }
    .sf-desc { font-size: .8125rem; }
    .sistema-powered { flex-wrap: wrap; gap: .5rem; }
    .sf-badge-sub { display: none; }
}

/* ── Franchising page mobile ── */
@media (max-width: 767.98px) {
    .fr-title { font-size: clamp(1.875rem, 8vw, 3rem); }
    .fr-sub { font-size: .9375rem; }
    .fr-contacts { flex-direction: column; }
    .fr-contact { min-width: auto; max-width: 100%; }
    .fr-step { padding: 1.5rem 1.25rem; }
    .fr-cta-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .fr-cta-sub { font-size: .9375rem; }
}

/* ── Hero searchbar mobile ── */
@media (max-width: 767.98px) {
    .hero-searchbar { max-width: 100%; }
    .hsb-label { font-size: .8125rem; }
    .hsb-sub { font-size: .625rem; }
    .hsb-item { padding: .875rem 1rem; }
}

/* ── General overflow prevention ── */
@media (max-width: 767.98px) {
    .container { overflow-x: hidden; }
    .booking-wrap iframe { min-height: 1300px; }
}

/* ── CHI SIAMO PAGE ──────────────────────────────────────── */

/* Timeline */
.cs-timeline { display: flex; flex-direction: column; gap: 0; }
.cs-tl-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 2rem;
    position: relative;
}
.cs-tl-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 22px;
    bottom: 0;
    width: 2px;
    background: var(--c-border);
}
.cs-tl-item:last-child::before { display: none; }
.cs-tl-item:last-child { padding-bottom: 0; }
.cs-tl-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-border);
    border: 3px solid var(--c-white);
    flex-shrink: 0;
    margin-top: .1rem;
    position: relative;
    z-index: 1;
    transition: background .3s;
}
.cs-tl-dot-active { background: var(--c-accent) !important; }
.cs-tl-year {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--c-accent);
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.cs-tl-content strong { display: block; font-weight: 700; font-size: .9375rem; margin-bottom: .25rem; }
.cs-tl-content p { font-size: .875rem; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* Founder cards */
.cs-founder {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}
.cs-founder:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.cs-founder-featured {
    background: rgba(75,70,150,.05);
    border-color: rgba(75,70,150,.3);
}
.cs-founder-av {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(75,70,150,.15);
    color: var(--c-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; font-weight: 800;
    margin: 0 auto 1.125rem;
}
.cs-founder-name { font-size: 1.0625rem; font-weight: 700; margin-bottom: .25rem; }
.cs-founder-role { font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1rem; }
.cs-founder-bio { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; margin: 0; }

/* Value cards */
.cs-value {
    padding: 1.75rem;
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl);
    background: rgba(255,255,255,.04);
    height: 100%;
    transition: border-color .25s;
}
.cs-value:hover { border-color: rgba(75,70,150,.35); }
.cs-value-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.cs-value-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.cs-value-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0; }

@media (max-width: 767.98px) {
    .cs-timeline { gap: 0; }
    .cs-founder { padding: 1.5rem; }
    .cs-value { padding: 1.5rem; }
}

/* ── CHI SIAMO — investitori e vision ───────────────────── */

/* Investor cards */
.cs-investor {
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl);
    padding: 2rem;
    height: 100%;
    text-align: center;
    position: relative;
    transition: border-color .25s;
}
.cs-investor:hover { border-color: rgba(75,70,150,.35); }
.cs-investor-latest {
    border-color: rgba(246,197,110,.2);
    background: rgba(246,197,110,.04);
}
.cs-inv-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--c-yellow);
    color: var(--c-dark);
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .75rem;
    border-radius: var(--r-full);
}
.cs-inv-icon { font-size: 2.25rem; margin-bottom: .875rem; display: block; }
.cs-inv-name { font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: .25rem; letter-spacing: -.02em; }
.cs-inv-date { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-yellow); margin-bottom: .875rem; }
.cs-inv-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0; }

/* Vision numbers */
.cs-vision-num {
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color .25s;
}
.cs-vision-num:hover { border-color: var(--c-accent); }
.cs-vision-num-accent { background: rgba(75,70,150,.07); border-color: rgba(75,70,150,.25); }
.cs-vn-big { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -.04em; color: var(--c-text); line-height: 1; margin-bottom: .5rem; }
.cs-vision-num-accent .cs-vn-big { color: var(--c-accent); }
.cs-vn-label { font-size: .75rem; font-weight: 600; color: var(--c-muted); line-height: 1.4; }

@media (max-width: 767.98px) {
    .cs-investor { padding: 1.5rem; }
    .cs-vision-num { padding: 1.25rem 1rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE CRO — form di prenotazione come primo impatto
   (solo mobile; il desktop resta invariato)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    /* Dentro #prenota: prima il FORM, poi il testo/contesto */
    #prenota .book-col-form { order: -1; }
    #prenota .book-col-info { order: 1; margin-top: 1.5rem; }
    /* Hero home più compatto: il form si raggiunge subito */
    #hero { min-height: 72svh; min-height: 72vh; }
    .vp-hero { min-height: 70svh; min-height: 70vh; }
}

/* ══════════════════════════════════════════════════════════
   NAVBAR FLUTTUANTE bianco arrotondato — solo DESKTOP
   ══════════════════════════════════════════════════════════ */
@media (min-width: 992px) {
    #navbar-main,
    #navbar-main.scrolled {
        background: transparent !important;
        box-shadow: none !important;
        padding: 1.15rem 0 !important;
    }
    #navbar-main.scrolled { padding: .8rem 0 !important; }

    .nav-shell {
        background: #ffffff;
        border: 1px solid rgba(20,16,50,.07);
        border-radius: 24px;
        padding: .5rem .6rem .5rem 1.5rem;
        box-shadow: 0 16px 38px -12px rgba(20,16,50,.28), 0 3px 10px rgba(20,16,50,.06);
        transition: box-shadow .3s var(--ease);
    }
    #navbar-main.scrolled .nav-shell {
        box-shadow: 0 10px 26px -12px rgba(20,16,50,.30);
    }
    /* Link scuri e a pillola sul bianco */
    .nav-link-c { color: var(--c-muted) !important; border-radius: var(--r-full); }
    .nav-link-c:hover { color: var(--c-text) !important; background: var(--c-surface) !important; }
    .nav-logo-img { height: 30px; }
}

/* Label statistiche sempre leggibili (erano grigie su trasparente) */
.tik-label, .hcard-label { color: rgba(255,255,255,.92) !important; }

/* Numero card "eventi organizzati": bianco invece di viola (contrasto su hero scuro) */
.hcard-accent .hcard-num { color: #fff; }

/* I numeri dei passi (01/02/03) si accendono quando la riga entra in vista — anche su mobile (no hover) */
.cf-num { transition: -webkit-text-stroke-color .45s var(--ease), color .45s var(--ease); }
.cf-row.visible .cf-num { -webkit-text-stroke-color: var(--c-yellow); }

/* Sezione "Il sistema FLACspace": i numeri (01-04) si accendono al reveal, non solo all'hover */
.sf-step.visible .sf-num { -webkit-text-stroke-color: var(--c-yellow); }
