/* =========================================================
   AMBITION WELLNESS STUDIO
   Nuovo sito - CSS di prova
   ========================================================= */


/* =========================
   RESET BASE
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================
   VARIABILI
========================= */

:root {
    --black: #080808;
    --white: #ffffff;
    --yellow: #ffc107;

    --grey-050: #fafafa;
    --grey-100: #f4f4f4;
    --grey-200: #e8e8e8;
    --grey-500: #747474;
    --grey-700: #2f2f2f;
    --grey-900: #151515;

    --max-width: 1180px;
    --radius-lg: 28px;
    --radius-md: 18px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    color: var(--white);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-container {
    width: calc(100% - 40px);
    max-width: var(--max-width);
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.header-logo {
    display: block;
    flex-shrink: 0;
}

.header-logo img {
    width: 210px;
    height: auto;
}


/* MENU DESKTOP */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 26px;

    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
    color: #e8e8e8;
    padding: 30px 0;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--yellow);
}

.desktop-nav a:not(.area-riservata)::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background: var(--yellow);

    transition: width 0.25s ease;
}

.desktop-nav a:not(.area-riservata):hover::after {
    width: 100%;
}


/* AREA RISERVATA */

.desktop-nav .area-riservata,
.mobile-nav .area-riservata {
    color: var(--black);
    background: var(--yellow);

    padding: 11px 18px;
    border-radius: 100px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.desktop-nav .area-riservata:hover,
.mobile-nav .area-riservata:hover {
    background: #ffd54f;
    color: var(--black);
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 7px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--white);

    margin: 6px 0;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;

    background: var(--black);

    padding: 10px 20px 25px;

    border-top: 1px solid #222;
}

.mobile-nav.active {
    display: flex;

    flex-direction: column;
    align-items: stretch;
}

.mobile-nav a {
    color: var(--white);

    padding: 17px 5px;

    border-bottom: 1px solid #222;

    font-size: 17px;
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

.mobile-nav .area-riservata {
    text-align: center;

    margin-top: 20px;

    padding: 13px 18px;
}


/* =========================================================
   LAYOUT GENERALE
   ========================================================= */

.page-container {
    width: calc(100% - 40px);
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}

.section-label {
    margin: 0 0 14px;

    color: var(--yellow);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.section-title {
    margin: 0 0 22px;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.035em;

    font-weight: 800;
}

.section-subtitle {
    max-width: 720px;

    margin: 0;

    color: var(--grey-500);

    font-size: 18px;
    line-height: 1.7;
}

.text-yellow {
    color: var(--yellow);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-prova {
    position: relative;

    min-height: calc(100vh - 82px);
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url('/img/background/top_index1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.82) 34%,
            rgba(0,0,0,0.48) 65%,
            rgba(0,0,0,0.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    margin: 0 0 20px;

    color: var(--yellow);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.hero-content h1 {
    max-width: 820px;

    margin: 0;

    color: var(--white);

    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.05em;

    font-weight: 800;
}

.hero-description {
    max-width: 650px;

    margin: 30px 0 0;

    color: rgba(255,255,255,0.82);

    font-size: 20px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;
}


/* BOTTONI */

.btn-primary-prova,
.btn-secondary-prova {
    min-height: 52px;

    padding: 14px 22px;

    border-radius: 100px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary-prova {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary-prova:hover {
    background: #ffd54f;
    transform: translateY(-2px);
}

.btn-secondary-prova {
    color: var(--white);

    border: 1px solid rgba(255,255,255,0.55);

    background: rgba(0,0,0,0.2);

    backdrop-filter: blur(5px);
}

.btn-secondary-prova:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}


/* =========================================================
   SCELTA PERCORSO
   ========================================================= */

.percorso-section {
    background: var(--white);
}

.percorso-heading {
    margin-bottom: 50px;
}

.percorso-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.percorso-card {
    position: relative;

    min-height: 520px;

    padding: 34px;

    border-radius: var(--radius-lg);

    background: var(--grey-100);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid #ececec;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.percorso-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);
}

.percorso-card-open {
    background: var(--black);
    color: var(--white);

    border-color: #1d1d1d;
}

.percorso-number {
    margin-bottom: 80px;

    color: rgba(0,0,0,0.15);

    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.percorso-card-open .percorso-number {
    color: rgba(255,255,255,0.15);
}

.open-badge {
    position: absolute;
    top: 30px;
    right: 30px;

    padding: 8px 12px;

    background: var(--yellow);
    color: var(--black);

    border-radius: 100px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.percorso-type {
    margin: 0 0 14px;

    color: var(--yellow);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.percorso-card h3 {
    max-width: 480px;

    margin: 0 0 22px;

    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.035em;

    font-weight: 800;
}

.percorso-card p:not(.percorso-type) {
    max-width: 520px;

    margin-top: 0;

    color: #5d5d5d;

    font-size: 16px;
    line-height: 1.7;
}

.percorso-card-open p:not(.percorso-type) {
    color: rgba(255,255,255,0.72);
}


/* TAG */

.percorso-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 28px 0;
}

.percorso-tags span {
    display: inline-flex;

    padding: 9px 13px;

    border-radius: 100px;

    background: rgba(0,0,0,0.06);

    color: #373737;

    font-size: 13px;
    font-weight: 700;
}

.percorso-card-open .percorso-tags span {
    background: rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.88);
}


/* LINK TESTUALE */

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 5px;

    font-size: 15px;
    font-weight: 800;

    color: var(--black);
}

.percorso-card-open .text-link {
    color: var(--yellow);
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 18px;
        font-size: 13px;
    }

    .hero-prova {
        min-height: 650px;
    }

    .percorso-grid {
        gap: 18px;
    }

}


@media (max-width: 900px) {

    .header-container {
        min-height: 72px;
    }

    .header-logo img {
        width: 185px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-prova {
        min-height: calc(100svh - 72px);

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.94) 0%,
                rgba(0,0,0,0.76) 60%,
                rgba(0,0,0,0.42) 100%
            );
    }

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

    .percorso-card {
        min-height: auto;
    }

    .percorso-number {
        margin-bottom: 65px;
    }

}


@media (max-width: 600px) {

    .header-container {
        width: calc(100% - 28px);
    }

    .header-logo img {
        width: 165px;
    }

    .page-container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 72px 0;
    }

    .hero-prova {
        min-height: 650px;

        background-position: 64% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.62) 0%,
                rgba(0,0,0,0.80) 43%,
                rgba(0,0,0,0.96) 100%
            );
    }

    .hero-content {
        align-self: flex-end;

        padding-top: 120px;
        padding-bottom: 58px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .hero-description {
        margin-top: 22px;

        font-size: 17px;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;

        margin-top: 28px;
    }

    .btn-primary-prova,
    .btn-secondary-prova {
        width: 100%;
    }

    .percorso-heading {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: 39px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .percorso-card {
        padding: 26px;

        border-radius: 22px;
    }

    .percorso-number {
        margin-bottom: 55px;

        font-size: 46px;
    }

    .open-badge {
        top: 25px;
        right: 25px;
    }

    .percorso-card h3 {
        font-size: 36px;
    }

}


/* =========================================================
   METODO AMBITION
   ========================================================= */

.metodo-section {
    background: var(--black);
    color: var(--white);
}

.metodo-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 60px;
}

.metodo-intro .section-title {
    margin-bottom: 0;
}

.metodo-intro-text {
    margin: 0;
    color: rgba(255,255,255,0.66);
    font-size: 18px;
    line-height: 1.7;
}

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,0.13);
    border-left: 1px solid rgba(255,255,255,0.13);
}

.metodo-step {
    min-height: 300px;
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,0.13);
    border-bottom: 1px solid rgba(255,255,255,0.13);

    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;

    transition: background 0.2s ease;
}

.metodo-step:hover {
    background: rgba(255,255,255,0.035);
}

.metodo-step-number {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 900;
}

.metodo-step-label {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.46);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.metodo-step h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.metodo-step p:not(.metodo-step-label) {
    margin: 0;
    color: rgba(255,255,255,0.64);
    line-height: 1.7;
    font-size: 15px;
}

.metodo-cta {
    margin-top: 36px;
    padding: 30px 34px;

    background: var(--yellow);
    color: var(--black);

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.metodo-cta-small {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.metodo-cta h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.metodo-cta .btn-primary-prova {
    background: var(--black);
    color: var(--white);
    flex-shrink: 0;
}

.metodo-cta .btn-primary-prova:hover {
    background: #252525;
}


@media (max-width: 900px) {

    .metodo-intro {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

}


@media (max-width: 600px) {

    .metodo-intro {
        margin-bottom: 40px;
    }

    .metodo-intro-text {
        font-size: 16px;
    }

    .metodo-step {
        min-height: auto;
        padding: 28px 24px;
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .metodo-step h3 {
        font-size: 25px;
    }

    .metodo-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 26px;
    }

    .metodo-cta .btn-primary-prova {
        width: 100%;
    }

}


/* =========================================================
   NUTRIZIONE
   ========================================================= */

.nutrizione-section {
    background: #f3f3f1;
    color: var(--black);
}

.nutrizione-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 80px;
    align-items: center;
}

.nutrizione-text {
    max-width: 720px;
    margin: 0;
    color: #5e5e5e;
    font-size: 18px;
    line-height: 1.75;
}

.nutrizione-points {
    margin-top: 42px;
    display: grid;
    gap: 0;
    border-top: 1px solid #d7d7d3;
}

.nutrizione-point {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #d7d7d3;
}

.nutrizione-point > span {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 900;
}

.nutrizione-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.nutrizione-point p {
    margin: 0;
    color: #6c6c6c;
    font-size: 15px;
    line-height: 1.6;
}

.nutrizione-card {
    background: var(--black);
    color: var(--white);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.nutrizione-card-label {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.nutrizione-card h3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.nutrizione-card-text {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.65;
}

.nutrizione-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.nutrizione-card-meta span {
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 12px;
    font-weight: 700;
}

.nutrizione-button {
    width: 100%;
    margin-top: 34px;
}


@media (max-width: 900px) {

    .nutrizione-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nutrizione-card {
        max-width: 560px;
    }

}


@media (max-width: 600px) {

    .nutrizione-text {
        font-size: 16px;
    }

    .nutrizione-point {
        grid-template-columns: 38px 1fr;
    }

    .nutrizione-card {
        padding: 28px;
        border-radius: 22px;
    }

    .nutrizione-card h3 {
        font-size: 30px;
    }

}


/* =========================================================
   RECENSIONI GOOGLE
   ========================================================= */

.recensioni-section {
    background: var(--white);
    color: var(--black);
}

.recensioni-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 50px;
    align-items: end;

    margin-bottom: 48px;
}

.recensioni-heading .section-title {
    margin-bottom: 0;
}

.google-rating-box {
    min-width: 270px;

    padding: 24px 28px;

    border: 1px solid #e7e7e7;
    border-radius: 22px;

    display: flex;
    align-items: center;

    gap: 18px;

    background: #fafafa;
}

.google-rating-value {
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.google-stars {
    color: var(--yellow);
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1;
}

.google-rating-meta {
    margin-top: 7px;

    color: #676767;

    font-size: 13px;
    font-weight: 700;
}


/* SLIDER */

.recensioni-slider-wrapper {
    position: relative;
}

.recensioni-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);

    gap: 18px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;

    padding: 2px 2px 12px;
}

.recensioni-slider::-webkit-scrollbar {
    display: none;
}


/* CARD */

.recensione-card {
    min-width: 0;
    min-height: 420px;

    padding: 26px;

    border: 1px solid #e8e8e8;
    border-radius: 24px;

    background: #f7f7f5;

    scroll-snap-align: start;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.recensione-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0,0,0,0.07);
}


/* AUTORE */

.recensione-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 16px;
}

.recensione-author {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;
}

.recensione-avatar {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    overflow: hidden;

    background: #ddd;
}

.recensione-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.recensione-avatar-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);
    color: var(--yellow);

    font-size: 18px;
    font-weight: 900;
}

.recensione-author strong {
    display: block;

    max-width: 180px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 15px;
}

.recensione-author span {
    display: block;

    margin-top: 2px;

    color: #7a7a7a;

    font-size: 12px;
}

.recensione-stars {
    flex-shrink: 0;

    color: var(--yellow);

    font-size: 14px;
    letter-spacing: 0.04em;
}


/* TESTO */

.recensione-text-wrapper {
    margin-top: 24px;
    flex: 1;
}

.recensione-text {
    margin: 0;

    color: #444;

    font-size: 15px;
    line-height: 1.72;

    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.recensione-card.expanded .recensione-text {
    display: block;
    overflow: visible;
}

.recensione-toggle {
    margin-top: 12px;

    padding: 0;

    border: 0;

    background: transparent;
    color: var(--black);

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;
}


/* FOOTER CARD */

.recensione-bottom {
    margin-top: 24px;
    padding-top: 17px;

    border-top: 1px solid #dedede;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
}

.recensione-google-link,
.recensione-report {
    font-size: 12px;
    font-weight: 800;
}

.recensione-google-link {
    color: var(--black);
}

.recensione-report {
    color: #8a8a8a;
}


/* FRECCE */

.recensioni-arrow {
    position: absolute;
    top: 50%;

    width: 46px;
    height: 46px;

    transform: translateY(-50%);

    border: 0;
    border-radius: 50%;

    background: var(--black);
    color: var(--white);

    cursor: pointer;

    z-index: 3;

    font-size: 20px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.recensioni-arrow-left {
    left: -23px;
}

.recensioni-arrow-right {
    right: -23px;
}


/* FOOTER SEZIONE */

.recensioni-footer {
    margin-top: 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.google-brand {
    color: #686868;

    font-size: 13px;
    font-weight: 800;
}

.recensioni-loading {
    min-height: 220px;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;

    background: #f7f7f5;
    border-radius: 22px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .recensioni-slider {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

}


@media (max-width: 800px) {

    .recensioni-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .google-rating-box {
        width: fit-content;
    }

    .recensioni-arrow {
        display: none;
    }

}


@media (max-width: 600px) {

    .google-rating-box {
        width: 100%;
        min-width: 0;

        padding: 20px;
    }

    .google-rating-value {
        font-size: 48px;
    }

    .recensioni-slider {
        grid-auto-columns: 88%;

        gap: 12px;

        margin-right: -15px;
    }

    .recensione-card {
        min-height: 400px;

        padding: 22px;

        border-radius: 20px;
    }

    .recensioni-footer {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   CHI SIAMO
   ========================================================= */

.chi-siamo-section {
    position: relative;
    overflow: hidden;
    background: #f3f3f1;
    color: var(--black);
}

.chi-siamo-watermark {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);

    color: rgba(0,0,0,0.028);

    font-size: clamp(110px, 18vw, 270px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.07em;

    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.chi-siamo-container {
    position: relative;
    z-index: 2;
}

.chi-siamo-heading {
    max-width: 850px;
    margin-bottom: 55px;
}

.chi-siamo-copy {
    max-width: 820px;
    margin-left: auto;
}

.chi-siamo-copy p {
    margin: 0 0 22px;

    color: #595959;

    font-size: 17px;
    line-height: 1.8;
}

.chi-siamo-copy .chi-siamo-lead {
    color: var(--black);

    font-size: clamp(21px, 2.4vw, 28px);
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.chi-siamo-copy strong {
    color: var(--black);
    font-weight: 800;
}


/* NUMERI */

.chi-siamo-numeri {
    margin-top: 75px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #cececa;
    border-bottom: 1px solid #cececa;
}

.chi-siamo-numero {
    padding: 34px 30px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid #cececa;
}

.chi-siamo-numero:first-child {
    padding-left: 0;
}

.chi-siamo-numero:last-child {
    border-right: 0;
}

.chi-siamo-numero strong {
    color: var(--black);

    font-size: clamp(43px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.chi-siamo-numero .numero-plus {
    color: var(--yellow);
}

.chi-siamo-numero > span {
    margin-top: 12px;

    color: #686868;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


@media (max-width: 700px) {

    .chi-siamo-heading {
        margin-bottom: 38px;
    }

    .chi-siamo-copy {
        margin-left: 0;
    }

    .chi-siamo-copy p {
        font-size: 16px;
        line-height: 1.72;
    }

    .chi-siamo-copy .chi-siamo-lead {
        font-size: 21px;
        line-height: 1.55;
    }

    .chi-siamo-numeri {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .chi-siamo-numero,
    .chi-siamo-numero:first-child {
        padding: 25px 0;

        border-right: 0;
        border-bottom: 1px solid #cececa;
    }

    .chi-siamo-numero:last-child {
        border-bottom: 0;
    }

    .chi-siamo-numero strong {
        font-size: 48px;
    }

}


/* =========================================================
   CONTATTI + FOOTER
   ========================================================= */

.contatti-section {
    background: var(--black);
    color: var(--white);
}

.contatti-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 85px;
    align-items: center;
}

.contatti-intro > p:last-child {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,0.66);
    font-size: 18px;
    line-height: 1.7;
}

.contatti-actions {
    display: grid;
    gap: 14px;
}

.contatto-card {
    position: relative;
    min-height: 190px;
    padding: 30px 75px 30px 30px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.contatto-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.25);
}

.contatto-card-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.contatto-card-primary:hover {
    background: #ffd54f;
    border-color: #ffd54f;
}

.contatto-label {
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    opacity: .66;
}

.contatto-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.contatto-card p {
    max-width: 470px;
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.6;
}

.contatto-card-primary p {
    color: rgba(0,0,0,0.66);
}

.contatto-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;
    font-size: 28px;
    transition: transform .2s ease;
}

.contatto-card:hover .contatto-arrow {
    transform: translateX(5px);
}

.site-footer {
    background: #050505;
    color: var(--white);
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.footer-logo img {
    width: 210px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin: 22px 0 0;
    color: rgba(255,255,255,0.52);
    font-size: 14px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-title {
    margin: 0 0 8px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.footer-column a,
.footer-column span,
.footer-cookie-link {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer-column a:hover,
.footer-cookie-link:hover {
    color: var(--white);
}

.footer-cookie-link {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.09);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,0.36);
    font-size: 12px;
}

@media (max-width: 900px) {
    .contatti-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contatti-intro > p:last-child {
        font-size: 16px;
    }

    .contatto-card {
        min-height: 180px;
        padding: 25px 65px 25px 25px;
        border-radius: 21px;
    }

    .contatto-card strong {
        font-size: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}



/* =========================================================
   PAGINE LEGALI
   ========================================================= */

.legal-page {
    background: #f5f5f3;
    color: var(--black);
    padding: 150px 20px 90px;
}

.legal-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-kicker {
    margin: 0 0 12px;
    color: #c79b00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.legal-container h1 {
    margin: 0 0 10px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.045em;
}

.legal-updated {
    margin: 0 0 50px !important;
    color: #777 !important;
    font-size: 13px !important;
}

.legal-container h2 {
    margin: 52px 0 16px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.legal-container h3 {
    margin: 28px 0 10px;
    font-size: 18px;
}

.legal-container p,
.legal-container li {
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.legal-container p {
    margin: 0 0 17px;
}

.legal-container ul {
    margin: 12px 0 22px;
    padding-left: 22px;
}

.legal-container li {
    margin-bottom: 7px;
}

.legal-container a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-table-wrap {
    width: 100%;
    margin: 25px 0 40px;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
}

.legal-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.55;
}

.legal-table th {
    background: #111;
    color: #fff;
    font-weight: 800;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 600px) {
    .legal-page {
        padding: 120px 18px 65px;
    }

    .legal-updated {
        margin-bottom: 38px !important;
    }

    .legal-container h2 {
        margin-top: 42px;
        font-size: 22px;
    }

    .legal-container p,
    .legal-container li {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================================
   AMBITION OPEN - PAGINA DEDICATA
   ========================================================= */

.open-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.open-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 40%, rgba(255,193,7,.22), transparent 30%),
        linear-gradient(135deg, #050505 0%, #111 58%, #191919 100%);
}

.open-hero-bg::after {
    content: "OPEN";
    position: absolute;
    right: -25px;
    bottom: -40px;
    color: rgba(255,255,255,.035);
    font-size: clamp(180px, 28vw, 460px);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -.08em;
}

.open-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
}

.open-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 8vw, 104px);
    line-height: .94;
    letter-spacing: -.055em;
}

.open-hero-text {
    max-width: 700px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 20px;
    line-height: 1.65;
}

.open-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.open-hero-tags span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.05);
    font-size: 13px;
    font-weight: 700;
}


/* INTRO */

.open-intro-section {
    background: #f3f3f1;
}

.open-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.open-intro-copy p {
    margin: 0 0 22px;
    color: #5b5b5b;
    font-size: 17px;
    line-height: 1.8;
}

.open-intro-copy .open-intro-lead {
    color: var(--black);
    font-size: 23px;
    line-height: 1.55;
}


/* STEPS */

.open-steps-section {
    background: var(--black);
    color: #fff;
}

.open-section-heading {
    margin-bottom: 50px;
}

.open-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 1px solid rgba(255,255,255,.13);
}

.open-step-card {
    min-height: 285px;
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.open-step-number {
    display: block;
    margin-bottom: 55px;
    color: var(--yellow);
    font-weight: 900;
}

.open-step-card h3 {
    margin: 0 0 14px;
    font-size: 29px;
    letter-spacing: -.025em;
}

.open-step-card p {
    margin: 0;
    max-width: 490px;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.7;
}


/* FEATURES */

.open-features-section {
    background: #fff;
}

.open-features-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.open-features-list {
    border-top: 1px solid #ddd;
}

.open-feature-row {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #ddd;
}

.open-feature-row > span {
    color: var(--yellow);
    font-weight: 900;
}

.open-feature-row strong {
    display: block;
    margin-bottom: 7px;
    font-size: 20px;
}

.open-feature-row p {
    margin: 0;
    color: #656565;
    font-size: 15px;
    line-height: 1.65;
}


/* TARGET */

.open-target-section {
    background: #f3f3f1;
}

.open-target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.open-target-card {
    padding: 34px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #e4e4e1;
}

.open-target-yes {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.open-target-label {
    display: block;
    margin-bottom: 25px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.open-target-card ul {
    margin: 0;
    padding-left: 20px;
}

.open-target-card li {
    margin-bottom: 14px;
    color: #555;
    line-height: 1.6;
}

.open-target-yes li {
    color: rgba(255,255,255,.78);
}


/* PRICING */

.open-pricing-section {
    background: #fff;
}

.open-pricing-heading {
    margin-bottom: 48px;
}

.open-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.open-price-card {
    position: relative;
    padding: 32px;
    border: 1px solid #e4e4e4;
    border-radius: 25px;
    background: #f8f8f6;
}

.open-price-featured {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.open-price-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 10px;
    border-radius: 100px;
    background: var(--yellow);
    color: var(--black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.open-price-frequency {
    margin: 0 0 45px;
    color: #777;
    font-size: 13px;
    font-weight: 700;
}

.open-price-featured .open-price-frequency {
    color: rgba(255,255,255,.55);
}

.open-price-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
}

.open-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.open-price strong {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -.055em;
}

.open-price span {
    padding-bottom: 6px;
    color: #777;
    font-size: 13px;
}

.open-price-featured .open-price span {
    color: rgba(255,255,255,.55);
}

.open-price-note {
    margin: 28px 0 0;
    color: #676767;
    font-size: 14px;
    line-height: 1.65;
}

.open-price-featured .open-price-note {
    color: rgba(255,255,255,.64);
}

.open-longterm {
    margin-top: 24px;
    padding: 30px 34px;
    border-radius: 24px;
    background: var(--yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.open-longterm-label {
    margin: 0 0 7px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.open-longterm h3 {
    margin: 0;
    font-size: 27px;
}

.open-longterm p:not(.open-longterm-label) {
    max-width: 670px;
    margin: 8px 0 0;
    color: rgba(0,0,0,.65);
}

.open-longterm .btn-primary-prova {
    flex-shrink: 0;
    background: var(--black);
    color: #fff;
}


/* CTA FINALE */

.open-final-cta {
    background: var(--black);
    color: #fff;
}

.open-final-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.open-final-grid .section-title {
    margin-bottom: 20px;
}

.open-final-grid p:last-child {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.7;
}

.open-final-grid .btn-primary-prova {
    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .open-intro-grid,
    .open-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .open-pricing-grid {
        grid-template-columns: 1fr;
    }

    .open-final-grid {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 700px) {

    .open-hero {
        min-height: 650px;
    }

    .open-hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .open-hero h1 {
        font-size: 55px;
    }

    .open-hero-text {
        font-size: 17px;
    }

    .open-steps-grid,
    .open-target-grid {
        grid-template-columns: 1fr;
    }

    .open-step-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .open-step-number {
        margin-bottom: 35px;
    }

    .open-target-card,
    .open-price-card {
        padding: 26px;
    }

    .open-longterm {
        flex-direction: column;
        align-items: stretch;
        padding: 26px;
    }

    .open-longterm .btn-primary-prova {
        width: 100%;
    }

    .open-final-grid .btn-primary-prova {
        width: 100%;
    }
}

/* =========================================================
   PERSONAL TRAINING - PAGINA DEDICATA
   ========================================================= */

.pt-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.pt-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 40%, rgba(255,193,7,.18), transparent 29%),
        linear-gradient(135deg, #050505 0%, #111 60%, #191919 100%);
}

.pt-hero-bg::after {
    content: "PT";
    position: absolute;
    right: 2vw;
    bottom: -60px;
    color: rgba(255,255,255,.035);
    font-size: clamp(260px, 35vw, 560px);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -.08em;
}

.pt-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
}

.pt-hero h1 {
    max-width: 950px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 8vw, 104px);
    line-height: .94;
    letter-spacing: -.055em;
}

.pt-hero-text {
    max-width: 720px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 20px;
    line-height: 1.65;
}

.pt-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.pt-hero-tags span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 700;
}


/* INTRO */

.pt-intro-section {
    background: #f3f3f1;
}

.pt-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pt-intro-copy p {
    margin: 0 0 22px;
    color: #5b5b5b;
    font-size: 17px;
    line-height: 1.8;
}

.pt-intro-copy .pt-intro-lead {
    color: var(--black);
    font-size: 23px;
    line-height: 1.55;
}


/* VALUTAZIONE */

.pt-assessment-section {
    background: #fff;
}

.pt-assessment-box {
    padding: 50px;
    border-radius: 30px;
    background: var(--black);
    color: #fff;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
}

.pt-assessment-heading > p:last-child {
    max-width: 430px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.7;
}

.pt-assessment-items {
    border-top: 1px solid rgba(255,255,255,.14);
}

.pt-assessment-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.pt-assessment-item > span {
    color: var(--yellow);
    font-weight: 900;
}

.pt-assessment-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
}

.pt-assessment-item p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.6;
}


/* MODALITÀ */

.pt-modes-section {
    background: #f3f3f1;
}

.pt-section-heading {
    margin-bottom: 48px;
}

.pt-modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pt-mode-card {
    padding: 34px;
    border: 1px solid #dededb;
    border-radius: 26px;
    background: #fff;
}

.pt-mode-main:first-child {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.pt-mode-shared {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.pt-mode-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.pt-mode-number {
    color: var(--yellow);
    font-weight: 900;
}

.pt-mode-tag {
    padding: 7px 10px;
    border-radius: 100px;
    background: #f0f0ed;
    color: #555;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.pt-mode-main:first-child .pt-mode-tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
}

.pt-mode-card h3 {
    margin: 0 0 15px;
    font-size: 34px;
    letter-spacing: -.035em;
}

.pt-mode-lead {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.pt-mode-card > p:not(.pt-mode-lead) {
    margin: 0;
    color: #656565;
    font-size: 15px;
    line-height: 1.7;
}

.pt-mode-main:first-child > p:not(.pt-mode-lead) {
    color: rgba(255,255,255,.62);
}

.pt-mode-detail {
    display: inline-block;
    margin-top: 28px;
    padding: 9px 12px;
    border-radius: 8px;
    background: #f1f1ee;
    color: #555;
    font-size: 12px;
    font-weight: 800;
}

.pt-mode-main:first-child .pt-mode-detail {
    background: var(--yellow);
    color: var(--black);
}

.pt-mode-shared .pt-mode-top {
    margin: 0;
}

.pt-mode-shared h3 {
    margin-top: 0;
}

.pt-mode-shared .pt-mode-detail {
    grid-column: 3;
    margin-top: 0;
}

.pt-hybrid-note {
    margin-top: 18px;
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    gap: 28px;
}

.pt-hybrid-note strong {
    flex-shrink: 0;
    font-size: 18px;
}

.pt-hybrid-note p {
    margin: 0;
    color: rgba(0,0,0,.65);
    font-size: 14px;
    line-height: 1.6;
}


/* OBIETTIVI */

.pt-goals-section {
    background: var(--black);
    color: #fff;
}

.pt-goals-heading {
    margin-bottom: 48px;
}

.pt-goals-heading > p:last-child {
    max-width: 650px;
    color: rgba(255,255,255,.62);
    font-size: 17px;
}

.pt-goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 1px solid rgba(255,255,255,.13);
}

.pt-goal-card {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.pt-goal-card > span {
    display: block;
    margin-bottom: 55px;
    color: var(--yellow);
    font-weight: 900;
}

.pt-goal-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    letter-spacing: -.025em;
}

.pt-goal-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.65;
}


/* PREZZO */

.pt-price-section {
    background: #fff;
}

.pt-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pt-price-content {
    max-width: 590px;
}

.pt-price-highlight {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #ddd;
}

.pt-price-highlight > span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pt-price-highlight strong {
    display: inline-block;
    color: var(--black);
    font-size: 76px;
    line-height: 1;
    letter-spacing: -.06em;
}

.pt-price-highlight small {
    margin-left: 8px;
    color: #777;
}

.pt-price-content > p {
    color: #626262;
    font-size: 15px;
    line-height: 1.7;
}


/* CTA */

.pt-final-cta {
    background: var(--yellow);
    color: var(--black);
}

.pt-final-cta .section-label,
.pt-final-cta .text-yellow {
    color: var(--black);
}

.pt-final-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.pt-final-grid p:last-child {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(0,0,0,.65);
    font-size: 17px;
    line-height: 1.7;
}

.pt-final-grid .btn-primary-prova {
    flex-shrink: 0;
    background: var(--black);
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .pt-intro-grid,
    .pt-assessment-box,
    .pt-price-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pt-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-mode-shared {
        display: block;
    }

    .pt-mode-shared .pt-mode-top {
        margin-bottom: 45px;
    }

    .pt-mode-shared .pt-mode-detail {
        margin-top: 28px;
    }

    .pt-final-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 700px) {

    .pt-hero {
        min-height: 650px;
    }

    .pt-hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .pt-hero h1 {
        font-size: 55px;
    }

    .pt-hero-text {
        font-size: 17px;
    }

    .pt-assessment-box {
        padding: 27px;
        border-radius: 24px;
    }

    .pt-modes-grid,
    .pt-goals-grid {
        grid-template-columns: 1fr;
    }

    .pt-mode-shared {
        grid-column: auto;
    }

    .pt-mode-card {
        padding: 27px;
    }

    .pt-hybrid-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pt-goal-card {
        min-height: auto;
        padding: 27px 24px;
    }

    .pt-goal-card > span {
        margin-bottom: 35px;
    }

    .pt-price-highlight strong {
        font-size: 65px;
    }

    .pt-final-grid .btn-primary-prova {
        width: 100%;
    }
}


/* =========================================================
   PERSONAL TRAINING - PREZZI DETTAGLIATI
   ========================================================= */

.pt-pricing-heading {
    margin-bottom: 45px;
}

.pt-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pt-pricing-card {
    padding: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 24px;
    background: #f8f8f6;
}

.pt-pricing-type {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.pt-pricing-card h3 {
    margin: 0 0 30px;
    font-size: 28px;
    letter-spacing: -.03em;
}

.pt-pricing-value > span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.pt-pricing-value strong {
    display: block;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -.05em;
}

.pt-pricing-value small {
    display: block;
    margin-top: 7px;
    color: #6d6d6d;
    font-size: 12px;
}

.pt-pricing-reference {
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #6a6a6a;
    font-size: 13px;
    line-height: 1.6;
}

.pt-pricing-note {
    margin-top: 20px;
    padding: 25px 28px;
    border-radius: 20px;
    background: var(--black);
    color: #fff;
}

.pt-pricing-note strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.pt-pricing-note p {
    margin: 0;
    color: rgba(255,255,255,.63);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 850px) {
    .pt-pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pt-pricing-card {
        padding: 26px;
    }

    .pt-pricing-value strong {
        font-size: 44px;
    }
}



/* =========================================================
   NAVIGAZIONE - PAGINA ATTIVA
   ========================================================= */

.desktop-nav a.active-page {
    color: var(--yellow);
}

.desktop-nav a.active-page::after {
    width: 100%;
}

.mobile-nav a.active-page {
    color: var(--yellow);
    font-weight: 800;
}
/* =========================================================
   ACCESSIBILITÀ - CONTRASTO SU SFONDI CHIARI
   Manteniamo il giallo brillante su sfondo scuro,
   ma usiamo una variante più leggibile sui fondi chiari.
   ========================================================= */

:root {
    --yellow-text-light-bg: #8a6800;
}

/* Label gialle su sezioni chiare */
.percorso-section .section-label,
.nutrizione-section .section-label,
.chi-siamo-section .section-label,
.recensioni-section .section-label,
.pt-intro-section .section-label,
.pt-assessment-section .section-label,
.pt-modes-section .section-label,
.pt-price-section .section-label,
.open-intro-section .section-label,
.open-features-section .section-label,
.open-target-section .section-label,
.open-pricing-section .section-label {
    color: var(--yellow-text-light-bg);
}

/* Testo evidenziato in giallo su fondi chiari */
.percorso-section .text-yellow,
.nutrizione-section .text-yellow,
.chi-siamo-section .text-yellow,
.recensioni-section .text-yellow,
.pt-intro-section .text-yellow,
.pt-modes-section .text-yellow,
.pt-price-section .text-yellow,
.open-intro-section .text-yellow,
.open-features-section .text-yellow,
.open-target-section .text-yellow,
.open-pricing-section .text-yellow {
    color: var(--yellow-text-light-bg);
}

/* Tipologia servizi nelle card chiare */
.percorso-card:not(.percorso-card-open) .percorso-type {
    color: var(--yellow-text-light-bg);
}

/* Numerazione troppo tenue nella card chiara */
.percorso-card:not(.percorso-card-open) .percorso-number {
    color: rgba(0, 0, 0, 0.42);
}

/* Manteniamo invece il giallo brillante sui fondi scuri */
.percorso-card-open .percorso-type,
.percorso-card-open .text-link,
.metodo-section .section-label,
.metodo-section .text-yellow,
.contatti-section .section-label,
.contatti-section .text-yellow,
.pt-hero .section-label,
.pt-hero .text-yellow,
.pt-goals-section .section-label,
.pt-goals-section .text-yellow,
.open-hero .section-label,
.open-hero .text-yellow,
.open-steps-section .section-label,
.open-steps-section .text-yellow,
.open-final-cta .section-label,
.open-final-cta .text-yellow {
    color: var(--yellow);
}

/* =========================================================
   AMBITION OPEN - SALA, DURATA SLOT E SEDI
   ========================================================= */

.open-space-section {
    background: #f3f3f1;
}

.open-space-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 42px;
}

.open-space-copy p {
    margin: 0 0 18px;
    color: #5e5e5e;
    font-size: 16px;
    line-height: 1.75;
}

.open-space-copy .open-space-lead {
    color: var(--black);
    font-size: 20px;
    line-height: 1.6;
}

.open-space-gallery {
    position: relative;
    min-height: 610px;
    margin-top: 15px;
}

.open-space-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.open-space-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.open-space-photo-main {
    position: absolute;
    inset: 0 13% 0 0;
}

.open-space-photo-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.06) 35%, rgba(0,0,0,.64) 100%),
        linear-gradient(90deg, rgba(0,0,0,.08), transparent 55%);
    pointer-events: none;
}

.open-space-photo-main img {
    position: absolute;
    inset: 0;
}

.open-space-photo-main figcaption {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

.open-space-photo-main figcaption span {
    display: block;
    margin-bottom: 5px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.open-space-photo-main figcaption strong {
    font-size: 22px;
}

.open-space-photo-detail {
    position: absolute;
    width: 31%;
    height: 68%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid #f3f3f1;
    border-radius: 24px;
}

.open-space-photo-detail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18));
    pointer-events: none;
}

.open-duration-box {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 26px;
    padding: 34px 38px;
    border-radius: 24px;
    background: var(--black);
    color: #fff;
}

.open-duration-number {
    color: var(--yellow);
    font-size: 110px;
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.07em;
}

.open-duration-copy > span {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.open-duration-copy h3 {
    margin: 0 0 10px;
    font-size: 27px;
    letter-spacing: -.025em;
}

.open-duration-copy p {
    max-width: 800px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.7;
}

.open-price-duration {
    display: inline-block;
    margin: 2px 0 22px;
    padding: 6px 9px;
    border-radius: 100px;
    background: #ecece8;
    color: #666;
    font-size: 11px;
    font-weight: 800;
}

.open-price-featured .open-price-duration {
    background: rgba(0,0,0,.08);
    color: rgba(0,0,0,.7);
}

.open-locations-section {
    background: #fff;
}

.open-locations-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

.open-locations-heading > p:last-child {
    margin-top: 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.open-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.open-location-card {
    position: relative;
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #dededb;
    border-radius: 26px;
    background: #f5f5f2;
}

.open-location-card-open {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.open-location-number {
    display: block;
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 82px;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.07em;
}

.open-location-street {
    margin: 0 0 44px;
    color: #787878;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.open-location-card-open .open-location-street {
    color: rgba(255,255,255,.5);
}

.open-location-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    letter-spacing: -.03em;
}

.open-location-card > p:last-child {
    max-width: 480px;
    margin: 0;
    color: #686868;
    font-size: 14px;
    line-height: 1.7;
}

.open-location-card-open > p:last-child {
    color: rgba(255,255,255,.6);
}

@media (max-width: 900px) {
    .open-space-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .open-space-gallery {
        min-height: 520px;
    }

    .open-duration-box {
        grid-template-columns: 140px 1fr;
    }

    .open-duration-number {
        font-size: 90px;
    }
}

@media (max-width: 700px) {
    .open-space-gallery {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .open-space-photo-main,
    .open-space-photo-detail {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        transform: none;
        border: 0;
    }

    .open-space-photo-main {
        aspect-ratio: 4 / 5;
    }

    .open-space-photo-detail {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .open-duration-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px;
    }

    .open-duration-number {
        font-size: 84px;
    }

    .open-locations-grid {
        grid-template-columns: 1fr;
    }

    .open-location-card {
        min-height: auto;
    }
}

/* =========================================================
   HOME - INDICAZIONE DELLE DUE SEDI
   ========================================================= */

.percorso-location {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 10px;
    margin: 0 0 20px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
    color: #666;
}

.percorso-location span {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 100px;
    background: #ecece8;
    color: #222;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
}

.percorso-card-open .percorso-location {
    color: rgba(255,255,255,.58);
}

.percorso-card-open .percorso-location span {
    background: rgba(255,255,255,.1);
    color: var(--yellow);
}

.percorso-sedi-note {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-top: 24px;
    padding: 16px 20px;
    border-top: 1px solid #deded9;
    color: #6b6b6b;
    font-size: 13px;
    text-align: center;
}

.percorso-sedi-note strong {
    color: #222;
    font-size: 13px;
}

@media (max-width: 700px) {
    .percorso-location {
        margin-bottom: 17px;
    }

    .percorso-sedi-note {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        padding-left: 8px;
        padding-right: 8px;
    }
}
