:root {
    --navy: #09152A;
    --navy-mid: #112039;
    --navy-light: #1a2e58;
    --aqua: #00C9B1;
    --aqua-dim: rgba(0, 201, 177, 0.13);
    --aqua-dim2: rgba(0, 201, 177, 0.07);
    --gold: #E8B84B;
    --gold-dim: rgba(232, 184, 75, 0.13);
    --sand: #F5EDD8;
    --body-text: #C8D6EF;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --r: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background: var(--navy);
    color: var(--body-text);
    overflow-x: hidden;
}

.public-has-fixed-nav {
    padding-top: 88px;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background .4s, backdrop-filter .4s;
}

.navbar-custom.scrolled {
    background: rgba(9, 21, 42, .93);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--body-text);
    text-decoration: none;
    font-size: .84rem;
    letter-spacing: .04em;
    margin-left: 2rem;
    transition: color .2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-ctas {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.btn-nav-ghost {
    background: transparent;
    color: #fff;
    font-size: .82rem;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color .2s;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.btn-nav-ghost:hover {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-nav {
    background: var(--aqua);
    color: var(--navy);
    font-weight: 500;
    font-size: .82rem;
    letter-spacing: .04em;
    padding: .55rem 1.3rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    display: inline-flex;
    align-items: center;
}

.btn-nav:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: var(--navy);
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .02em;
    line-height: 1;
}

.logo-text span {
    color: var(--aqua);
}

.nav-account-menu {
    min-width: 220px;
    max-width: min(92vw, 320px);
}

.nav-account-menu .dropdown-item.active,
.nav-account-menu .dropdown-item:active {
    background: rgba(0, 201, 177, .16);
    color: #07101f;
}

/* ── Avatar cerchio navbar ── */
.nav-avatar-btn {
    background: transparent;
    border: 2px solid var(--aqua);
    padding: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow .2s, border-color .2s;
}

.nav-avatar-btn:hover,
.nav-avatar-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 201, 177, .28);
    border-color: #fff;
    outline: none;
}

.nav-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--navy);
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 9rem 1.5rem 5rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 201, 177, .09) 0%, transparent 65%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 1.4rem;
    font-weight: 400;
    animation: fadeUp .9s ease both;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7.5vw, 7rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 1.6rem;
    animation: fadeUp .9s ease .15s both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: var(--body-text);
    max-width: 540px;
    line-height: 1.75;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: .8;
    animation: fadeUp .9s ease .3s both;
}

.hero-dual-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .9s ease .45s both;
}

.btn-primary-cta {
    background: var(--aqua);
    color: var(--navy);
    font-weight: 500;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: transform .2s, opacity .2s;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    opacity: .9;
    color: var(--navy);
}

.btn-secondary-cta {
    background: var(--gold-dim);
    color: var(--gold);
    font-weight: 500;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(232, 184, 75, .25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: transform .2s, background .2s;
}

.btn-secondary-cta:hover {
    transform: translateY(-2px);
    background: rgba(232, 184, 75, .2);
    color: var(--gold);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .45rem 1rem;
    font-size: .75rem;
    color: var(--body-text);
    opacity: .6;
    margin-bottom: 1.2rem;
    animation: fadeUp .9s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aqua);
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.toggle-section {
    padding: 6rem 0;
    background: var(--navy-mid);
    position: relative;
    z-index: 1;
}

.target-toggle {
    display: flex;
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .35rem;
    gap: .25rem;
    margin: 0 auto 3.5rem;
    width: fit-content;
}

.toggle-btn {
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 400;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background .25s, color .25s;
    background: transparent;
    color: var(--body-text);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.toggle-btn.active {
    font-weight: 500;
}

.toggle-btn.active.ospite {
    background: var(--aqua);
    color: var(--navy);
}

.toggle-btn.active.gestore {
    background: var(--gold);
    color: var(--navy);
}

.toggle-icon {
    font-size: 1rem;
}

.panel {
    display: none;
    animation: fadeUp .5s ease both;
}

.panel.active {
    display: block;
}

.vp-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
}

.vp-card:hover {
    border-color: rgba(0, 201, 177, .3);
    transform: translateY(-4px);
}

.vp-card.gold-hover:hover {
    border-color: rgba(232, 184, 75, .3);
}

.vp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--aqua-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.vp-icon.gold-bg {
    background: var(--gold-dim);
}

.vp-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--aqua);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-icon.gold-bg svg {
    stroke: var(--gold);
}

.vp-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: .55rem;
    font-weight: 400;
}

.vp-text {
    font-size: .86rem;
    color: var(--body-text);
    line-height: 1.8;
    font-weight: 300;
    opacity: .75;
}

.panel-heading {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .9rem;
}

.panel-heading em {
    font-style: italic;
}

.panel-heading.gold em {
    color: var(--gold);
}

.panel-heading.aqua em {
    color: var(--aqua);
}

.panel-sub {
    font-size: .95rem;
    color: var(--body-text);
    font-weight: 300;
    opacity: .7;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2rem;
}

.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.timeline-label {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--body-text);
    opacity: .4;
    margin-bottom: .5rem;
}

.week-row {
    display: grid;
    grid-template-columns: 90px repeat(7, 1fr);
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
}

.week-row-label {
    font-size: .75rem;
    color: var(--body-text);
    opacity: .55;
    font-weight: 300;
    padding-right: .5rem;
    text-align: right;
}

.day-head {
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--body-text);
    opacity: .35;
    text-align: center;
    padding-bottom: .4rem;
}

.hour-block {
    height: 38px;
    border-radius: 6px;
    position: relative;
    cursor: default;
    transition: opacity .2s;
}

.hour-block.occupied {
    background: linear-gradient(135deg, rgba(0, 201, 177, .22), rgba(0, 201, 177, .1));
    border: 1px solid rgba(0, 201, 177, .25);
}

.hour-block.free {
    background: linear-gradient(135deg, rgba(232, 184, 75, .28), rgba(232, 184, 75, .1));
    border: 1px solid rgba(232, 184, 75, .35);
    animation: freePulse 3s ease-in-out infinite;
}

.hour-block.empty {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
}

@keyframes freePulse {
    0%,
    100% {
        border-color: rgba(232, 184, 75, .35);
    }

    50% {
        border-color: rgba(232, 184, 75, .7);
    }
}

.timeline-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--body-text);
    opacity: .55;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.revenue-callout {
    background: rgba(232, 184, 75, .08);
    border: 1px solid rgba(232, 184, 75, .2);
    border-radius: var(--r);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.callout-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
}

.callout-text {
    font-size: .88rem;
    color: var(--body-text);
    font-weight: 300;
    opacity: .75;
    line-height: 1.7;
}

.callout-text strong {
    color: var(--gold);
    font-weight: 500;
}

.how-section {
    padding: 6rem 0;
    background: var(--navy);
}

.how-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.how-tab {
    font-size: .88rem;
    padding: .75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--body-text);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .2s, border-color .2s;
    font-family: var(--sans);
}

.how-tab.active.ospite {
    color: var(--aqua);
    border-bottom-color: var(--aqua);
}

.how-tab.active.gestore {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.how-panel {
    display: none;
}

.how-panel.active {
    display: block;
}

.step-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.step-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .07);
    line-height: 1;
    min-width: 52px;
    text-align: right;
    flex-shrink: 0;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: .4rem;
}

.step-text {
    font-size: .86rem;
    color: var(--body-text);
    line-height: 1.8;
    font-weight: 300;
    opacity: .7;
}

.step-line {
    width: 1px;
    height: 28px;
    background: var(--border);
    margin: 0 0 1.8rem calc(52px + 1.2rem);
}

.calc-section {
    padding: 6rem 0;
    background: var(--navy-mid);
}

.calc-box {
    background: rgba(0, 0, 0, .2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.calc-row {
    margin-bottom: 1.8rem;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--body-text);
    margin-bottom: .7rem;
    font-weight: 400;
}

.calc-label span {
    color: var(--gold);
    font-weight: 500;
    font-family: var(--serif);
    font-size: 1rem;
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .1);
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(232, 184, 75, .2);
}

input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
}

.calc-result {
    background: linear-gradient(135deg, rgba(232, 184, 75, .12), rgba(232, 184, 75, .04));
    border: 1px solid rgba(232, 184, 75, .25);
    border-radius: var(--r);
    padding: 1.8rem;
    text-align: center;
    margin-top: 2rem;
}

.calc-result-label {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .7;
    margin-bottom: .5rem;
}

.calc-result-value {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
}

.calc-result-sub {
    font-size: .8rem;
    color: var(--body-text);
    opacity: .5;
    font-weight: 300;
}

.calc-disclaimer {
    font-size: .72rem;
    color: var(--body-text);
    opacity: .35;
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.proof-section {
    padding: 5rem 0;
    background: var(--navy);
    border-top: 1px solid var(--border);
}

.proof-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    height: 100%;
}

.proof-stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: .8rem;
    letter-spacing: .1em;
}

.proof-quote {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: .85;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--aqua-dim);
    border: 1px solid rgba(0, 201, 177, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--aqua);
    font-weight: 500;
    flex-shrink: 0;
}

.proof-name {
    font-size: .82rem;
    color: #fff;
    opacity: .7;
    font-weight: 400;
}

.proof-role {
    font-size: .72rem;
    color: var(--body-text);
    opacity: .4;
    font-weight: 300;
}

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0 0;
}

.stat-it {
    text-align: center;
}

.stat-n {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: #fff;
    font-weight: 300;
    line-height: 1;
    display: block;
}

.stat-l {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--body-text);
    opacity: .4;
    margin-top: .3rem;
    display: block;
}

.dual-cta-section {
    padding: 7rem 0;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.dual-cta-glow-a {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 201, 177, .1) 0%, transparent 70%);
    pointer-events: none;
}

.dual-cta-glow-b {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232, 184, 75, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    height: 100%;
}

.cta-card.ospite {
    background: var(--aqua-dim2);
    border: 1px solid rgba(0, 201, 177, .15);
}

.cta-card.gesture {
    background: var(--gold-dim);
    border: 1px solid rgba(232, 184, 75, .15);
}

.cta-card-eyebrow {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-card.ospite .cta-card-eyebrow {
    color: var(--aqua);
}

.cta-card.gesture .cta-card-eyebrow {
    color: var(--gold);
}

.cta-card-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .9rem;
}

.cta-card-sub {
    font-size: .88rem;
    color: var(--body-text);
    font-weight: 300;
    opacity: .65;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.form-inline {
    display: flex;
    gap: .6rem;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
}

.input-field {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: .8rem 1.4rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, .3);
}

.input-field:focus {
    border-color: var(--aqua);
}

.input-field.gold:focus {
    border-color: var(--gold);
}

.btn-full-aqua {
    background: var(--aqua);
    color: var(--navy);
    font-weight: 500;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: opacity .2s;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-full-aqua:hover {
    opacity: .88;
}

.btn-full-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 500;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: opacity .2s;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-full-gold:hover {
    opacity: .88;
}

.public-footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.public-footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.public-footer .logo-text {
    font-size: 1rem;
}

.public-footer .footer-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.public-footer .footer-links a {
    font-size: .78rem;
    color: var(--body-text);
    opacity: .35;
    text-decoration: none;
    transition: opacity .2s;
}

.public-footer .footer-links a:hover {
    opacity: .75;
}

.public-footer .footer-copy {
    font-size: .72rem;
    color: var(--body-text);
    opacity: .2;
    text-align: center;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-bar {
    background: var(--aqua);
    padding: .7rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.ticker-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--navy);
    opacity: .4;
    flex-shrink: 0;
}

.sec-label {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--aqua);
    font-weight: 400;
    margin-bottom: .9rem;
    display: block;
}

.sec-label.gold {
    color: var(--gold);
}

/* ===== Hamburger button ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 9px;
    transition: border-color .2s;
    flex-shrink: 0;
}

.nav-hamburger:hover {
    border-color: rgba(255, 255, 255, .35);
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Mobile full-screen menu ===== */
.nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(9, 21, 42, .97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 88px 1.5rem 2rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.nav-mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

.nav-mobile-link {
    display: block;
    color: var(--body-text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 300;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
    letter-spacing: .02em;
}

.nav-mobile-link:first-child {
    border-top: 1px solid var(--border);
}

.nav-mobile-link:hover,
.nav-mobile-link:focus {
    color: #fff;
}

.nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2rem;
}

.nav-mobile-footer {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

/* ===== Breakpoint: tablet (≤ 991px) — hamburger attivo ===== */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-ctas {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .toggle-section,
    .timeline-section,
    .how-section,
    .calc-section {
        padding: 4rem 0;
    }

    .proof-section {
        padding: 3.5rem 0;
    }

    .dual-cta-section {
        padding: 4rem 0;
    }
}

/* ===== Breakpoint: mobile (≤ 767px) ===== */
@media (max-width: 767px) {
    .target-toggle {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
        justify-content: center;
        padding: .65rem 1rem;
        font-size: .82rem;
    }

    .week-row {
        grid-template-columns: 60px repeat(7, 1fr);
    }

    .revenue-callout {
        flex-direction: column;
        gap: .75rem;
        padding: 1.25rem 1.5rem;
    }

    .calc-box {
        padding: 1.5rem 1.25rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .stats-strip {
        gap: 2rem;
    }

    .dual-cta-glow-a,
    .dual-cta-glow-b {
        display: none;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
    }
}

/* ===== Breakpoint: smartphone (≤ 480px) ===== */
@media (max-width: 480px) {
    .week-row {
        grid-template-columns: 50px repeat(7, 1fr);
        gap: 2px;
    }

    .hour-block {
        height: 26px;
        border-radius: 4px;
    }

    .day-head {
        font-size: .58rem;
        padding-bottom: .25rem;
    }

    .week-row-label {
        font-size: .62rem;
    }

    .hero-dual-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        justify-content: center;
    }

    .calc-result-value {
        font-size: 2.4rem;
    }

    .timeline-legend {
        gap: .75rem;
    }

    .stats-strip {
        gap: 1.25rem;
    }

    .stat-n {
        font-size: 1.8rem;
    }

    .public-stab-carousel .carousel-control-prev-icon,
    .public-stab-carousel .carousel-control-next-icon {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .55));
    }

    .public-stab-indicators {
        margin-bottom: .35rem;
    }

    .public-stab-indicators [data-bs-target] {
        width: 18px;
        height: 3px;
        border-radius: 999px;
    }

    .public-stab-image-single {
        height: 210px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: .9rem;
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .public-stab-card {
        padding: .9rem;
    }
}

/* ===== Public stabilimenti page ===== */
.public-stab-page {
    padding: 2rem 0 4rem;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    min-height: calc(100vh - 88px);
}

.public-stab-container {
    max-width: 1100px;
}

.public-stab-header {
    margin-bottom: 1.25rem;
}

.public-stab-search {
    display: flex;
    gap: .75rem;
    align-items: stretch;
    margin-bottom: 1.25rem;
}

.public-stab-search .input-field {
    flex: 1 1 auto;
}

.public-stab-search .btn-primary-cta {
    justify-content: center;
    white-space: nowrap;
}

.public-stab-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.public-stab-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1rem 1.1rem;
    position: relative;
    overflow: hidden;
}

.public-stab-card > * {
    position: relative;
    z-index: 1;
}

.public-stab-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: var(--r);
}

.public-stab-card-link:focus-visible {
    outline: 2px solid var(--aqua);
    outline-offset: -2px;
}

.public-stab-carousel .carousel-control-prev,
.public-stab-carousel .carousel-control-next,
.public-stab-carousel .carousel-indicators {
    z-index: 4;
}

.public-stab-image-link,
.public-stab-image-placeholder-link {
    display: block;
    text-decoration: none;
}

.public-stab-title-link {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.public-stab-title-link:hover {
    color: var(--aqua);
}

.public-stab-book-link {
    width: 100%;
    justify-content: center;
    margin-top: .85rem;
    font-size: .84rem;
    padding: .72rem 1rem;
    pointer-events: none;
}

.public-stab-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .03);
    margin-bottom: .9rem;
}

.public-stab-carousel {
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.public-stab-carousel .carousel-inner,
.public-stab-carousel .carousel-item {
    height: 100%;
}

.public-stab-image,
.public-stab-image-single {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-stab-image-placeholder {
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    background: linear-gradient(180deg, rgba(0, 201, 177, .1) 0%, rgba(17, 32, 57, .35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.public-stab-image-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(0, 201, 177, .08) 0%, rgba(17, 32, 57, .3) 100%);
}

.public-stab-photo-badge {
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 5;
    background: rgba(9, 21, 42, .78);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    border-radius: 999px;
    padding: .2rem .55rem;
    font-size: .68rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
    .public-stab-media {
        aspect-ratio: 16 / 11;
    }
}

.public-stab-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .3rem;
    line-height: 1.3;
}

.public-stab-address {
    font-size: .82rem;
    color: var(--body-text);
    opacity: .75;
    margin-bottom: .3rem;
}

.public-stab-meta {
    font-size: .78rem;
    color: var(--aqua);
    margin-bottom: 0;
}

.public-stab-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--body-text);
    opacity: .6;
    font-size: .95rem;
}

/* ===== Public stabilimenti — responsive (devono stare DOPO le regole base) ===== */
@media (max-width: 991px) {
    .public-stab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .85rem;
    }
}

@media (max-width: 767px) {
    .public-stab-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .public-stab-search {
        flex-direction: column;
    }

    .public-stab-search .btn-primary-cta {
        width: 100%;
    }

    .public-stab-header {
        text-align: center;
    }

    .public-stab-header .panel-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .public-stab-page {
        padding: 1.25rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .public-stab-card {
        padding: .9rem;
    }
}
