/* --- START OF FILE style.css --- */

:root {
    /* PALETTE COLORI REVISIONATA E OTTIMIZZATA PER LEGGIBILITÀ */
    --primary-color: #2C3E50;       /* Blu Ardesia Profondo (per sfondi scuri, footer) */
    --secondary-color: #ECF0F1;     /* Grigio-Azzurro Molto Chiaro (per sfondi chiari) */
    --accent-color: #E67E22;        /* Corallo/Arancione Vibrante (per CTA, highlights) */
    --accent-color-hover: #D35400;  /* Corallo più scuro per hover */
    
    /* Gerarchia Testo per Sfondi Chiari */
    --text-dark: #34495E;           /* Grigio scuro per testo principale */
    --text-medium-on-light: #7F8C8D; /* Grigio medio per sottotitoli */

    /* Gerarchia Testo per Sfondi Scuri */
    --text-light: #FDFEFE;          /* Bianco sporco per testo principale */
    --text-medium-on-dark: #BDC3C7; /* Grigio-azzurro per sottotitoli */
    
    /* Colori di Supporto */
    --card-bg-dark: rgba(52, 73, 94, 0.85); /* Sfondo card su sezioni scure */
    --card-bg-dark-solid: #34495E;      /* Sfondo card solido per fallback */
    --card-bg-light: #FFFFFF;           /* Sfondo card su sezioni chiare */
    --card-border-dark: rgba(230, 126, 34, 0.2); /* Bordo card su sezioni scure */
    --card-border-light: #DEE2E6;          /* Bordo card su sezioni chiare */
    --glow-color: rgba(230, 126, 34, 0.5);  
    --success-color: #27AE60;       
    --danger-color: #C0392B;        
    
    /* Stili Invariati */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Inter', sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --shadow-soft: 0 8px 24px rgba(44, 62, 80, 0.1);
    --shadow-medium: 0 12px 36px rgba(44, 62, 80, 0.15);
    --shadow-intense-glow: 0 0 15px var(--glow-color), 0 0 30px var(--glow-color);
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-primary);
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper { width: 100%; overflow-x: hidden; position: relative; }
.container { width: 90%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 70px 0; } }

/* --- STILI PER I LOGHI DI PAGAMENTO SOTTO LA HERO CTA --- */

.payment-methods-hero {
    margin-top: 20px; /* Spazio tra il pulsante CTA e i loghi */
    text-align: center;
    opacity: 0.7; /* Leggermente sbiaditi di default per non rubare la scena al CTA */
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.payment-methods-hero:hover {
    opacity: 1; /* Piena opacità al passaggio del mouse */
    transform: scale(1.05); /* Un leggero ingrandimento per feedback interattivo */
}

.payment-logos {
    max-width: 150px; /* Dimensioni contenute e adatte al mobile */
    height: auto;
    display: inline-block; /* Per centrare correttamente l'immagine */
}

/* Adattamenti per schermi più piccoli se necessario */
@media (max-width: 768px) {
    .payment-logos {
        max-width: 130px; /* Leggermente più piccoli su mobile */
    }
}

/* --- STILI PER LE IMMAGINI NELLA SEZIONE AUTORE/STORIA --- */

.story-image-wrapper {
    margin: 2.5em 0;
    text-align: center;
}

.story-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

/* GESTIONE SEZIONI SCURE */
.dark-bg { background-color: var(--primary-color); }

#page-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--primary-color); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease 0.3s, visibility 0s linear 0.8s;
}
.loaded #page-loader { opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0s linear 0.5s; }
.loader-inner {
    width: 60px; height: 60px; border: 5px solid rgba(230, 126, 34, 0.3);
    border-top-color: var(--accent-color); border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- STILI PER L'AUTORE WIDGET SOTTO LA HERO CTA --- */

.author-widget-hero {
    gap: 12px; /* Leggermente meno spazio tra avatar e testo */
    cursor: default; /* Non deve sembrare cliccabile */
}

.author-avatar-wrapper {
    flex-shrink: 0; /* Evita che l'immagine si rimpicciolisca */
}

.author-avatar-img {
    width: 75px; /* Leggermente più grande degli avatar impilati */
    height: 75px;
    border-radius: 50%;
    border: 3px solid var(--accent-color); /* Bordo con colore d'accento per risaltare */
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    object-fit: cover;
}

.author-info-wrapper {
    text-align: center;
    line-height: 1.4;
}

.author-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.author-name-hero {
    font-family: var(--font-headings); /* Usa il font dei titoli per il nome */
    font-weight: 700;
    font-size: 20px;
    color: var(--text-light); /* Testo chiaro e ben visibile */
    margin: 0;
    padding: 0;
    /* Codice fondamentale per l'allineamento */
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Spazio tra il nome e l'icona */
}

.author-verified-badge {
    color: #3498DB; /* Colore blu "verificato" */
    font-size: 0.9em; /* Dimensione icona leggermente più piccola del testo */
    line-height: 1; /* Allineamento verticale preciso */
    transition: transform 0.3s ease;
}

.author-name-hero:hover .author-verified-badge {
    transform: scale(1.2); /* Effetto al passaggio del mouse */
}

.author-title-hero {
    font-size: 14px;
    color: rgba(236, 240, 241, 0.8); /* Leggermente meno brillante del nome */
    margin: 0;
    padding: 0;
}


/* GERARCHIA TIPOGRAFICA */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 { color: var(--text-light); }

.section-title { font-size: clamp(2.5rem, 5vw, 3.8rem); text-align: center; margin-bottom: 20px; position: relative; }
.section-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.25rem); text-align: center;
    color: var(--text-medium-on-light);
    max-width: 700px; margin: 0 auto 60px auto; line-height: 1.8;
}
.dark-bg .section-subtitle { color: var(--text-medium-on-dark); }

.text-highlight { color: var(--accent-color); }
.text-highlight-alt { color: var(--accent-color); font-style: italic; }
.text-highlight-strong { color: var(--accent-color); font-weight: 700; text-shadow: 0 0 8px var(--glow-color); }
.text-highlight-stronger {
    background: linear-gradient(90deg, var(--accent-color), #D35400, #E67E22);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    padding: 0 5px; animation: textShine 4s linear infinite;
}
@keyframes textShine { to { background-position: 200% center; } }
.text-highlight-strong-alt {
    background: linear-gradient(90deg, var(--accent-color), #F39C12);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700;
}

/* HERO SECTION */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 5px; padding-bottom: 80px;
    background-color: var(--primary-color);
}
.hero-background-animation {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--primary-color) 30%, #34495E 70%, #2C3E50 100%);
    animation: animatedGradient 20s ease infinite alternate; z-index: 0;
}
@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-background-animation .floating-icon {
    position: absolute; color: rgba(230, 126, 34, 0.12);
    animation-name: floatIcons; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.floating-icon.icon-1 { font-size: 60px; top: 10%; left: 5%; animation-duration: 10s; }
.floating-icon.icon-2 { font-size: 45px; top: 65%; right: 10%; animation-duration: 8s; animation-delay: -2s; }
.floating-icon.icon-3 { font-size: 50px; top: 30%; right: 25%; animation-duration: 12s; animation-delay: -5s; }
.floating-icon.icon-4 { font-size: 55px; top: 80%; left: 15%; animation-duration: 9s; animation-delay: -3s; }
.floating-icon.icon-5 { font-size: 40px; top: 50%; left: 60%; animation-duration: 11s; animation-delay: -6s; }
.floating-icon.icon-6 { font-size: 65px; top: 15%; left: 75%; animation-duration: 7s; animation-delay: -1s; }
.floating-icon.icon-7 { font-size: 52px; top: 22%; left: 38%; animation-duration: 9.5s; animation-delay: -4.5s; }
.floating-icon.icon-8 { font-size: 48px; top: 72%; right: 30%; animation-duration: 10.5s; animation-delay: -2.5s; }

@keyframes floatIcons {
    0% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(15px) translateX(-15px) scale(0.95) rotate(5deg); opacity: 0.7; }
    100% { transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); opacity: 0.6; }
}
.hero-container { position: relative; z-index: 1; text-align: center; }
.hero-headline {
    font-size: 38px;
    color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.1; text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.hero-headline .headline-accent { display: block; font-size: 24px; color: var(--accent-color); letter-spacing: 2px; margin-bottom: 2.5rem; }
.hero-headline .headline-main-keyword {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-hover));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding: 0 5px;
}
.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--text-medium-on-dark);
    margin: 0 auto 1.5rem auto; max-width: 650px; line-height: 1.5;
}
.ebook-showcase-hero { margin-bottom: 2.5rem; position: relative; }
.ebook-cover-hero {
    max-width: 675px; height: auto; border-radius: var(--border-radius-md);
    filter: drop-shadow(0px 20px 25px rgba(0,0,0,0.4)) drop-shadow(0px 0px 15px var(--glow-color));
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
}
.ebook-cover-hero:hover {
    transform: scale(1.05) translateY(-10px) rotateZ(-2deg);
    filter: drop-shadow(0px 25px 30px rgba(0,0,0,0.5)) drop-shadow(0px 0px 22px var(--glow-color)) drop-shadow(0px 0px 10px var(--accent-color));
}

/* TIMER */
.timer-container {
    text-align: center; /* Centra tutto orizzontalmente */
}

.offer-text {
    display: block; /* Fa andare a capo dopo il testo */
    font-size: 1.4rem;
    color: #BDC3C7;
    font-weight: 700;
    margin-bottom: 10px; /* Spazio tra il testo e il timer */
    margin-top: 40px;
}

#timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ff3f3f; /* Colore rosso come specificato */
    font-weight: 700;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

#minutes, #seconds {
    font-size: 25px;
}

.label {
    font-size: 22px;
    color: #ff3f3f;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.separator {
    font-size: 24px;
    color: #ff3f3f;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

/* CTA BUTTONS */
.cta-button {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 40px; font-family: var(--font-headings); font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700; text-decoration: none; border-radius: 50px; position: relative;
    overflow: hidden; transition: all var(--transition-smooth); z-index: 1; border: 2px solid transparent;
}
.cta-button .cta-icon { margin-right: 12px; font-size: 1.2em; }
.cta-button .cta-text { position: relative; z-index: 2; }
.cta-button .cta-text s { opacity: 0.7; margin-left: 5px; }

.primary-cta {
    background-color: var(--accent-color); color: var(--text-light);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
    animation: pulse-cta 2s infinite ease-in-out;
}
.primary-cta:hover {
    background-color: var(--accent-color-hover);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.6); 
    transform: translateY(-5px) scale(1.03); 
}
@keyframes pulse-cta {
    0% { transform: scale(1); box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5); }
    100% { transform: scale(1); box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3); }
}
.cta-subtext-hero { font-size: 0.9rem; color: var(--text-medium-on-dark); margin-top: 1.5rem; }
.scroll-indicator-hero {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--accent-color); font-size: 1.8rem; opacity: 0.7; z-index: 2;
    transition: opacity var(--transition-fast);
}
.scroll-indicator-hero:hover { opacity: 1; }
.animated-arrow i { animation: bounceArrow 2s infinite; }
@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* PROBLEM SECTION */
.problem-section { background-color: var(--secondary-color); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.problem-card {
    background-color: var(--card-bg-light); padding: 35px 30px; border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border-light); box-shadow: var(--shadow-soft); text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.problem-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: var(--shadow-medium); border-color: var(--accent-color); }
.problem-icon-wrapper {
    width: 70px; height: 70px; margin: 0 auto 25px auto; border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-color-hover));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px var(--glow-color); transition: transform 0.3s ease;
}
.problem-card:hover .problem-icon-wrapper { transform: scale(1.1) rotate(5deg); }
.problem-icon-wrapper i { font-size: 2.2rem; color: var(--text-light); }
.problem-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--text-dark); }
.problem-card p { font-size: 1.2rem; color: var(--text-medium-on-light); line-height: 1.7; }
.problem-bridge { text-align: center; font-size: 1.2rem; margin-top: 60px; color: var(--text-medium-on-light); font-style: italic; }

/* SOLUTION SECTION */
.solution-layout { display: flex; align-items: center; gap: 50px; margin-top: 60px; }
.solution-image-wrapper { flex: 1; text-align: center; }
.solution-image {
    width: 100%; max-width: 550px; height: auto; border-radius: var(--border-radius-lg);
    filter: drop-shadow(0px 20px 25px rgba(0,0,0,0.4)) drop-shadow(0px 0px 15px var(--glow-color));
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
}
.solution-image-wrapper:hover .solution-image {
    transform: scale(1.04) rotate(1deg);
    filter: drop-shadow(0px 25px 30px rgba(0,0,0,0.5)) drop-shadow(0px 0px 22px var(--glow-color)) drop-shadow(0px 0px 10px var(--accent-color));
}
.solution-content { flex: 1.2; }
.solution-content-title { font-size: 1.8rem; margin-bottom: 25px; }
.benefits-list { list-style: none; padding-left: 0; margin-bottom: 40px; }
.benefits-list li {
    font-size: 1.2rem; margin-bottom: 20px; display: flex;
    align-items: flex-start; color: var(--text-medium-on-dark);
    transition: color 0.3s ease;
}
.benefits-list li:hover { color: var(--text-light); }
.benefits-list li:hover .benefit-icon { transform: scale(1.2); text-shadow: 0 0 10px var(--glow-color); }
.benefits-list .benefit-icon {
    color: var(--accent-color); font-size: 1.5em; margin-right: 15px;
    margin-top: 2px; min-width: 25px; text-shadow: 0 0 5px var(--glow-color);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.benefits-list li span strong { color: var(--text-light); font-weight: 600; }
.secondary-cta {
    background-color: transparent; color: var(--accent-color); border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
}
.secondary-cta:hover {
    background-color: var(--accent-color); color: var(--text-light);
    box-shadow: 0 0 25px var(--glow-color), 0 0 10px var(--accent-color);
    transform: translateY(-5px) scale(1.03);
}

/* TARGET AUDIENCE SECTION */
.target-audience-section { background-color: var(--primary-color); }
.target-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.target-audience-card {
    background-color: var(--card-bg-dark); padding: 35px 30px; border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border-dark); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.target-audience-card:hover {
    transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-medium), 0 0 20px var(--glow-color);
    border-color: rgba(230, 126, 34, 0.5);
}
.target-audience-card h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); margin-bottom: 25px; display: flex; align-items: center; }
.target-audience-card h3 i { margin-right: 15px; font-size: 1.3em; transition: transform 0.3s ease; }
.target-audience-card:hover h3 i { transform: scale(1.1); }
.target-audience-card h3 .fa-check-circle { color: var(--success-color); text-shadow: 0 0 8px rgba(39, 174, 96, 0.5); }
.target-audience-card h3 .fa-times-circle { color: var(--danger-color); text-shadow: 0 0 8px rgba(192, 57, 43, 0.5); }
.target-audience-card ul { list-style: none; padding-left: 0; color: var(--text-medium-on-dark); }
.target-audience-card ul li { display: flex; align-items: flex-start; margin-bottom: 18px; font-size: 1.2rem; line-height: 1.6; }
.target-audience-card ul li i { margin-right: 12px; font-size: 1.1em; margin-top: 4px; min-width: 20px; flex-shrink: 0; transition: transform 0.3s ease; }
.target-audience-card ul li:hover i { transform: translateX(3px) scale(1.1); }
.target-audience-card ul li > div { flex-grow: 1; }
.target-audience-card ul li .fa-check { color: var(--success-color); }
.target-audience-card ul li .fa-times { color: var(--danger-color); }
.target-audience-card ul li .fa-user-tie, .target-audience-card ul li .fa-user-graduate, .target-audience-card ul li .fa-users, .target-audience-card ul li .fa-hand-sparkles, .target-audience-card ul li .fa-search, .target-audience-card ul li .fa-magic, .target-audience-card ul li .fa-pills, .target-audience-card ul li .fa-ban, .target-audience-card ul li .fa-clock, .target-audience-card ul li .fa-brain, .target-audience-card ul li .fa-book, .target-audience-card ul li .fa-child, .target-audience-card ul li .fa-store, .target-audience-card ul li .fa-tools, .target-audience-card ul li .fa-heart-crack { color: var(--accent-color); }
@media (max-width: 768px) { .target-audience-grid { grid-template-columns: 1fr; } }

/* UNPACKED SECTION */
.unpacked-section { background-color: var(--primary-color); }
.unpacked-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; }
.unpacked-item {
    background-color: var(--card-bg-dark); padding: 30px; border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border-dark); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.unpacked-item:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-medium), 0 0 20px var(--glow-color); border-color: rgba(230, 126, 34, 0.4); }
.unpacked-item:hover .unpacked-image { transform: scale(1.03); }
.unpacked-image-wrapper { margin-bottom: 25px; text-align: center; }
.unpacked-image { width: 100%; max-width: 400px; height: auto; border-radius: var(--border-radius-md); filter: drop-shadow(0px 0px 9px var(--glow-color)); transition: transform var(--transition-smooth); }
.unpacked-item h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); margin-bottom: 20px; }
.unpacked-item > p.main-description { color: var(--text-medium-on-dark); line-height: 1.7; margin-bottom: 25px; font-size: 1.2rem;}
.unpacked-item ul { list-style: none; padding-left: 0; }
.unpacked-item ul li { margin-bottom: 20px; line-height: 1.6; }
.unpacked-item ul li:hover .item-header i { transform: rotate(-10deg) scale(1.15); }
.unpacked-item ul li .item-header { display: flex; align-items: center; margin-bottom: 8px; }
.unpacked-item ul li .item-header i { color: var(--accent-color); margin-right: 12px; font-size: 1.2em; min-width: 22px; transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.unpacked-item ul li .item-header strong { color: var(--text-light); font-weight: 600; font-size: 1.2rem; }
.unpacked-item ul li .item-description { padding-left: 34px; font-size: 1.2rem; color: var(--text-medium-on-dark); line-height: 1.7; }
.bonus-availability-note { font-size: 1.2rem; margin-top: 25px; font-style: italic; opacity: 0.9; color: #FDFEFE; }
.bonus-availability-note i { color: var(--accent-color); margin-right: 8px; }

/* DIFFERENTIATION SECTION */
.differentiation-section { background-color: var(--secondary-color); }
.differentiation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.differentiation-card {
    background-color: var(--card-bg-light); padding: 35px 30px; border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border-light); box-shadow: var(--shadow-soft); text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.differentiation-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: var(--shadow-medium); border-color: var(--accent-color); }
.differentiation-icon-wrapper {
    width: 70px; height: 70px; margin: 0 auto 25px auto; border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-color-hover));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px var(--glow-color); transition: transform 0.3s ease;
}
.differentiation-card:hover .differentiation-icon-wrapper { transform: scale(1.1) rotate(5deg); }
.differentiation-icon-wrapper i { font-size: 2.2rem; color: var(--text-light); }
.differentiation-card h3 { font-size: 1.6rem; margin-bottom: 15px; }
.differentiation-card p { font-size: 1.2rem; color: var(--text-medium-on-light); line-height: 1.7; }

/* TESTIMONIALS SECTION */
.testimonials-section { padding-bottom: 70px; background-color: var(--primary-color); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card-modern {
    background-color: var(--card-bg-dark); min-height: 220px; width: 100%; padding: 25px;
    border-radius: var(--border-radius-lg); border: 1px solid var(--card-border-dark);
    box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; flex-direction: column;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}
.testimonial-card-modern:hover {
    transform: translateY(-10px) scale(1.03); box-shadow: var(--shadow-medium), 0 0 25px var(--glow-color);
    border-color: var(--accent-color); z-index: 10;
}
.testimonial-header-modern { display: flex; align-items: center; margin-bottom: 15px; }
.testimonial-avatar-modern { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; margin-right: 15px; border: 2px solid var(--accent-color); box-shadow: 0 0 8px var(--glow-color); }
.testimonial-author-info-modern { font-family: var(--font-primary); }
.testimonial-author-modern { font-weight: 600; font-size: 1rem; color: var(--text-light); margin-bottom: 2px; }
.testimonial-rating-modern { color: #F1C40F; font-size: 0.85rem; }
.testimonial-rating-modern i { margin: 0 1px; }
.testimonial-text-modern { font-size: 20px; line-height: 1.6; color: var(--text-medium-on-dark); flex-grow: 1; margin-bottom: 8px; overflow-wrap: break-word; word-break: break-word; }
.read-more-testimonial { color: var(--accent-color); font-weight: 600; cursor: pointer; text-decoration: none; border-bottom: 1px dashed var(--accent-color); font-size: 0.85rem; display: inline; transition: color var(--transition-fast), border-color var(--transition-fast); }
.read-more-testimonial:hover { color: var(--accent-color-hover); border-bottom-color: var(--accent-color-hover); text-shadow: 0 0 5px var(--glow-color); }
@media (max-width: 992px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonial-grid { grid-template-columns: 1fr; } .testimonial-card-modern { padding: 20px; } .testimonial-avatar-modern { width: 45px; height: 45px; } .testimonial-author-modern { font-size: 1rem; } .testimonial-text-modern { font-size: 18px; } }

/* NUOVO: Stile per il blocco fisso in alto */
.author-bio-fixed {
    display: flex;
    align-items: center;
    gap: 30px; /* Spazio tra immagine e testo */
    margin-bottom: 50px; /* Spazio tra il blocco bio e la storia sotto */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.author-image-wrapper {
    flex-shrink: 0;
}

.author-image {
    width: 150px; /* Rimpicciolita leggermente per un look più da "profilo" */
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--accent-color);
    filter: drop-shadow(0px 12px 18px rgba(0,0,0,0.15)) drop-shadow(0px 0px 15px var(--glow-color));
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.author-image-wrapper:hover .author-image {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0px 12px 18px rgba(0,0,0,0.2)) drop-shadow(0px 0px 10px var(--accent-color)) drop-shadow(0px 0px 20px var(--glow-color));
}

.author-bio-content {
    color: var(--text-dark);
    text-align: left; /* Il testo della bio è allineato a sinistra */
}

.author-name {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.author-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* NUOVO: Stile per il blocco della storia personale */
.author-personal-story {
    max-width: 700px; /* Larghezza di lettura ottimale */
    margin: 0 auto; /* Centra il blocco di testo */
    text-align: left;
}

.author-story {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5em;
}

/* Stili per le immagini dentro la storia (invariati) */
.story-image-wrapper {
    margin: 2.5em 0;
    text-align: center;
}

.story-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

/* Responsive per la bio fissa */
@media (max-width: 768px) {
    .author-bio-fixed {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .author-bio-content {
        text-align: center;
    }
    .author-name {
        font-size: 1.8rem;
    }
}

/* FINAL OFFER SECTION */
.offer-section { background-color: var(--primary-color); text-align: center; }
.offer-bundle {
    display: flex; flex-direction: column; align-items: center; gap: 30px;
    background-color: var(--card-bg-dark); padding: 40px; border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border-dark); box-shadow: var(--shadow-medium); margin-bottom: 40px;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); text-align: left;
    max-width: 800px; margin-left: auto; margin-right: auto;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.offer-bundle:hover { transform: scale(1.01); box-shadow: var(--shadow-intense-glow); }
.offer-bundle:hover .offer-ebook-image { transform: rotate(-2deg) scale(1.03); }
.offer-ebook-image-container { width: 100%; text-align: center; margin-bottom: 20px; }
.offer-ebook-image {
    max-width: 675px; height: auto; border-radius: var(--border-radius-md);
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.3)) drop-shadow(0px 0px 10px var(--glow-color));
    transition: transform var(--transition-smooth); display: inline-block;
}
.offer-summary { width: 100%; }
.offer-summary h4 { font-size: clamp(1.5rem, 4vw, 1.8rem); margin-bottom: 25px; text-align: center; }
.offer-summary ul { list-style: none; padding-left: 0; margin-bottom: 30px; }
.offer-summary ul li { margin-bottom: 15px; color: var(--text-medium-on-dark); display: flex; align-items: flex-start; font-size: 1.05rem; }
.offer-summary ul li span.item-text { flex-grow: 1; }
.offer-summary ul li span.item-value { font-weight: 600; color: var(--text-light); margin-left: 15px; white-space: nowrap; }
.offer-summary ul li i.fas.fa-check-double, .offer-summary ul li i.fas.fa-gift { color: var(--accent-color); margin-right: 12px; font-size: 1.2em; margin-top: 3px; min-width: 22px; }
.bonus-tag { background-color: var(--accent-color); color: var(--text-light); padding: 3px 10px; border-radius: var(--border-radius-sm); font-size: 0.85em; font-weight: 700; margin-right: 10px; display: inline-block; line-height: 1.4; }
.offer-total-value-breakdown { border-top: 1px solid var(--card-border-dark); padding-top: 30px; margin-top: 30px; }
.offer-total-value-breakdown p { display: flex; justify-content: space-between; font-size: 20px; margin-bottom: 12px; }
.offer-total-value-breakdown p span:first-child { color: var(--text-medium-on-dark); }
.offer-total-value-breakdown p span:last-child { font-weight: 700; font-size: 25px; color: #ff3f3f; text-shadow: 0 0 10px rgb(0 0 0 / 50%); }
.offer-total-value-breakdown .final-price, .offer-total-value-breakdown .total-savings { font-size: 1.4rem; font-weight: 800; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--card-border-dark); }
.offer-total-value-breakdown .final-price span:last-child, .offer-total-value-breakdown .total-savings span:last-child { color: rgb(47 211 25); text-shadow: 0 0 10px rgb(0 0 0 / 50%); }
.final-offer-cta { padding: 22px 50px; font-size: 1.3rem; margin-top: 40px; margin-bottom: 20px; }
.secure-payment-info-final { color: var(--text-medium-on-dark); font-size: 0.95rem; }
.secure-payment-info-final i { color: var(--accent-color); margin-right: 5px; }
.secure-payment-info-final .separator { margin: 0 10px; opacity: 0.5; }
.offer-urgency-note { font-size: 0.95rem; color: var(--text-medium-on-dark); margin-top: 20px; opacity: 0.9; max-width: 650px; margin-left: auto; margin-right: auto; }
.offer-urgency-note i { color: var(--accent-color); margin-right: 8px; }
.guarantee-seal {
    max-width: 650px; margin: 50px auto 0; padding: 30px;
    background-color: rgba(230, 126, 34, 0.05); border: 1px solid var(--card-border-dark);
    border-radius: var(--border-radius-md); text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.guarantee-seal:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(230, 126, 34, 0.3); }
.guarantee-seal:hover .guarantee-icon { transform: translateY(-5px) rotateY(360deg); }
.guarantee-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 15px; text-shadow: 0 0 10px var(--glow-color); transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.guarantee-seal h4 { font-size: 1.4rem; color: var(--text-light); margin-bottom: 10px; }
.guarantee-seal p { color: var(--text-medium-on-dark); font-size: 1.2rem; line-height: 1.7; }

/* FAQ SECTION */
.faq-section { background-color: var(--secondary-color); }
.faq-grid { display: grid; gap: 20px; max-width: 800px; margin: 50px auto 0 auto; }
.faq-item-modern {
    background-color: var(--card-bg-light); border-radius: var(--border-radius-md);
    border: 1px solid var(--card-border-light); overflow: hidden;
    transition: box-shadow var(--transition-smooth);
}
.faq-item-modern:hover { box-shadow: 0 0 15px rgba(230, 126, 34, 0.2); }
.faq-question-modern {
    background: none; border: none; width: 100%; text-align: left; padding: 25px 30px;
    font-size: 1.2rem; font-weight: 600; font-family: var(--font-headings); color: var(--text-dark);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: background-color var(--transition-fast);
}
.faq-question-modern:hover { background-color: rgba(230, 126, 34, 0.08); }
.faq-question-modern:hover i { transform: scale(1.2); }
.faq-question-modern i { transition: transform var(--transition-smooth); font-size: 1.1rem; color: var(--accent-color); }
.faq-question-modern.active i.fa-plus:before { content: "\f068"; }
.faq-answer-modern {
    padding: 0 30px; max-height: 0; overflow: hidden;
    transition: max-height var(--transition-smooth) 0s, padding var(--transition-smooth) 0s;
    color: var(--text-medium-on-light); line-height: 1.7;
}
.faq-answer-modern p { padding-bottom: 25px; }

/* BEFORE-AFTER SECTION */
.before-after-section { background-color: var(--secondary-color); }
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; margin-top: 60px; align-items: start; }
.before-after-item { text-align: center; }
.before-after-item h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; }
.before-after-item h3 .highlight-before { color: var(--danger-color); text-shadow: 0 0 8px rgba(192, 57, 43, 0.5); }
.before-after-item h3 .highlight-after { color: var(--success-color); text-shadow: 0 0 8px rgba(39, 174, 96, 0.5); }
.before-after-item p { color: var(--text-medium-on-light); max-width: 450px; margin: 0 auto 30px auto; min-height: 80px; font-size: 1.2rem;}
.before-after-image-wrapper { position: relative; }
.before-after-image {
    width: 100%; max-width: 450px; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
    border-radius: var(--border-radius-lg); filter: drop-shadow(0px 15px 20px rgba(44, 62, 80, 0.15));
    transition: transform var(--transition-smooth), filter var(--transition-smooth); loading: "lazy";
}
.before-after-image:hover { transform: scale(1.05) translateY(-10px) rotateZ(-3deg); filter: drop-shadow(0px 20px 25px rgba(44, 62, 80, 0.2)); }
.before-after-image.after:hover { transform: scale(1.05) translateY(-10px) rotateZ(3deg); }

/* SOCIAL PROOF WIDGET */
.social-proof-widget { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.stacked-avatars { display: flex; align-items: center; padding-left: 15px; }
.avatar-img, .avatar-more { width: 38px; height: 38px; border-radius: 50%; margin-left: -15px; border: 3px solid; box-shadow: 0 2px 5px rgba(0,0,0,0.4); transition: transform 0.3s ease; }
.stacked-avatars:hover .avatar-img, .stacked-avatars:hover .avatar-more { transform: translateY(-3px); }
.stacked-avatars .avatar-img:hover, .stacked-avatars .avatar-more:hover { transform: translateY(-6px) scale(1.1); }
.hero-container .avatar-img, .hero-container .avatar-more { border-color: var(--primary-color); }
.offer-section .avatar-img, .offer-section .avatar-more { border-color: var(--primary-color); }
.avatar-img { object-fit: cover; background-color: var(--text-medium-on-dark); }
.avatar-more { background-color: var(--accent-color); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-headings); font-weight: 700; font-size: 0.75rem; }
.rating-stars { color: #F1C40F; font-size: 1.1rem; display: flex; gap: 3px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.proof-text { font-size: 0.95rem; font-weight: 500; margin: 0; padding: 0; }
.hero-container .proof-text, .offer-section .proof-text { color: var(--text-medium-on-dark); }
.problem-section .proof-text { color: var(--text-medium-on-light); }

/* FOOTER */
.site-footer {
    background-color: var(--primary-color); color: var(--text-medium-on-dark);
    padding: 60px 0 30px 0; text-align: center; border-top: 1px solid var(--card-border-dark);
}
.footer-container { display: flex; flex-direction: column; align-items: center; }
.footer-logo p { font-family: var(--font-headings); font-size: 1.5rem; color: var(--text-light); margin-bottom: 20px; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-medium-on-dark); text-decoration: none; margin: 0 15px; transition: color var(--transition-fast), text-shadow var(--transition-fast); }
.footer-links a:hover { color: var(--accent-color); text-shadow: 0 0 8px var(--glow-color); }
.footer-social { margin-bottom: 30px; }
.footer-social a { color: var(--text-medium-on-dark); font-size: 1.3rem; margin: 0 12px; transition: color var(--transition-fast), transform var(--transition-fast), text-shadow var(--transition-fast); }
.footer-social a:hover { color: var(--accent-color); transform: scale(1.25) translateY(-3px); text-shadow: 0 0 8px var(--glow-color); }
.footer-copyright { font-size: 0.9rem; margin-bottom: 10px; }
.footer-disclaimer { font-size: 0.8rem; opacity: 0.7; }

/* RESPONSIVE & UTILITY */
@media (max-width: 992px) {
    .solution-layout, .author-container { flex-direction: column; text-align: center; }
    .solution-image-wrapper, .author-image-wrapper { margin-bottom: 40px; max-width: 450px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
    .hero-headline { font-size: 26px; }
    .hero-headline .headline-accent { font-size: 20px; }
    .hero-subheadline { font-size: 1.2rem; }
    .ebook-cover-hero { max-width: 280px; }
    .primary-cta, .secondary-cta { padding: 15px 30px; font-size: 1rem; }
    .final-offer-cta { padding: 18px 35px; font-size: 1.1rem; }
    .problem-grid, .differentiation-grid { grid-template-columns: 1fr; }
    .problem-card, .differentiation-card { padding: 25px 20px; }
    .problem-card h3, .differentiation-card h3 { font-size: 1.4rem; }
    .author-image { width: 180px; height: 180px; }
    .author-name { font-size: 1.8rem; }
    .faq-question-modern { padding: 20px; font-size: 1.1rem; }
    .faq-answer-modern { padding: 0 20px; }
    .faq-answer-modern p { padding-bottom: 20px; }
    .offer-bundle { padding: 30px 20px; }
    .offer-ebook-image { max-width: 260px; }
    .offer-summary h4 { font-size: 1.4rem; }
    .offer-total-value-breakdown p { font-size: 20px; flex-direction: column; align-items: center; text-align: center; margin-bottom: 15px; }
    .offer-total-value-breakdown p span:last-child { margin-top: 5px; }
    .offer-total-value-breakdown .final-price, .offer-total-value-breakdown .total-savings { font-size: 1.2rem; }
}
@media (max-width: 768px) {
    .offer-text {
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) { .before-after-item p { min-height: auto; } }
@supports not (backdrop-filter: blur(1px)) {
    .target-audience-card, .testimonial-card-modern, .offer-bundle, .unpacked-item { background-color: var(--card-bg-dark-solid); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .animated-arrow i, .primary-cta, .hero-background-animation, .hero-background-animation .floating-icon, .text-highlight-stronger { animation: none !important; }
    #page-loader { display: none; }
    #sticky-cta-mobile { animation: none !important; }
}

/* STICKY CTA MOBILE */
#sticky-cta-mobile {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    padding: 15px 20px; background-color: var(--accent-color); color: var(--text-light);
    font-family: var(--font-headings); font-size: 1rem; font-weight: 700;
    text-align: center; text-decoration: none; z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25), 0 0 10px var(--glow-color);
    border-top: 2px solid var(--accent-color-hover);
    align-items: center; justify-content: center;
    animation: pulse-cta-sticky 2.5s infinite ease-in-out;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
#sticky-cta-mobile .cta-icon { margin-right: 10px; font-size: 1.1em; }
#sticky-cta-mobile .cta-text s { opacity: 0.7; margin-left: 5px; }
#sticky-cta-mobile:hover { background-color: var(--accent-color-hover); transform: translateY(-3px); animation-play-state: paused; }
@keyframes pulse-cta-sticky {
    0% { transform: scale(1); box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25), 0 0 10px var(--glow-color); }
    50% { transform: scale(1.015); box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color); }
    100% { transform: scale(1); box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25), 0 0 10px var(--glow-color); }
}
@media (max-width: 768px) {
    body { padding-bottom: 70px; }
    #sticky-cta-mobile { display: flex; }
}

/* --- END OF FILE style.css --- */