        /* --- VARIABILI & RESET --- */
        :root {
            --primary-green: #1a4031;
            --secondary-green: #53917e;
            --accent-green: #7fa68f;
            --soft-pink: #fbfbfd;
            /* Apple-like light gray/white background */
            --white: #ffffff;
            --text-dark: #1d1d1f;
            /* Apple text color */
            --text-light: #86868b;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            --radius-lg: 24px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            --btn-shadow-soft: 0 10px 25px rgba(26, 64, 49, 0.18);
            --btn-shadow-strong: 0 18px 35px rgba(26, 64, 49, 0.3);
            --btn-gradient: linear-gradient(135deg, #1a4031 0%, #2f6a53 55%, #53917e 100%);
            --btn-glow: rgba(83, 145, 126, 0.38);
            --pink-border: #F4E6E4;
            --pink-glow: rgba(227, 181, 179, 0.5);
            --pink-gradient: linear-gradient(135deg, #F4E6E4 0%, #F4E6E4 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            overflow-x: clip;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            background-color: var(--soft-pink);
            line-height: 1.5;
            overflow-x: clip;
            min-height: 100vh;
        }

        body.menu-open {
            overflow: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-green);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* --- HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            background: rgba(255, 255, 255, 0.98);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
            height: 100px;
            border-bottom: 2px solid var(--pink-border);
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 15px;
        }

        .logo-signature {
            font-family: 'Great Vibes', cursive;
            font-size: 3.2rem;
            color: var(--primary-green);
            line-height: 0.68;
            display: flex;
            align-items: flex-end;
            overflow: visible;
        }

        .i-replacement {
            position: relative;
            display: inline;
            line-height: inherit;
            vertical-align: baseline;
            overflow: visible;
        }

        .leaf-svg {
            position: absolute;
            width: 0.44em;
            height: 0.44em;
            fill: var(--secondary-green);
            top: -0.25em;
            left: calc(50% + 10px);
            transform: translateX(-50%) rotate(-10deg) scale(90%);
            pointer-events: none;
        }

        .logo-subtitle {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--secondary-green);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 3px 15px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-top: 12px;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--secondary-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover,
        nav a.active {
            color: var(--secondary-green);
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            background: transparent;
            cursor: pointer;
            color: var(--primary-green);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            position: relative;
            z-index: 1002;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            border-radius: 2px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .menu-toggle.is-active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.is-active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.is-active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* --- CONTENUTO GENERALE --- */
        .btn-cta {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background: var(--btn-gradient);
            background-size: 170% 170%;
            background-position: 0% 50%;
            color: #fff;
            padding: 1.2rem 2.8rem;
            border-radius: 999px;
            font-weight: 700;
            letter-spacing: 0.02em;
            border: 1px solid rgba(255, 255, 255, 0.18);
            cursor: pointer;
            box-shadow: var(--btn-shadow-soft);
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-position 0.35s ease;
            display: inline-block;
        }

        .btn-cta::before {
            content: '';
            position: absolute;
            top: -120%;
            left: -30%;
            width: 55%;
            height: 320%;
            transform: rotate(25deg);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
            transition: left 0.55s ease;
            pointer-events: none;
            z-index: -1;
        }

        .btn-cta:hover {
            transform: translateY(-3px) scale(1.01);
            background-position: 100% 50%;
            box-shadow: var(--btn-shadow-strong), 0 0 0 8px rgba(83, 145, 126, 0.16);
            filter: saturate(1.08);
        }

        .btn-cta:hover::before {
            left: 120%;
        }

        .btn-cta:active {
            transform: translateY(0) scale(0.985);
            box-shadow: 0 8px 16px rgba(26, 64, 49, 0.22);
        }

        .btn-cta:focus-visible {
            outline: none;
            box-shadow: var(--btn-shadow-soft), 0 0 0 4px var(--btn-glow);
        }

        /* --- HOME: HERO --- */
        .hero {
            padding: 160px 5% 80px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.2rem;
        }

        .hero h2 {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.5;
            color: var(--secondary-green);
            margin-bottom: 2.5rem;
            max-width: 650px;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 550px;
        }

        .hero-img {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: heroFloat 10s ease-in-out infinite;
            will-change: transform;
            padding-left: 3rem; /* Shifting image to the right */
        }

        .hero-img::before {
            content: none;
        }

        .hero-img img {
            max-height: 70vh;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
            box-shadow: 0 22px 44px rgba(0, 0, 0, 0.13);
            animation: heroBlobMorph 14s ease-in-out infinite;
            will-change: border-radius;
        }

        @keyframes heroBlobMorph {

            0%,
            100% {
                border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
            }

            25% {
                border-radius: 52% 48% 34% 66% / 58% 42% 62% 38%;
            }

            50% {
                border-radius: 48% 52% 36% 64% / 62% 38% 58% 42%;
            }

            75% {
                border-radius: 53% 47% 32% 68% / 57% 43% 63% 37%;
            }
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* --- HOME: PINS --- */
        .city-pins {
            display: flex;
            justify-content: flex-start;
            /* Allineati a sinistra */
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            width: 100%;
        }

        .pin-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            transform: scale(1.1);
            /* Leggermente più grandi di base */
        }

        .pin-item:hover {
            transform: scale(1.25) translateY(-8px);
            /* Ancora più grandi in hover */
        }

        .pin-icon {
            width: 24px;
            height: 24px;
            fill: var(--accent-green);
            transition: transform 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
        }

        .pin-icon-wifi {
            fill: none;
            stroke: var(--accent-green);
            stroke-width: 2.1;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pin-icon-wifi circle {
            fill: var(--accent-green);
            stroke: none;
        }

        .pin-item span {
            font-size: 0.65rem;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }



        .pin-item:hover .pin-icon:not(.pin-icon-wifi) {
            fill: var(--primary-green);
            transform: scale(1.2);
        }

        .pin-item:hover .pin-icon-wifi {
            stroke: var(--primary-green);
            fill: none;
            transform: scale(1.2);
        }

        .pin-item:hover .pin-icon-wifi circle {
            fill: var(--primary-green);
        }

        /* --- HOME: ALTRE SEZIONI --- */
        .book-section {
            --book-info-overlap: 40px;
            --book-frame-top: 0px;
            --book-frame-height: 100%;
            position: relative;
            z-index: 10; /* Ensures shadow is not clipped by next section */
            isolation: isolate;
            width: 100%;
            max-width: none;
            margin: 0;
            min-height: clamp(548px, 44vw, 735px);
            padding: clamp(16px, 1.8vw, 30px) clamp(14px, 4.6vw, 68px);
            display: flex;
            justify-content: flex-end;
            align-items: center;
            overflow: visible;
        }

        .book-section::before {
            content: '';
            position: absolute;
            inset-inline: 0;
            top: var(--book-frame-top);
            height: var(--book-frame-height);
            background-image: url('../img/sfondo-libro.webp');
            background-size: 100% auto;
            background-position: center center;
            background-repeat: no-repeat;
            filter: drop-shadow(0 0 16px rgba(16, 42, 34, 0.34));
            z-index: 0;
            pointer-events: none;
        }

        @media (min-width: 769px) {
            .book-info {
                box-shadow: 0 25px 50px rgba(15, 36, 29, 0.25), 0 0 16px rgba(16, 42, 34, 0.34);
            }
        }

        .book-section::after,
        .book-info::before {
            content: none;
        }

        .book-info {
            position: relative;
            z-index: 1;
            width: min(100%, 540px);
            padding: clamp(18px, 2vw, 28px);
            display: grid;
            gap: 0.8rem;
            color: #1f342b;
            background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
            border: 1.5px solid var(--pink-border);
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(15, 36, 29, 0.25), 0 0 16px var(--pink-glow);
            backdrop-filter: blur(6px);
            margin: 0;
        }

        .book-mobile-image {
            display: none;
        }

        .book-eyebrow {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: #2f6150;
            margin-bottom: 0;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            padding: 0.48rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(83, 145, 126, 0.2);
            background: rgba(255, 255, 255, 0.82);
        }

        .book-info h2 {
            font-size: clamp(1.82rem, 2.9vw, 2.72rem);
            line-height: 0.94;
            margin: 0;
            color: var(--primary-green);
            max-width: 12ch;
            text-wrap: balance;
        }

        .book-description {
            font-size: 1rem;
            color: #28302d;
            line-height: 1.45;
            margin: 0;
            text-align: justify;
            text-justify: inter-word;
        }

        .book-highlights h3 {
            font-size: 0.9rem;
            margin: 0.1rem 0 0.55rem;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 800;
        }

        .book-highlights-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.65rem;
            margin: 0;
            padding: 0;
        }

        .book-highlights-list li {
            display: grid;
            justify-items: center;
            align-content: center;
            gap: 6px;
            min-height: 98px;
            padding: 10px 8px;
            border-radius: 16px;
            text-align: center;
            background: rgba(255, 255, 255, 0.74);
            border: 1.5px solid var(--pink-border);
            color: #214032;
            font-weight: 600;
            line-height: 1.22;
            box-shadow: 0 8px 16px rgba(20, 37, 30, 0.1);
        }

        .book-highlights-list li span {
            text-align: center;
        }

        .book-highlights-list svg {
            width: 24px;
            height: 24px;
            color: var(--primary-green);
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .book-quote {
            margin: 0.12rem auto 0;
            color: #244133;
            font-family: 'Cormorant Garamond', 'Times New Roman', serif;
            font-style: italic;
            font-weight: 500;
            font-size: clamp(1.26rem, 1.9vw, 1.56rem);
            line-height: 1.2;
            padding: 0;
            max-width: 34ch;
            text-align: center;
        }

        .book-quote span {
            display: inline-block;
            margin-top: 0.08rem;
            font-size: 0.96em;
        }

        .book-cta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.16rem;
        }

        .btn-amazon {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding-right: 1.5rem;
            white-space: nowrap;
        }

        .amazon-logo {
            position: relative;
            display: inline-flex;
            align-items: flex-end;
            justify-content: center;
            width: 24px;
            height: 20px;
            margin-left: 4px;
        }

        .amazon-a {
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 700;
            font-size: 1.45rem;
            line-height: 1;
        }

        .amazon-smile {
            position: absolute;
            left: 2px;
            bottom: -3px;
            width: 18px;
            height: 8px;
            border-bottom: 2px solid #f3c24c;
            border-radius: 0 0 18px 18px;
        }

        .amazon-smile::after {
            content: '';
            position: absolute;
            right: -2px;
            top: -2px;
            width: 5px;
            height: 5px;
            border-top: 2px solid #f3c24c;
            border-right: 2px solid #f3c24c;
            transform: rotate(30deg);
        }

        .reviews-section {
            padding: 7.5rem 5%;
            background-color: var(--soft-pink);
            text-align: center;
            position: relative;
        }

        .reviews-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .reviews-title {
            margin: 0;
            text-align: left;
            font-size: clamp(1.45rem, 2.1vw, 1.95rem);
            color: var(--primary-green);
            letter-spacing: 0.01em;
        }

        .reviews-action-row {
            text-align: right;
            margin-top: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .reviews-add-btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }

        /* --- CHI SONO: SEZIONE SPECIFICA --- */
        .about-section {
            padding: 180px 8% 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            animation: fadeInUp 1s ease;
        }

        .about-text h4 {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            color: var(--secondary-green);
            margin-bottom: 1rem;
        }

        .about-text h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .about-text .highlight {
            color: var(--primary-green);
            font-weight: 700;
        }

        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            animation: fadeInRight 1.2s ease;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 30px;
            box-shadow: 25px 25px 0px var(--soft-pink), 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: translate(-10px, -10px);
            box-shadow: 35px 35px 0px var(--accent-green), 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        /* --- MODALI & OVERLAYS --- */
        .city-info-overlay,
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35);
            /* Darker dim */
            backdrop-filter: blur(5px);
            /* Softer blur */
            -webkit-backdrop-filter: blur(5px);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
        }

        .city-info-box,
        .booking-widget {
            background: rgba(255, 255, 255, 0.95);
            /* Slightly translucent */
            padding: 3rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--modal-shadow), 0 0 30px var(--pink-glow);
            border: 2px solid var(--pink-border);
            text-align: center;
            width: 90%;
            max-width: 480px;
            position: relative;
            transform: scale(0.95);
            animation: modalPop 0.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }

        @keyframes modalPop {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* --- STILI CALENDARIO (ESTETICA APPLE) --- */
        .booking-step {
            display: none;
            animation: slideIn 0.4s ease;
        }

        .booking-step.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: 5px;
            display: block;
            text-align: left;
        }

        select,
        input[type="text"],
        input[type="email"] {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 15px;
            border-radius: var(--radius-md);
            border: 1.5px solid var(--pink-border);
            background-color: #f5f5f7;
            font-size: 1rem;
            color: var(--text-dark);
            transition: var(--transition);
            -webkit-appearance: none;
            appearance: none;
            font-family: inherit;
        }

        select:focus,
        input:focus {
            background-color: #fff;
            border-color: #D49A97;
            box-shadow: 0 0 0 4px var(--pink-glow);
        }

        /* Navigazione Mese/Anno */
        .calendar-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            background: #f5f5f7;
            padding: 10px 15px;
            border-radius: var(--radius-md);
            border: 1.5px solid var(--pink-border);
        }

        .calendar-nav .nav-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            text-transform: capitalize;
        }

        .nav-btn {
            background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
            border: 1.5px solid var(--pink-border);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--primary-green);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.09);
        }

        .nav-btn:hover {
            background: var(--btn-gradient);
            color: white;
            border-color: var(--primary-green);
            transform: scale(1.08) translateY(-1px);
            box-shadow: 0 10px 18px rgba(26, 64, 49, 0.22);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        .nav-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 145, 126, 0.28);
        }

        .nav-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Griglia Calendario */
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .day-name {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .day {
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 50%;
            /* Circle */
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0 auto;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .day.disponibile {
            background-color: var(--primary-green);
            color: white;
            border: 1px solid transparent;
            /* Remove border for cleaner look */
            font-weight: 600;
        }

        .day.disponibile:hover {
            background-color: var(--secondary-green);
            color: white;
            transform: scale(1.1);
        }

        .day.chiuso {
            color: #d1d1d6;
            cursor: default;
            background: transparent;
        }

        .day.empty {
            background: transparent;
            cursor: default;
        }

        /* Orari */
        .time-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 10px;
            max-height: 250px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .time-slot {
            padding: 12px;
            border: 1.5px solid var(--pink-border);
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
            background: #fff;
            transition: var(--transition);
        }

        .time-slot:hover {
            border-color: var(--secondary-green);
            color: var(--secondary-green);
            background: #f2fcf5;
        }

        .back-btn {
            font-size: 0.9rem;
            color: var(--text-light);
            background: rgba(83, 145, 126, 0.08);
            border: 1.5px solid var(--pink-border);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
            font-weight: 500;
            transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
            padding: 8px 12px;
            border-radius: 999px;
        }

        .back-btn:hover {
            color: var(--primary-green);
            background: rgba(83, 145, 126, 0.16);
            border-color: rgba(83, 145, 126, 0.35);
            transform: translateX(-2px);
        }

        .back-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 145, 126, 0.25);
        }

        /* Summary Box */
        .summary-box {
            background: #f5f5f7;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: left;
            margin-bottom: 25px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.95rem;
            border-bottom: 1px solid #e5e5ea;
            padding-bottom: 8px;
        }

        .summary-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .summary-label {
            color: var(--text-light);
        }

        .summary-val {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* --- ANIMAZIONI --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {

            .hero,
            .about-section {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .book-section {
                justify-content: flex-end;
                min-height: 538px;
                padding: 16px 24px;
                background-position: center center;
                background-size: 100% auto;
            }

            .book-info {
                width: min(100%, 500px);
                padding: 18px;
            }

            .book-info h2 {
                font-size: clamp(1.72rem, 4.6vw, 2.4rem);
            }

            .book-highlights-list {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            /* .hero-img rimosso da qui per gestirlo diversamente */
            .about-image {
                order: -1;
            }

            .hero h1,
            .about-text h1 {
                font-size: 2.5rem;
            }

        }

        @media (max-width: 768px) {
            header {
                height: 80px;
                /* Ridotto leggermente */
                padding: 0 20px;
            }

            /* EROINA MOBILE: Testo prima, Immagine dopo */
            .hero {
                padding: 110px 20px 60px;
                /* Meno padding verticale */
                gap: 2rem;
            }

            .hero-text {
                animation: none;
                /* Più leggero su mobile */
                text-align: center;
                /* Centrato su mobile */
            }

            .hero h1 {
                font-size: 2.2rem;
                /* Titolo più compatto */
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            /* Immagine prima del testo su mobile */
            .hero-img {
                order: -1;
                margin-top: 0;
                margin-bottom: 18px;
            }

            .hero-img img {
                max-height: 40vh;
                /* Immagine più piccola */
                max-width: 100%;
                width: auto;
                height: auto;
                animation-duration: 16s;
            }

            /* CTA Button Mobile: ben visibile */
            .btn-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 320px;
            }

            /* PINS Mobile */
            .city-pins {
                justify-content: center;
                /* Centrati su mobile sembrano meglio */
                gap: 20px;
                /* Meno gap */
                margin-top: 30px;
            }

            .pin-item {
                transform: scale(1);
                /* Reset scale */
            }

            /* MENU */
            .logo-container {
                align-items: flex-start;
                margin-top: 6px;
                max-width: calc(100% - 62px);
            }

            .logo-signature {
                font-size: 2.2rem;
            }

            .logo-subtitle {
                font-size: 0.62rem;
                margin-top: 6px;
                letter-spacing: 1.4px;
                padding: 2px 10px;
            }

            .menu-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            nav {
                position: fixed;
                top: 80px;
                right: 0;
                width: min(82vw, 340px);
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.98);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.14);
                border-left: 1px solid rgba(26, 64, 49, 0.08);
                transform: translateX(110%);
                transition: transform 0.28s ease;
                z-index: 1001;
                pointer-events: none;
            }

            nav ul {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: 100%;
                gap: 0;
                padding: 1.2rem 1.1rem 1.8rem;
                text-align: left;
                background: transparent;
            }

            nav ul li {
                margin: 0;
            }

            nav.active ul {
                display: flex;
            }

            nav.active {
                transform: translateX(0);
                pointer-events: auto;
            }

            nav a {
                display: block;
                font-size: 0.95rem;
                padding: 0.9rem 0.55rem;
                border-bottom: 1px solid rgba(26, 64, 49, 0.08);
            }

            nav a::after {
                display: none;
            }

            .book-section {
                justify-content: center;
                min-height: 0;
                padding: 16px 14px;
                background-position: 31% center;
                background: none;
                align-items: stretch;
            }

            .book-section::before {
                content: none;
            }

            .reviews-section,
            .about-section {
                padding: 60px 20px;
            }

            .book-info {
                width: 100%;
                gap: 0.9rem;
                padding: 16px 14px;
                margin: 0 auto;
            }

            .book-mobile-image {
                display: block;
                position: absolute;
                top: -78px;
                right: 8px;
                width: min(118px, 34vw);
                height: auto;
                z-index: 2;
                pointer-events: none;
            }

            .book-eyebrow,
            .book-info h2 {
                max-width: none;
            }

            .book-info h2 {
                font-size: 1.72rem;
                max-width: none;
            }

            .book-description {
                max-width: none;
                width: 100%;
                text-align: justify;
                text-justify: inter-word;
            }

            .about-text h1 {
                font-size: 1.8rem;
            }

            .book-description {
                font-size: 0.96rem;
            }

            .book-highlights-list {
                grid-template-columns: 1fr;
            }

            .book-highlights h3 {
                text-align: center;
            }

            .book-highlights-list li {
                display: grid;
                justify-items: center;
                align-content: center;
                gap: 8px;
                min-height: 0;
                text-align: center;
                padding: 12px 13px;
            }

            .book-quote {
                font-size: 1.26rem;
                line-height: 1.18;
                max-width: none;
            }

            .btn-amazon {
                width: 100%;
                justify-content: center;
                max-width: none;
            }

            .book-cta-row {
                width: 100%;
            }

            /* Pagina Chi Sono: immagine sopra al titolo su mobile */
            .chi-sono-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            .chi-sono-img {
                order: -1;
            }
        }

        /* REVIEWS SLIDER */
        .reviews-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 22px;
        }

        .reviews-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 22px 8px 26px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
        }

        .reviews-slider::-webkit-scrollbar {
            display: none;
            /* Chrome/Safari */
        }

        .review-card {
            position: relative;
            width: 320px;
            min-height: 288px;
            text-align: left;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            padding: 28px 24px;
            border-radius: 20px;
            border: 1.5px solid var(--pink-border);
            box-shadow: 0 8px 24px rgba(26, 64, 49, 0.04), 0 2px 8px rgba(26, 64, 49, 0.02), inset 0 0 0 0 var(--pink-glow);
            transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            will-change: transform, box-shadow;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(26, 64, 49, 0.08), 0 4px 12px rgba(26, 64, 49, 0.04), 0 0 20px var(--pink-glow);
            border-color: #D49A97;
        }

        .reviewer-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, rgba(83, 145, 126, 0.15) 0%, rgba(213, 166, 184, 0.25) 100%);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
            border: 1px solid rgba(83, 145, 126, 0.1);
            box-shadow: 0 5px 12px rgba(26, 64, 49, 0.25);
            flex-shrink: 0;
        }

        .reviewer-info {
            min-width: 0;
        }

        .reviewer-name {
            display: block;
            margin-bottom: 4px;
            color: #143327;
            font-size: 0.95rem;
            line-height: 1.25;
        }

        .reviewer-info strong {
            display: block;
            color: #143327;
            font-size: 0.95rem;
            line-height: 1.25;
        }

        .reviewer-info .stars {
            color: #fbbc04;
            /* Google Star Yellow */
            font-size: 0.88rem;
            margin: 0;
            letter-spacing: 1px;
        }

        .review-text {
            color: #21342c;
            font-size: 0.96rem;
            line-height: 1.44;
            max-height: 152px;
            overflow-y: auto;
            padding-right: 8px;
            flex: 1;
        }

        .review-text::-webkit-scrollbar {
            width: 4px;
        }

        .review-text::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .review-text::-webkit-scrollbar-thumb {
            background: var(--secondary-green);
            border-radius: 10px;
        }

        .review-text::-webkit-scrollbar-thumb:hover {
            background: var(--primary-green);
        }

        .review-meta {
            font-size: 0.8rem;
            color: var(--text-light);
            text-align: right;
            margin-top: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
            border: 1.5px solid var(--pink-border);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
            z-index: 10;
            font-size: 1.2rem;
            color: var(--primary-green);
            transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
        }

        .slider-arrow:hover {
            background: var(--btn-gradient);
            color: white;
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 12px 24px rgba(26, 64, 49, 0.24);
        }

        .slider-arrow:active {
            transform: translateY(-50%) scale(0.96);
        }

        .slider-arrow:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(83, 145, 126, 0.26);
        }

        .slider-arrow.left {
            left: -10px;
        }

        .slider-arrow.right {
            right: -10px;
        }

        @media (max-width: 768px) {
            .slider-arrow {
                display: none;
            }

            .reviews-slider-container {
                padding: 0 10px;
            }

            .reviews-slider {
                gap: 16px;
                padding: 18px 6px 20px;
            }

            .review-card {
                width: min(84vw, 320px);
                min-height: 272px;
                padding: 20px 16px 14px;
                transform: rotate(0deg);
            }

            /* Su mobile si scrolla col dito */
        }

        /* --- PAGE: PERCORSI --- */
        .percorsi-section {
            padding: 140px 20px 80px;
            /* More top padding for header */
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            /* Fade in animation */
            animation: fadeInUp 1s ease;
        }

        .percorsi-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 50px;
            transition: opacity 0.5s ease;
        }

        /* ROADMAP STYLES */
        .roadmap-view {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
            margin-top: 20px;
            text-align: left;
            position: relative;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* NEW PERCORSI DETAILS STYLES */
        .percorso-details {
            margin-top: 40px;
            text-align: left;
            width: 100%;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            border: 1.5px solid var(--pink-border);
        }

        .percorso-details h3 {
            font-family: 'DM Serif Display', serif;
            color: var(--primary-green);
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--pink-border);
            display: inline-block;
            padding-bottom: 5px;
        }

        .table-responsive {
            overflow-x: auto;
            margin-bottom: 30px;
            border-radius: 12px;
            border: 1.5px solid var(--pink-border);
        }

        .details-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .details-table th,
        .details-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid var(--pink-border);
        }

        .details-table th {
            background-color: var(--soft-pink);
            color: var(--primary-green);
            font-weight: 600;
        }

        .details-table td:first-child {
            font-weight: bold;
            color: var(--primary-green);
            text-align: left;
            background: #fafafa;
        }

        /* FAQ Accordion Styles */
        .faq-section {
            margin-top: 30px;
        }

        .faq-section h4 {
            color: var(--primary-green);
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--secondary-gold);
            text-underline-offset: 6px;
            margin-bottom: 20px;
        }

        .faq-item {
            border-bottom: 1.5px solid var(--pink-border);
            margin-bottom: 10px;
        }

        .faq-question {
            width: 100%;
            background: rgba(83, 145, 126, 0.04);
            border: 1px solid transparent;
            border-radius: 12px;
            text-align: left;
            padding: 14px 16px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-green);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .faq-question:hover {
            color: var(--secondary-green);
            background: rgba(227, 181, 179, 0.2);
            border-color: var(--pink-border);
            transform: translateX(2px);
        }

        .faq-question:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 145, 126, 0.22);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease;
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 1200px;
            padding-bottom: 20px;
        }

        .faq-icon {
            transition: transform 0.3s;
            font-size: 1.2rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* --- CONTACT SECTION --- */
        .contacts-section {
            padding: 100px 8% 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contacts-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contacts-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .contacts-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            border: 1.5px solid var(--pink-border);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px var(--pink-glow);
            border-color: #D49A97;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--soft-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .contact-icon svg {
            width: 30px;
            height: 30px;
        }

        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-green);
        }

        .contact-card p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-green);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            margin-top: auto;
        }

        .contact-link:hover {
            color: var(--primary-green);
            gap: 12px;
        }

        .digital-contacts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            padding: 60px;
            background: var(--primary-green);
            border-radius: var(--radius-lg);
            color: white;
            box-shadow: 0 20px 40px rgba(26, 64, 49, 0.2);
        }

        .digital-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-align: center;
            flex: 1;
            min-width: 250px;
        }

        .digital-item .icon-circle {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .digital-item:hover .icon-circle {
            background: var(--secondary-green);
            transform: translateY(-5px);
        }

        .digital-item h4 {
            color: var(--secondary-green);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
        }

        .digital-item a {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .digital-item a:hover {
            color: var(--secondary-green);
        }

        @media (max-width: 768px) {
            .contacts-section {
                padding: 60px 4% 40px;
            }

            .contacts-header h2 {
                font-size: 2rem;
            }

            .digital-contacts {
                flex-direction: column;
                gap: 40px;
                padding: 40px 20px;
            }

            .digital-item {
                min-width: 100%;
            }
        }

        /* TUTORIAL MODAL STYLES */
        .tutorial-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.5s ease;
            justify-content: center;
            align-items: center;
        }

        .tutorial-content {
            background: white;
            width: 90%;
            max-width: 1000px;
            height: 80vh;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .close-tutorial {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(83, 145, 126, 0.08);
            border: 1px solid rgba(83, 145, 126, 0.2);
            border-radius: 12px;
            width: 44px;
            height: 44px;
            font-size: 1.7rem;
            cursor: pointer;
            z-index: 10;
            color: var(--text-light);
            transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .close-tutorial:hover {
            color: var(--primary-green);
            background: rgba(83, 145, 126, 0.16);
            border-color: rgba(83, 145, 126, 0.35);
            transform: rotate(90deg) scale(1.05);
        }

        .close-tutorial:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 145, 126, 0.24);
        }

        /* SELECTION SCREEN */
        .tutorial-selection {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .tutorial-selection h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 40px;
        }

        .selection-buttons {
            display: flex;
            gap: 30px;
        }

        .btn-select {
            padding: 20px 40px;
            font-size: 1.2rem;
            border: 1.5px solid var(--pink-border);
            background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
            color: var(--primary-green);
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
            font-family: 'DM Serif Display', serif;
            box-shadow: 0 8px 18px rgba(26, 64, 49, 0.12);
        }

        .btn-select:hover {
            background: var(--btn-gradient);
            color: white;
            box-shadow: 0 14px 24px rgba(20, 50, 40, 0.24);
            transform: translateY(-3px);
        }

        .btn-select:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-select:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(83, 145, 126, 0.24);
        }

        /* SLIDES VIEW */
        .tutorial-slides {
            width: 100%;
            height: 100%;
            display: none;
            /* Hidden initially */
            flex-direction: column;
        }

        .slide-wrapper {
            flex: 1;
            display: flex;
            width: 100%;
            overflow: hidden;
        }

        .slide-text-col {
            width: 40%;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }

        .slide-text-col h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .slide-text-col p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .slide-image-col {
            width: 60%;
            background-color: #fcece9;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: background-image 0.5s ease;
            position: relative;
        }

        /* Pagination Dots */
        .slide-nav {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-top: 1px solid #f0f0f0;
        }

        .dots-container {
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--primary-green);
            transform: scale(1.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .slide-wrapper {
                flex-direction: column-reverse;
            }

            .slide-text-col {
                width: 100%;
                height: 50%;
                padding: 30px 20px;
            }

            .slide-image-col {
                width: 100%;
                height: 50%;
            }

            .selection-buttons {
                flex-direction: column;
            }
        }

        .percorso-su-misura-section {
            padding: 40px 0 120px 0;
            background-color: var(--soft-pink);
            position: relative;
            overflow: hidden;
        }

        .percorso-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 70px;
            font-weight: 500;
            font-style: italic;
            letter-spacing: 0.02em;
            position: relative;
        }

        .percorso-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--pink-gradient);
            opacity: 0.8;
        }

        .percorso-cards-row {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            flex-wrap: wrap;
        }

        .percorso-card {
            background: linear-gradient(180deg, #F4E6E4 0%, #F4E6E4 100%);
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(26, 64, 49, 0.03), 0 16px 32px rgba(26, 64, 49, 0.05);
            overflow: hidden;
            width: 100%;
            max-width: 520px;
            display: flex;
            flex-direction: row;
            min-height: 320px;
            border: 1.5px solid var(--pink-border);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            backdrop-filter: blur(5px);
            will-change: transform, box-shadow;
        }

        .percorso-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 24px rgba(26, 64, 49, 0.06), 0 32px 64px rgba(26, 64, 49, 0.12), 0 0 24px var(--pink-glow);
            border-color: #D49A97;
        }

        .card-image {
            width: 50%;
            height: auto;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            transition: transform 0.6s ease, filter 0.6s ease;
            filter: brightness(0.98);
            will-change: transform, filter;
        }

        .percorso-card:hover .card-image {
            transform: scale(1.05);
            filter: brightness(1.05);
        }

        .card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
        }

        .card-content {
            width: 50%;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            gap: 15px;
        }

        .card-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            color: var(--primary-green);
            line-height: 1.2;
            margin: 0;
        }

        .card-content p {
            font-family: var(--font-main);
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .btn-outline-gold {
            display: inline-block;
            border: 1.5px solid var(--pink-border);
            color: var(--primary-green);
            background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
            padding: 12px 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            align-self: flex-start;
            box-shadow: 0 7px 16px rgba(26, 64, 49, 0.12);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
            margin-top: auto;
        }

        .btn-outline-gold:hover {
            background: var(--btn-gradient);
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 13px 24px rgba(20, 50, 40, 0.22);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .percorso-cards-row {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            .percorso-card {
                max-width: 600px;
                flex-direction: column;
            }
            .card-image {
                width: 100%;
                height: 250px;
            }
            .card-content {
                width: 100%;
            }
        }
        .btn-outline-gold:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-outline-gold:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(83, 145, 126, 0.24);
        }

        /* slide-nav start */
        .slide-nav {
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-top: 1px solid #f0f0f0;
            gap: 60px;
            /* More distance */
        }

        .slide-arrow-btn {
            background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
            border: 1px solid rgba(83, 145, 126, 0.28);
            color: var(--primary-green);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
            opacity: 0.8;
            padding: 0;
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.11);
        }

        .slide-arrow-btn:hover {
            opacity: 1;
            transform: scale(1.08);
            background: var(--btn-gradient);
            color: #fff;
            box-shadow: 0 12px 22px rgba(20, 50, 40, 0.22);
        }

        .slide-arrow-btn:active {
            transform: scale(0.95);
        }

        .slide-arrow-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(83, 145, 126, 0.25);
        }

        .arrow-svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        .back-selection-btn {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(83, 145, 126, 0.08);
            border: 1px solid rgba(83, 145, 126, 0.2);
            border-radius: 12px;
            color: var(--primary-green);
            cursor: pointer;
            z-index: 20;
            display: none;
            padding: 10px;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .back-selection-btn:hover {
            transform: translateX(-3px);
            background: rgba(83, 145, 126, 0.16);
            border-color: rgba(83, 145, 126, 0.36);
        }

        .back-selection-btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 145, 126, 0.24);
        }

        .back-arrow-svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .slide-wrapper {
                flex-direction: column-reverse;
            }

            .slide-text-col {
                width: 100%;
                height: 50%;
                padding: 30px 20px;
                position: relative;
            }

            .slide-image-col {
                width: 100%;
                height: 50%;
            }

            /* Adjust arrows for mobile */
            .slide-arrow-btn.prev {
                left: 10px;
                top: 50%;
            }

            .slide-arrow-btn.next {
                right: 10px;
                top: 50%;
            }

            .selection-buttons {
                flex-direction: column;
            }
        }

        /* FOOTER STYLES */
        .site-footer {
            background-color: #1a4d2e;
            /* Darker shade of primary green for contrast */
            color: #f0f0f0;
            padding: 80px 0 40px;
            font-family: 'Inter', sans-serif;
            margin-top: 80px;
            border-top: 3px solid var(--pink-border);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
        }

        .footer-col h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--secondary-green);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--secondary-green);
            padding-left: 5px;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--secondary-green);
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-links a:hover {
                padding-left: 0;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 50px 16px 24px !important;
            }

            .site-footer .footer-container {
                grid-template-columns: max-content minmax(0, 1fr) !important;
                gap: 18px 40px !important;
                margin-bottom: 22px !important;
                text-align: left !important;
            }

            .site-footer .footer-container > .footer-col {
                min-width: 0;
            }

            .site-footer .footer-container > .footer-col:first-child {
                display: contents;
            }

            .site-footer .footer-container > .footer-col:first-child h3 {
                grid-column: 1 / -1;
                grid-row: 1;
                margin: 0 !important;
                font-size: 1.45rem !important;
                line-height: 1.1;
                align-self: center;
                white-space: normal;
                overflow-wrap: anywhere;
                text-align: center;
            }

            .site-footer .footer-container > .footer-col:first-child .footer-text {
                grid-column: 1 / -1;
                grid-row: 2;
                margin: 0 !important;
                font-size: 0.84rem !important;
                line-height: 1.35 !important;
                opacity: 0.9 !important;
                overflow-wrap: anywhere;
                text-align: justify;
                text-justify: inter-word;
            }

            .site-footer .footer-container > .footer-col:nth-child(2) {
                grid-column: 1;
                grid-row: 3;
                text-align: center;
            }

            .site-footer .footer-container > .footer-col:nth-child(3) {
                grid-column: 2;
                grid-row: 3;
                text-align: center;
                align-self: center;
            }

            .site-footer .footer-container > .footer-col:nth-child(3) h4 {
                text-align: center;
            }

            .site-footer .footer-container > .footer-col:nth-child(2) .footer-links {
                text-align: center;
            }

            .site-footer .footer-container > .footer-col:nth-child(4) {
                grid-column: 1 / -1;
                grid-row: 4;
                text-align: center;
            }

            .site-footer .footer-container > .footer-col:nth-child(4) button {
                display: inline-block;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .site-footer .footer-container > .footer-col:nth-child(4) button {
                margin-top: 12px !important;
                padding: 9px 15px !important;
                font-size: 0.78rem;
            }

            .site-footer .footer-container .footer-col h4 {
                margin-bottom: 10px !important;
                font-size: 0.9rem !important;
            }

            .site-footer .footer-container .footer-links li {
                margin-bottom: 8px !important;
                font-size: 0.78rem;
                line-height: 1.3;
            }

            .site-footer .footer-container .footer-links a {
                font-size: 0.78rem !important;
            }

            .site-footer .footer-container > .footer-col:first-child .social-links {
                grid-column: 1 / -1;
                grid-row: 5;
                justify-content: center !important;
                margin-top: 8px !important;
                gap: 18px !important;
            }

            .site-footer .footer-container > .footer-col:first-child .social-links a {
                width: 54px;
                height: 54px;
                border-radius: 999px;
                border: 1px solid rgba(255, 255, 255, 0.28);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.08);
            }

            .site-footer .footer-container > .footer-col:first-child .social-links svg {
                width: 26px !important;
                height: 26px !important;
            }

            .site-footer .footer-bottom {
                margin-top: 16px !important;
                padding-top: 16px !important;
                display: flex !important;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: baseline;
                text-align: left !important;
            }

            .site-footer .footer-bottom > div:first-child {
                display: inline !important;
            }

            .site-footer .footer-bottom-links a {
                margin-left: 0 !important;
                margin-right: 10px;
            }

            .site-footer .footer-bottom-links {
                display: inline !important;
                gap: 0;
                margin-left: 10px;
                vertical-align: baseline;
                white-space: nowrap;
            }
        }

            /* Player Styles */
            .player-wrapper {
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
                background: black;
                position: relative;
            }

            .custom-video {
                display: block;
                width: 100%;
            }

            .player-controls {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                padding: 20px;
                color: white;
                opacity: 0;
                transition: opacity 0.3s;
            }

            .player-wrapper:hover .player-controls {
                opacity: 1;
            }

            .progress-bar-container {
                height: 6px;
                background: rgba(255, 255, 255, 0.3);
                cursor: pointer;
                border-radius: 3px;
                margin-bottom: 15px;
            }

            .progress-bar {
                height: 100%;
                width: 0%;
                background: var(--secondary-green);
                border-radius: 3px;
                transition: width 0.1s;
            }

            .controls-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .player-btn {
                background: rgba(255, 255, 255, 0.14);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 999px;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
                transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
                width: 42px;
                height: 42px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .player-btn:hover {
                background: rgba(255, 255, 255, 0.24);
                transform: translateY(-1px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
            }

            .player-btn:active {
                transform: scale(0.96);
            }

            .player-btn:focus-visible {
                outline: none;
                box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
            }

            .time-display {
                font-size: 0.9rem;
                font-family: monospace;
            }

            .volume-control {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            #volSlider {
                width: 80px;
                accent-color: var(--secondary-green);
                cursor: pointer;
            }

            /* Audio Specific */
            .player-controls.audio-mode .player-btn {
                color: var(--primary-green);
                background: rgba(26, 64, 49, 0.08);
                border-color: rgba(26, 64, 49, 0.15);
            }

            .player-controls.audio-mode .player-btn:hover {
                background: rgba(26, 64, 49, 0.15);
            }

            .bar {
                width: 8px;
                background: var(--secondary-green);
                border-radius: 4px;
                animation: bounce 1s infinite alternate;
            }

            @keyframes bounce {
                0% {
                    transform: scaleY(0.3);
                }

                100% {
                    transform: scaleY(1);
                }
            }

            /* Catalog Styles */
            .catalog-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 30px;
            }

            .media-item {
                cursor: pointer;
                transition: transform 0.2s;
            }

            .media-item:hover {
                transform: translateY(-5px);
            }

            .media-thumb {
                height: 180px;
                background: #ddd;
                border-radius: 12px;
                margin-bottom: 12px;
                position: relative;
                overflow: hidden;
                background-size: cover;
                background-position: center;
            }

            .media-badget {
                position: absolute;
                top: 10px;
                right: 10px;
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.8rem;
            }

            .media-title {
                font-weight: bold;
                color: var(--primary-green);
                margin-bottom: 5px;
                line-height: 1.3;
            }

            .media-meta {
                font-size: 0.85rem;
                color: #888;
            }

            .playing-indicator {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.5);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2rem;
                color: var(--primary-green);
                display: none;
            }

            .media-item.active-playing .playing-indicator {
                display: flex;
            }

                        @media (max-width: 900px) {
                            .contacts-layout {
                                grid-template-columns: 1fr !important;
                                gap: 40px !important;
                            }

                            .contacts-header {
                                text-align: center !important;
                            }

                            .digital-contacts-row {
                                justify-content: center;
                            }
                        }

                        @media (max-width: 768px) {
                            .digital-contacts-container {
                                display: grid !important;
                                grid-template-columns: repeat(2, minmax(0, 1fr));
                                gap: 12px !important;
                                margin-bottom: 32px !important;
                                width: 100%;
                            }

                            .digital-contacts-row {
                                display: contents !important;
                            }

                            .digital-contacts-row > a {
                                display: flex !important;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;
                                text-align: center;
                                gap: 8px !important;
                                padding: 12px 10px;
                                min-height: 112px;
                                min-width: auto !important;
                                width: 100%;
                                border: 1px solid rgba(26, 64, 49, 0.12);
                                border-radius: 14px;
                                background: #fff;
                            }

                            .digital-contacts-row > a > span {
                                font-size: 0.9rem;
                                line-height: 1.25;
                            }
                        }

        @media (prefers-reduced-motion: reduce) {
            .btn-cta,
            .btn-select,
            .btn-outline-gold,
            .nav-btn,
            .slider-arrow,
            .slide-arrow-btn,
            .player-btn,
            .faq-question,
            .back-btn,
            .back-selection-btn,
            .close-tutorial {
                transition: none !important;
                transform: none !important;
            }

            .btn-cta::before {
                display: none;
            }

            .hero-img,
            .hero-img::before,
            .hero-img img {
                animation: none !important;
            }
        }

/* --- NUOVA SEZIONE PERCORSI --- */
.percorso-detail-section {
    padding: 80px 5%;
    background-color: var(--soft-pink);
    border-bottom: 1.5px solid var(--pink-border);
}

.percorso-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.percorso-detail-section.reversed .percorso-hero {
    flex-direction: row-reverse;
}

.percorso-text {
    flex: 1;
    max-width: 550px;
}

.percorso-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.percorso-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.percorso-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.percorso-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.percorso-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 15px;
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--secondary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.percorso-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.percorso-image img {
    max-width: 480px;
    max-height: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 30px 60px -15px rgba(26, 64, 49, 0.2), 0 0 0 2px var(--pink-border);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease, box-shadow 0.4s ease;
    background: var(--pink-gradient);
}

.percorso-detail-section.reversed .percorso-image img {
    transform: perspective(1000px) rotateY(5deg);
}

.percorso-image:hover img,
.percorso-detail-section.reversed .percorso-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(26, 64, 49, 0.2), 0 0 0 2px #D49A97, 0 0 24px var(--pink-glow);
}

.percorso-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1.5px solid var(--pink-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08), 0 0 20px var(--pink-glow);
    border-color: #D49A97;
}

.card-header {
    margin-bottom: 25px;
    text-align: center;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-green);
    margin-bottom: 15px;
}

.card-header h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.card-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.service-checklist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.check-icon-small {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.check-icon-small circle {
    opacity: 0.3;
}

.pricing-table {
    background: var(--soft-pink);
    border-radius: 16px;
    padding: 20px;
    margin-top: auto;
    border: 1.5px solid var(--pink-border);
}

.pricing-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--pink-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
}

.pricing-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-row span:last-child {
    background: rgba(83, 145, 126, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    color: var(--secondary-green);
}

/* FAQ SECTION */
.percorso-faq {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1.5px solid var(--pink-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.03), 0 0 16px var(--pink-glow);
    border-color: #D49A97;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-green);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.faq-question:hover svg {
    color: var(--white);
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .percorso-hero, 
    .percorso-detail-section.reversed .percorso-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .percorso-image img {
        transform: rotateY(0deg) !important;
    }

    .percorso-features li {
        justify-content: center;
    }

    .percorso-cards {
        grid-template-columns: 1fr;
    }
}
