@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&display=swap');

:root {
    --bg-color: #FCF5ED;
    --text-main: #303030;
    --text-muted: #5E5E5E;
    --accent-pink: #E5A8CD;
    --accent-pink-light: #F9E4F1;
    --accent-blue: #D7E8F9;
    --accent-lavender: #E6D5F7;
    --accent-lavander-light: #F4EBFC;
    
    /* Maintain compatibility with existing classes */
    --accent-coral: #E5A8CD;
    --accent-purple: #E5A8CD;
    --accent-purple-light: #F9E4F1;
    --card-bg: #FFFFFF;
    --border-soft: rgba(48, 48, 48, 0.1);
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Manrope', sans-serif;
    
    --gt-purple: #E5A8CD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.font-sans-bold {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.03em;
}

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

/* Layout & Utils */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.pt-header { padding-top: 2rem; }

/* Header Sticky */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-color); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    transition: all 0.3s ease;
}

.logo img { height: 36px; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* CTA Newsletter nell'header */
.nav-links a.nav-cta {
    background-color: var(--accent-purple);
    color: #fff;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.nav-links a.nav-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 168, 205, 0.4);
}

/* Buttons */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-coral { background-color: var(--accent-coral); color: #fff; }
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 90, 95, 0.3); }

.btn-dark { background-color: var(--text-main); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }

/* --- HOMEPAGE: INTRO HERO --- */
.intro-hero {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 4rem 0 6rem;
}

.ih-text { flex: 1.2; }
.ih-text h1 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--text-main); font-weight: 600; }
.ih-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 600px; }
.ih-text .highlight { color: var(--gt-purple); font-weight: 600; font-family: var(--font-heading); font-style: italic; font-size: 21px;}

.ih-image { flex: 0.8; position: relative; }
.ih-image img { width: 100%; border-radius: 30px; transform: rotate(4deg);}

/* --- HOMEPAGE: LA LISTA SECTION --- */
.hero-lista {
    background-color: #fff;
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    margin-bottom: 5rem;
}

.hl-content h2 { font-size: 3rem; margin-bottom: 1rem; }
.hl-content p.subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.hl-features { list-style: none; margin-bottom: 3rem; }
.hl-features li { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; margin-bottom: 1rem; font-weight: 600; color: var(--text-main); }
.hl-image { border-radius: 20px; overflow: hidden; height: 500px; }
.hl-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.badge-new {
    display: inline-block;
    background-color: var(--accent-purple-light);
    color: var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* --- SECONDARY PRODUCTS --- */
.secondary-products { margin-bottom: 6rem; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; }
.section-title span { font-family: var(--font-body); font-weight: 300; font-style: italic; color: var(--text-muted); font-size: 2rem; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.product-card { position: relative; border-radius: 24px; overflow: hidden; height: 450px; display: block; transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.03); }
.card-label { position: absolute; bottom: 20px; left: 20px; background: #fff; padding: 1.5rem; border-radius: 16px; width: calc(100% - 40px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.card-label h3 { font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 700; }
.card-label p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.lp-previews {
    margin-top: 5rem;
}

.lp-previews h3 {
    font-size: 2rem; 
}

.previews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.previews-grid img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.previews-grid img:hover {
    transform: translateY(-5px);
}

/* --- Utilities per pulizia stili inline --- */
.subtitle-fw {
    font-style: italic;
    font-weight: 400;
    color: var(--gt-purple);
}

.copy-footer {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- NEWSLETTER --- */
.newsletter-banner { background-color: #fff; border-radius: 30px; padding: 5rem 4rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; }
.nl-text { max-width: 500px; }
.nl-text h2 { font-size: 3rem; color: var(--accent-purple); margin-bottom: 1rem; }
.nl-text p { font-size: 1.15rem; color: var(--text-main); margin-bottom: 2rem; }
.social-proof { display: flex; align-items: center; gap: 1rem; background: var(--accent-purple-light); padding: 1rem 1.5rem; border-radius: 100px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -15px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.sp-text { font-weight: 700; font-size: 0.95rem; color: var(--text-muted); }

/* --- LANDING PAGE LISTA V3 MODIFIED --- */
.lp-bg-section {
    background-color: var(--accent-lavander-light);
    border-radius: 40px;
    padding: 5rem;
    margin: 3rem 0 6rem;
}

/* --- LANDING PAGE VIDEOCORSO --- */
.course-hero {
    text-align: center;
    padding: 6rem 0 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.course-hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.course-hero .lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Play Button Area */
.play-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 4rem;
    cursor: pointer;
}

.play-wrapper img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 800px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
    pointer-events: none; /* Lascia passare il click al wrapper */
}

.play-btn svg {
    width: 35px;
    height: 35px;
    fill: #fff;
    margin-left: 5px; /* Centra otticamente il triangolo */
}

.play-wrapper:hover img {
    transform: scale(1.02);
}

.play-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--text-main);
}

/* Course Details Box */
.course-details {
    background-color: #fff;
    border-radius: 40px;
    padding: 5rem 4rem;
    margin-bottom: 6rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--border-soft);
}

.course-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-soft);
}

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

.feature-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-stat .label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Flex layout per il contenuto */
.course-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.course-target h3, .course-chapters h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.course-target ul {
    list-style: none;
}

.course-target li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.course-target li svg {
    flex-shrink: 0;
    margin-top: 5px;
    stroke: var(--accent-coral);
}

/* Lista Capitoli (Checkpoint) */
.chapter-list {
    list-style: none;
}

.chapter-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.chapter-list li:last-child {
    border-bottom: none;
}

.chapter-time {
    color: var(--text-muted);
    font-family: monospace;
    font-size: 1rem;
}

/* Lightbox Video */
.trailer-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trailer-lightbox.active {
    display: flex;
    opacity: 1;
}

.video-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.video-container video {
    width: 100%;
    border-radius: 12px;
    outline: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Course */
.guide-hero {
    text-align: center;
    padding: 4rem 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guide-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.guide-hero .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.guide-tag {
    background-color: #fff;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.guide-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.guide-card-large {
    background-color: #fff;
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

/* Colori specifici per destinazione (come nella v1, ma stile v3) */
.guide-card-large.brasile {
    background-color: var(--accent-blue);
}

.guide-card-large.marrakech {
    background-color: var(--accent-lavender);
}

.guide-card-large.parigi {
    background-color: var(--accent-pink-light);
}

.gc-image {
    position: relative;
    text-align: center;
}

.gc-image img {
    width: 80%;
    max-width: 350px;
    border-radius: 20px;
    transform: rotate(-3deg);
}

.brasile .gc-image img {
    transform: rotate(3deg);
}

.gc-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.gc-content .duration {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.guide-card-large.brasile .duration { color: var(--text-main); }
.guide-card-large.marrakech .duration { color: var(--text-main); }

.gc-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.gc-price-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.gc-price-box .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.gc-price-box .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    font-weight: 400;
}

.gc-preview-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gc-preview-link:hover {
    color: var(--text-main);
}

/* Responsive updates per le guide */

.lp-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 5rem; align-items: center; }

.lp-image-wrap { position: relative; }
.lp-image { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: rotate(2deg); }

.lp-content h1 { font-size: 3.8rem; line-height: 1.05; margin-bottom: 1.5rem; }
.lp-content .highlight { color: var(--gt-purple); font-style: italic; }
.lp-content .lead { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

.lp-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-purple);
    margin-bottom: 1.5rem;
}

.lp-action-box { background: #fff; padding: 2.5rem; border-radius: 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); margin-top: 3rem; }
.lp-action-box h3 { font-size: 1.6rem; margin-bottom: 0.5rem; font-weight: 800; }
.lp-action-box .price { font-size: 3rem; color: var(--accent-coral); font-family: var(--font-heading); font-weight: 600; margin-bottom: 1.5rem; display: inline-block; }
.lp-action-box .small-note { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; }
.lp-action-box .btn-full { width: 100%; }

.lp-features-list { list-style: none; margin: 2rem 0; }
.lp-features-list li { display: flex; gap: 1rem; margin-bottom: 1.2rem; font-size: 1.1rem; align-items: flex-start; }
.lp-features-list svg { flex-shrink: 0; margin-top: 3px; }

.faq-wrap { margin-top: 5rem; border-top: 1px solid var(--border-soft); padding-top: 4rem; }
.faq-wrap h3 { font-size: 2rem; margin-bottom: 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.faq-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.95rem; color: var(--text-muted); }

/* Footer */
footer { padding: 4rem 0; text-align: center; border-top: 1px solid var(--border-soft); margin-top: 2rem; }
.footer-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-nav a { font-weight: 600; color: var(--text-muted); }
.footer-nav a:hover { color: var(--text-main); }

/* --- CONTACT FORM & TEXT PAGES --- */
.contact-container {
    max-width: 800px;
    margin: 4rem auto 8rem;
    background: #fff;
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--border-soft);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.msg-status {
    padding: 25px;
    border-radius: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background-color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px var(--accent-purple-light);
}

.msg-success { background: var(--accent-blue); color: var(--text-main); }
.msg-error { background: var(--accent-pink-light); color: var(--text-main); }

/* --- Box Informazioni / Warning --- */
.warning-box {
    background-color: var(--accent-pink-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}
.warning-box h2 {
    color: #D0342C;
    margin-top: 0 !important;
}

/* --- Utilities --- */
.text-center { text-align: center; }

/* Text Pages (Privacy/Cookie) */
.text-page-content {
    margin: 4rem auto 8rem;
    line-height: 1.8;
}

.text-page-content h1 { margin-bottom: 3rem; text-align: center; font-size: 3rem; }
.text-page-content h2 { font-size: 1.8rem; margin: 3rem 0 1.5rem; color: var(--text-main); }
.text-page-content p { margin-bottom: 1.5rem; }
.text-page-content ul { margin-bottom: 2rem; padding-left: 1.5rem; }

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid var(--border-soft);
}

.privacy-table th, .privacy-table td {
    border: 1px solid var(--border-soft);
    padding: 12px;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
}

.privacy-table th:first-child, .privacy-table td:first-child {
    width: 30%;
}

.privacy-table th {
    background-color: var(--accent-pink-light);
    font-weight: 700;
}

/* --- LINK IN BIO (Instagram) --- */
.linkinbio-container { max-width: 600px; margin: 2rem auto; padding: 0 1rem; text-align: center; }
.linkinbio-profile-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 4px solid var(--accent-pink-light); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.linkinbio-title { font-size: 2rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.linkinbio-subtitle { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem; }
.link-tree-btn {
    display: block;
    width: 100%;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--text-main);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.link-tree-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: #fff;
}
.link-tree-btn.highlight {
    background-color: var(--accent-pink-light);
    color: var(--text-main);
}
.link-tree-btn.highlight:hover {
    background-color: var(--accent-pink);
    color: var(--text-main);
}

@media (max-width: 800px) {
    .contact-container { padding: 3rem 1.5rem; border-radius: 24px; }
    .contact-header h1 { font-size: 2.8rem !important; }
}

@media (max-width: 800px) {
    /* Layout Base */
    body { padding-top: 70px; } /* Spazio per l'header fixed */
    .container { padding: 0 1.5rem; }
    .pt-header { padding-top: 1rem; }
    
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    
    /* Header & Nav FIXED Mobile */
    .site-header { 
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%;
        background-color: var(--bg-color); 
        padding: 1rem 1.5rem; 
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    
    .logo img {
        height: 28px;
    }

    .menu-toggle { display: block; }
    
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column; 
        gap: 1.5rem; 
        padding: 2rem 1.5rem; 
        background: var(--bg-color); 
        border-top: 1px solid var(--border-soft); 
        text-align: center; 
        animation: fadeInDown 0.3s ease; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.is-open { display: flex; }
    
    /* Anteprime Mobile - Controllo dimensione immagini */
    .lp-previews { margin-top: 3rem; padding: 2rem 1rem; border-radius: 20px; }
    .lp-previews h3 { font-size: 1.6rem; margin-bottom: 2rem; }
    .previews-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        max-width: 500px; /* Evita che diventino enormi su tablet */
        margin: 0 auto;
    }
    .previews-grid img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 15px;
    }
    
    /* Guide Viaggio Mobile */
    .guide-hero { padding: 2rem 0 1rem; }
    .guide-hero h1 { font-size: 2.8rem !important; }
    .guide-card-large { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; text-align: center; gap: 2.5rem; border-radius: 20px; }
    .gc-image img { width: 70%; transform: rotate(0); }
    .gc-price-box { flex-direction: column; gap: 1.5rem; align-items: center; }

    /* Videocorso Mobile */
    .course-hero { padding: 3rem 0 2rem; }
    .course-hero h1 { font-size: 2.8rem !important; }
    .play-btn { width: 70px; height: 70px; }
    .play-btn svg { width: 25px; height: 25px; }
    .course-details { padding: 2.5rem 1.5rem; border-radius: 20px; }
    .course-features { flex-direction: column; gap: 2rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
    .course-content-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .nav-btn { width: 100%; text-align: center; margin-top: 0.5rem; }

    .mobile-hide { display: none; }

    /* Intro Hero */
    .intro-hero { flex-direction: column; text-align: center; gap: 2.5rem; padding: 2rem 0 4rem; }
    .ih-image { width: 85%; margin: 0 auto; }
    
    /* Hero Lista (Core Business) */
    .hero-lista { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; text-align: center; gap: 2.5rem; border-radius: 20px; }
    .hl-features li { justify-content: center; text-align: left; }
    .hl-image { height: 350px; }
    
    /* Secondary Products (Cards Grid) */
    .section-title { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card { height: 400px; }
    
    /* Newsletter */
    .newsletter-banner { flex-direction: column; text-align: center; padding: 3rem 1.5rem; gap: 2rem; border-radius: 20px; }
    .nl-text h2 { font-size: 2.2rem; }
    .social-proof { width: 100%; justify-content: center; flex-direction: column; border-radius: 15px; }

    /* Landing Page Lista */
    .lp-bg-section { padding: 2.5rem 1.5rem; margin: 2rem 0 4rem; border-radius: 20px; }
    .lp-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .lp-image-wrap { margin-bottom: 1rem; text-align: center; }
    .lp-image { transform: rotate(0); width: 90%; margin: 0 auto; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    
    .lp-content h1 { font-size: 2.8rem; text-align: center; }
    .lp-content .lead { text-align: center; }
    .lp-type-tag { display: flex; width: fit-content; margin: 0 auto 1.5rem; }
    
    .lp-content ul li { font-size: 1rem; align-items: flex-start; }
    
    .lp-action-box { padding: 2rem 1.5rem; text-align: center; }
    .lp-action-box h3 { font-size: 1.4rem; }
    .lp-action-box .price { font-size: 2.5rem; }
    
    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Footer */
    .footer-nav { flex-direction: column; gap: 1.5rem; }
}