/* ============================================
 * BEAUTY INFLUENCER PAGE - Stili specifici per beauty_influencer_farmasi.html
 * 
 * Questo file contiene le definizioni di layout specifiche
 * per la pagina beauty influencer, separate da main.css per evitare conflitti.
 * 
 * Le classi sono rinominate con prefisso "beauty-" per evitare conflitti.
 * ============================================ */

/* Background più scuro per migliorare la leggibilità */
body[data-page="beauty"] {
    background: #000000 !important;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('/portfolio_keli/src_img/IMAGES/logo_minisito.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

body[data-page="beauty"] .animated-bg {
    background: rgba(0, 0, 0, 0.3) !important;
}

/* Hero Section - Beauty Influencer */
.hero-beauty {
    width: 100%;
    padding: 7rem 0 4rem;
    position: relative;
    box-sizing: border-box;
}

.hero-beauty .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-sizing: border-box;
}

.hero-beauty .hero-content {
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-beauty .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-luxury);
}

.hero-beauty .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-beauty .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--metallic-gold);
    font-weight: 600;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-beauty .hero-description {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-beauty .hero-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.hero-beauty .hero-content,
.hero-beauty .hero-visual {
    flex: 1 1 320px;
    min-width: 0;
}

.hero-beauty .hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.4s both;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-beauty .hero-image-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    background: var(--gradient-golden-rose);
    width: 500px;
    height: 500px;
    margin: 0 auto;
    padding: 5px;
}

.hero-beauty .hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-beauty .hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

/* Hero overlay rimosso - non più utilizzato */

.hero-beauty .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.hero-beauty .stat-item {
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-beauty .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-beauty .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 0;
}

/* Animazioni per beauty influencer */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
 * Scroll Animations - Beauty Influencer
 * ============================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
 * Section Styling - Beauty Influencer
 * ============================================ */
.section {
    padding: 8rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 clamp(0.8rem, 2vw, 1rem);
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 414px) {
    .container {
        padding: 0 clamp(0.7rem, 1.8vw, 0.9rem);
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 clamp(0.6rem, 1.5vw, 0.8rem);
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.6rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: min(700px, 90vw);
    margin: 0 auto;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: clamp(2rem, 5vw, 4rem);
}

.benefit-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--metallic-gold);
    box-shadow: var(--shadow-luxury);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-golden-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--luxury-velvet);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Process Steps */
.process-container {
    position: relative;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-golden-rose);
    transform: translateY(-50%);
    z-index: 1; /* Dietro le card */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Glow per visibilità */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(0, 0, 0, 0.85); /* Sfondo più opaco per coprire la linea */
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3; /* Sopra la linea di connessione */
    backdrop-filter: blur(10px); /* Aggiunge profondità */
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--metallic-gold);
    box-shadow: var(--shadow-luxury);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-golden-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--luxury-velvet);
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-luxury);
    position: relative;
    z-index: 4; /* Sopra la card e la linea */
    z-index: 4; /* Sopra la card e la linea */
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: clamp(2rem, 5vw, 4rem);
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2.5rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--metallic-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.testimonial-quote::before {
    content: '"';
    font-size: 5.5rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    opacity: 0.25;
    z-index: 0;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-golden-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--luxury-velvet);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.author-name {
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Urgency Section */
.urgency-section {
    background: var(--gradient-golden-rose);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><path d="M0,0 Q250,50 500,0 T1000,0 L1000,100 L0,100 Z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1000px); }
}

.urgency-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.urgency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin: 4rem 0;
}

.urgency-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.urgency-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.urgency-feature i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Compensation Plan Section */
.compensation-section {
    background: rgba(0, 0, 0, 0.8);
}

.compensation-table {
    width: 100%;
    box-sizing: border-box;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    margin-top: 4rem;
}

.compensation-table table {
    width: 100%;
    border-collapse: collapse;
}

.compensation-table th {
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    padding: 0.9rem 0.6rem;
    text-align: left;
    vertical-align: top;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.compensation-table td {
    padding: 0.9rem 0.6rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.9);
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.compensation-table tr:last-child td {
    border-bottom: none;
}

.compensation-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bonus-highlight {
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    text-align: center;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.trust-item i {
    font-size: 1.2rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
 * BUTTONS - Beauty Influencer
 * ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.8rem);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 2rem);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Mobile-first: gestione overflow */
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.btn-primary {
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    border-color: var(--metallic-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--metallic-gold);
    border: 2px solid var(--metallic-gold);
}

.btn-secondary:hover {
    background: var(--metallic-gold);
    color: var(--luxury-velvet);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-large {
    padding: clamp(1.2rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 800;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.btn i {
    font-size: 1.1em;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    }
}

.btn.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
 * LOADING OVERLAY CUSTOM (Beauty Influencer)
 * ============================================ */
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.loading-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 0.25em;
    color: var(--metallic-gold, #d4af37);
    text-transform: uppercase;
    font-weight: 700;
}

/* ============================================
 * RESPONSIVE DESIGN - Beauty Influencer
 * ============================================ */

@media (max-width: 992px) {
    .hero-beauty .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-beauty .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-beauty .hero-image-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-beauty .hero-image {
        transform: scale(1.15);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem 2rem;
        min-height: auto;
    }
    
    .testimonial-quote {
        font-size: 1.05rem;
        padding-top: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote::before {
        font-size: 4rem;
        top: -8px;
        left: -12px;
    }
    
    .testimonial-author {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    body[data-page="beauty"] .section {
        padding: 4rem 0;
    }
    
    .hero-beauty {
        padding: 6rem 0 3rem;
    }
    
    .hero-beauty .hero-container {
        padding: 0 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .hero-beauty .hero-content,
    .hero-beauty .hero-visual {
        width: 100%;
    }
    
    .hero-beauty .hero-title,
    .hero-beauty .hero-subtitle,
    .hero-beauty .hero-description {
        text-align: left;
    }
    
    .hero-beauty .hero-stats {
        padding: 0 1rem;
    }
    
    .hero-beauty .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-beauty .hero-subtitle {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .hero-beauty .hero-description {
        font-size: 1rem;
    }
    
    .hero-beauty .hero-image-container {
        width: 350px;
        height: 350px;
    }
    
    .hero-beauty .hero-image {
        transform: scale(1.1);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 0 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .section {
        padding: clamp(2.5rem, 6vw, 3rem) clamp(0.75rem, 2vw, 1rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .benefits-grid,
    .steps-grid,
    .testimonials-grid,
    .urgency-features {
        grid-template-columns: 1fr;
    }
    
    .compensation-table th,
    .compensation-table td {
        font-size: 0.9rem;
        padding: 0.7rem 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Compensation table - versione mobile senza scroll */
    .compensation-table {
        width: 100%;
        box-sizing: border-box;
    }
    
    .compensation-table table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }
    
    .compensation-table th,
    .compensation-table td {
        padding: clamp(0.8rem, 2vw, 1rem);
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    
    .compensation-table th {
        font-size: clamp(0.85rem, 2.2vw, 1rem);
    }
    
    /* Breakpoint granulari per tabella */
    @media (max-width: 480px) {
        .compensation-table table {
            font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        }
        
        .compensation-table th,
        .compensation-table td {
            padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.5rem, 1.2vw, 0.8rem);
            font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        }
    }
    
    @media (max-width: 414px) {
        .compensation-table th,
        .compensation-table td {
            padding: clamp(0.6rem, 1.4vw, 0.7rem) clamp(0.5rem, 1vw, 0.7rem);
            font-size: clamp(0.7rem, 1.6vw, 0.8rem);
        }
    }
    
    @media (max-width: 375px) {
        .compensation-table th,
        .compensation-table td {
            padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.4rem, 0.9vw, 0.6rem);
            font-size: clamp(0.65rem, 1.4vw, 0.75rem);
        }
    }
    
    @media (max-width: 320px) {
        .compensation-table th,
        .compensation-table td {
            padding: 0.5rem 0.4rem;
            font-size: 0.7rem;
        }
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        white-space: normal;
        text-align: center;
        max-width: 100%;
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
    
    .btn-large {
        width: 100%;
        max-width: 100%;
        padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 1.8rem);
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem 1.75rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        padding-top: 0.75rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-quote::before {
        font-size: 3.5rem;
        top: -6px;
        left: -10px;
    }
    
    .testimonial-author {
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .hero-beauty .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-beauty .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-beauty .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-beauty .hero-image-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-beauty .hero-image {
        transform: scale(1.1);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .compensation-table table {
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
    }
    
    .compensation-table th,
    .compensation-table td {
        padding: clamp(0.6rem, 1.5vw, 0.8rem);
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
 * ELITE PROGRAM SECTION - Sezione Prominente
 * ============================================ */
.elite-program-section {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(232, 180, 203, 0.12) 50%,
        rgba(212, 175, 55, 0.15) 100%);
    border: 3px solid var(--metallic-gold);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    margin: 4rem auto;
    max-width: 1000px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.elite-program-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.elite-program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.elite-program-badge i {
    font-size: 1.2rem;
}

.elite-program-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.elite-program-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.elite-program-benefits {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.elite-program-benefits li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    padding-left: 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--metallic-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.elite-program-benefits li:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
    border-left-color: var(--farmasi-accent);
}

.elite-program-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    
    .elite-program-section {
        padding: clamp(2rem, 4vw, 2.5rem) clamp(1rem, 2.5vw, 1.5rem);
        margin: clamp(2rem, 4vw, 3rem) clamp(0.75rem, 2vw, 1rem);
    }
    
    .elite-program-title {
        font-size: 1.6rem;
    }
    
    .elite-program-description {
        font-size: 1rem;
    }
    
    .elite-program-benefits li {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    
    /* Solo media responsive per immagini */
    img,
    video {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Evita che il testo esca dal box - supporto multilingua */
body[data-page="beauty"] p,
body[data-page="beauty"] h1,
body[data-page="beauty"] h2,
body[data-page="beauty"] h3,
body[data-page="beauty"] h4,
body[data-page="beauty"] h5 {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* ===========================
 * LAYOUT BASE – PAGINA BEAUTY
 * (override finale, dopo tutto il resto)
 * =========================== */

body[data-page="beauty"] {
    overflow-x: hidden;
}

/* Container generico */
body[data-page="beauty"] .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Sezioni generiche */
body[data-page="beauty"] .section {
    width: 100%;
    padding: 6rem 0;
    position: relative;
    box-sizing: border-box;
}



