.elementor-133 .elementor-element.elementor-element-da36161{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-ce63098{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-3c0f40c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-85271d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-69aa93c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-e019894{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-133 .elementor-element.elementor-element-2785b59{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b429f7a *//* --- IMPOSTAZIONI GLOBALI DELLA SEZIONE --- */
.fnd-hero-section {
    position: relative;
    min-height: 90vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background-color: #f8fafc;
    font-family: 'Outfit', -apple-system, sans-serif;
}

/* --- GLOW SFOCATO SULLO SFONDO --- */
.fnd-hero-glow-1, .fnd-hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}
.fnd-hero-glow-1 {
    width: 400px; height: 400px;
    background: #163740; 
    top: -100px; left: -100px;
}
.fnd-hero-glow-2 {
    width: 300px; height: 300px;
    background: #BAA256; 
    bottom: -50px; right: 10%;
    animation-delay: -4s;
}

.fnd-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
    z-index: 2;
}

/* --- PARTE SINISTRA: TESTI (ANIMAZIONI A CASCATA) --- */
.fnd-hero-text-box {
    flex: 1;
    max-width: 550px;
    /* Ho rimosso l'animazione globale da qui per darla ai singoli elementi */
}

.fnd-hero-badge {
    display: inline-block;
    background: rgba(22, 55, 64, 0.08);
    color: #163740;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(22, 55, 64, 0.15);
    opacity: 0; /* Invisibile all'inizio */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards; /* Ritardo 0.1s */
}
.fnd-hero-badge i { color: #BAA256; margin-right: 6px; }

.fnd-hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #163740;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; /* Ritardo 0.2s */
}
.fnd-hero-title span { color: #BAA256; }

.fnd-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; /* Ritardo 0.3s */
}

/* --- BOTTONI --- */
.fnd-hero-buttons {
    display: flex;
    gap: 16px;
    width: 100%; 
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards; /* Ritardo 0.4s */
}

.fnd-btn {
    flex: 1; 
    width: 100%; 
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.fnd-btn-primary {
    background-color: #BAA256;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(186, 162, 86, 0.3);
}
.fnd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(186, 162, 86, 0.4);
    background-color: #a6904d;
}

.fnd-btn-secondary {
    background-color: transparent;
    color: #163740;
    border: 2px solid #163740;
}
.fnd-btn-secondary:hover {
    background-color: #163740;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- PARTE DESTRA: MOCKUP TELEFONO E CARTE --- */
.fnd-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.fnd-mockup-wrapper {
    position: relative;
    z-index: 5;
    /* L'animazione floating è stata spostata sotto per concatenarla */
}

.fnd-phone-mockup {
    width: 280px;
    height: 580px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(22, 55, 64, 0.25);
    border: 10px solid #163740;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    /* Entra dal basso, poi inizia a fluttuare */
    animation: 
        fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards,
        floating 6s ease-in-out 1.4s infinite;
}

.fnd-app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* --- CARTE FLUTTUANTI --- */
.fnd-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(22, 55, 64, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    font-weight: 600;
    color: #163740;
    pointer-events: none; 
    opacity: 0;
}

.fnd-glass-card i {
    font-size: 20px;
    color: #BAA256;
    background: rgba(186, 162, 86, 0.15);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
}

/* Animazioni incatenate: Prima appaiono (cardFadeIn), POI fluttuano (floating-reverse) */
.fnd-card-ai-multilingua { 
    top: 5%; left: -100px; 
    animation: cardFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards, floating-reverse 5s ease-in-out 1.3s infinite;
}

.fnd-card-room-service { 
    bottom: 25%; left: -100px; 
    animation: cardFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards, floating-reverse 5s ease-in-out 1.5s infinite;
}

.fnd-card-no-download { 
    top: 35%; right: -100px; transform: translateY(-50%); padding: 12px 16px; 
    animation: cardFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s forwards, floating-reverse 5s ease-in-out 1.7s infinite;
}

/* --- KEYFRAMES --- */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.2); opacity: 0.25; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn {
    0% { opacity: 0; margin-top: 20px; }
    100% { opacity: 1; margin-top: 0; }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floating-reverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

/* Sostituisci solo questa classe nel CSS della Hero */
.fnd-hero-section {
    position: relative;
    min-height: 90vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 20px 20px; /* AGGIUNTO PADDING TOP 120px */
    overflow: hidden;
    background-color: #f8fafc;
    font-family: 'Outfit', -apple-system, sans-serif;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-hero-container { flex-direction: column; text-align: center; padding-top: 40px; gap: 30px; }
    .fnd-hero-text-box { align-items: center; display: flex; flex-direction: column; max-width: 90%; }
    .fnd-hero-title { font-size: 40px; }
    .fnd-hero-buttons { flex-direction: column; width: 100%; }
    .fnd-btn { width: 100%; }
    
    .fnd-hero-visual { height: 550px; }
    .fnd-phone-mockup { width: 240px; height: 500px; }

    .fnd-glass-card { transform: scale(0.75); font-size: 14px; position: absolute; }
    
    .fnd-card-ai-multilingua { top: 5%; left: -30px; }
    .fnd-card-room-service { bottom: 5%; left: -30px; }
    /* Disabilito il translate Y su mobile per evitare conflitti con la scala */
    .fnd-card-no-download { top: 40%; right: -30px; transform: scale(0.75); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ee3892f *//* --- IMPOSTAZIONI GLOBALI APPLE-STYLE --- */
.fnd-apple-features {
    padding: 120px 20px;
    background-color: #f5f5f7;
    font-family: 'Outfit', -apple-system, sans-serif;
    overflow-x: hidden; 
}

/* --- HEADER --- */
.fnd-apple-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    /* Stato iniziale: invisibile e spostato in basso */
    opacity: 0;
    transform: translateY(40px);
}
/* Entra in scena quando appare nello schermo */
.fnd-apple-header.is-visible {
    animation: fadeInUpFeature 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fnd-apple-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #1d1d1f; 
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}
.fnd-apple-header h2 span { color: #BAA256; }
.fnd-apple-header p {
    font-size: 24px;
    color: #86868b; 
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

/* --- BENTO GRID E ANIMAZIONI CARD --- */
.fnd-bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; 
}

.fnd-bento-card {
    background: #ffffff;
    border-radius: 32px; 
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    /* Stato iniziale nascosto */
    opacity: 0; 
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* Effetto Hover (non interferisce con l'animazione di entrata) */
.fnd-bento-card:hover {
    transform: scale(1.01) !important; /* Forza l'hover anche dopo che si è fermata a translateY(0) */
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* Animazioni ritardate a cascata che partono SOLO allo scroll (.is-visible) */
.fnd-bento-card.is-visible:nth-child(1) {
    animation: fadeInUpFeature 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
}
.fnd-bento-card.is-visible:nth-child(2) {
    animation: fadeInUpFeature 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}
.fnd-bento-card.is-visible:nth-child(3) {
    animation: fadeInUpFeature 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.fnd-card-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: radial-gradient(circle at bottom right, rgba(186,162,86,0.05), #ffffff 50%);
}

/* --- TESTI E VISUAL NELLE CARD --- */
.fnd-bento-text { position: relative; z-index: 2; }
.fnd-card-large .fnd-bento-text { max-width: 450px; }
.fnd-bento-text h3 { font-size: 32px; font-weight: 700; color: #163740; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 16px 0; }
.fnd-bento-text p { font-size: 18px; color: #86868b; line-height: 1.5; margin: 0; }
.fnd-bento-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }

/* Visual AI */
.fnd-visual-ai { flex: 1; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.fnd-apple-chat { padding: 16px 24px; border-radius: 24px; font-size: 16px; line-height: 1.4; max-width: 80%; box-shadow: 0 8px 24px rgba(0,0,0,0.06); animation: floatApple 4s ease-in-out 1s infinite alternate; }
.fnd-chat-user { background: #163740; color: #ffffff; border-bottom-right-radius: 6px; }
.fnd-chat-bot { background: #ffffff; color: #1d1d1f; border: 1px solid #f5f5f7; border-bottom-left-radius: 6px; align-self: flex-start; animation-delay: -1s; }
.fnd-chat-bot i { color: #BAA256; margin-right: 8px; }

/* Visual Room Service & PWA */
.fnd-card-medium .fnd-bento-text { margin-bottom: 40px; }
.fnd-visual-room, .fnd-visual-pwa { flex-grow: 1; flex-direction: column; gap: 20px; }
.fnd-apple-service { background: #ffffff; border: 1px solid #f5f5f7; border-radius: 24px; padding: 16px; display: flex; align-items: center; gap: 16px; width: 100%; box-shadow: 0 12px 32px rgba(0,0,0,0.06); animation: floatApple 5s ease-in-out 1.2s infinite alternate; }
.fnd-as-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.fnd-as-info { flex-grow: 1; }
.fnd-as-info strong { display: block; color: #1d1d1f; font-size: 18px; margin-bottom: 4px; }
.fnd-as-info span { font-size: 13px; color: #86868b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fnd-as-price { font-weight: 800; color: #163740; font-size: 20px; }

.fnd-apple-notify { background: #163740; color: #ffffff; padding: 14px 24px; border-radius: 30px; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 24px rgba(22, 55, 64, 0.2); animation: floatApple 5s ease-in-out 1s infinite alternate-reverse; }
.fnd-apple-notify i { color: #BAA256; font-size: 20px; }
.fnd-apple-icon-group { display: flex; gap: 24px; animation: floatApple 6s ease-in-out 1.4s infinite alternate; }
.fnd-apple-icon-box { width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 36px; box-shadow: 0 16px 32px rgba(0,0,0,0.06); }

/* --- KEYFRAMES --- */
@keyframes fadeInUpFeature {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes floatApple {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-apple-features { padding: 80px 20px; }
    .fnd-apple-header h2 { font-size: 40px; }
    .fnd-apple-header p { font-size: 18px; }
    .fnd-bento-grid { grid-template-columns: 1fr; }
    .fnd-card-large { grid-column: span 1; flex-direction: column; text-align: center; padding: 40px 24px; }
    .fnd-card-medium { text-align: center; padding: 40px 24px; }
    .fnd-visual-ai { align-items: center; width: 100%; }
    .fnd-apple-chat { max-width: 100%; text-align: left; }
    .fnd-chat-bot { align-self: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c08ef3a *//* --- IMPOSTAZIONI GLOBALI DELLA SEZIONE --- */
.fnd-target-section {
    padding: 120px 20px;
    background-color: #ffffff; /* Sfondo bianco per staccare dal grigio della Bento Grid */
    font-family: 'Outfit', -apple-system, sans-serif;
    overflow-x: hidden;
}

/* --- HEADER ANIMATO --- */
.fnd-target-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    /* Stato iniziale nascosto */
    opacity: 0;
    transform: translateY(40px);
}

.fnd-target-header.is-visible {
    animation: fadeInUpTarget 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fnd-target-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #1d1d1f; 
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.fnd-target-header h2 span {
    color: #BAA256; /* Oro */
}

.fnd-target-header p {
    font-size: 24px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

/* --- GRIGLIA E CARD ANIMATE --- */
.fnd-target-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.fnd-target-card {
    background: #f9f9fb; /* Grigio chiarissimo elegante */
    border-radius: 40px; /* Angoli super rotondi Apple */
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    /* Stato iniziale nascosto */
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

/* Animazioni a cascata: la prima card entra prima della seconda */
.fnd-target-card.is-visible:nth-child(1) {
    animation: fadeInUpTarget 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.fnd-target-card.is-visible:nth-child(2) {
    animation: fadeInUpTarget 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.fnd-target-card:hover {
    /* Uso !important per sovrascrivere il translateY(0) dell'animazione finita */
    transform: translateY(-8px) !important;
    box-shadow: 0 30px 60px rgba(22, 55, 64, 0.08); /* Ombra Dark Teal morbidissima */
    background: #ffffff;
}

/* Effetto bagliore sfumato in background della card */
.fnd-target-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(186,162,86,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.fnd-target-card:hover::before {
    opacity: 1;
}

/* --- ICONE IN ALTO ALLE CARD --- */
.fnd-target-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.fnd-icon-teal { background: rgba(22, 55, 64, 0.08); color: #163740; }
.fnd-icon-gold { background: rgba(186, 162, 86, 0.15); color: #BAA256; }

/* --- TESTI INTERNI ALLE CARD --- */
.fnd-target-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #163740;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}

.fnd-target-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 2;
}

/* --- LISTA VANTAGGI (BENEFITS) --- */
.fnd-target-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.fnd-target-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.fnd-target-benefits li:last-child { margin-bottom: 0; }
.fnd-target-benefits i { color: #BAA256; font-size: 24px; margin-top: 2px; flex-shrink: 0; }
.fnd-target-benefits span { font-size: 17px; color: #1d1d1f; line-height: 1.5; }
.fnd-target-benefits strong { color: #163740; font-weight: 700; }

/* --- KEYFRAMES ANIMAZIONE --- */
@keyframes fadeInUpTarget {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-target-section { padding: 80px 20px; }
    .fnd-target-header h2 { font-size: 40px; }
    .fnd-target-header p { font-size: 18px; }
    .fnd-target-grid { grid-template-columns: 1fr; gap: 24px; }
    .fnd-target-card { padding: 40px 32px; border-radius: 32px; }
    .fnd-target-card h3 { font-size: 32px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-00f4e96 *//* --- IMPOSTAZIONI GLOBALI --- */
.fnd-compare-section {
    padding: 120px 20px;
    background-color: #f8fafc; /* Leggero stacco dal bianco delle altre sezioni */
    font-family: 'Outfit', -apple-system, sans-serif;
    overflow-x: hidden;
}

/* --- HEADER ANIMATO --- */
.fnd-compare-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    opacity: 0;
    transform: translateY(40px);
}

.fnd-compare-header.is-visible {
    animation: fadeInUpCompare 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fnd-compare-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #1d1d1f; 
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.fnd-compare-header h2 span { color: #BAA256; }
.fnd-compare-header p { font-size: 24px; color: #86868b; font-weight: 400; margin: 0; }

/* --- CONTENITORE TABELLA --- */
.fnd-compare-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(22, 55, 64, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    /* Animazione di entrata */
    opacity: 0;
    transform: translateY(40px);
}

.fnd-compare-wrapper.is-visible {
    animation: fadeInUpCompare 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

/* --- STRUTTURA GRIGLIA --- */
.fnd-compare-grid {
    display: flex;
    flex-direction: column;
}

.fnd-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; /* Proporzioni delle colonne */
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

.fnd-compare-row:last-child {
    border-bottom: none;
}

.fnd-compare-row:not(.fnd-compare-head):hover {
    background-color: #f8fafc;
}

/* --- CELLE --- */
.fnd-col-feature, .fnd-col-others, .fnd-col-us {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

/* Colonna Funzionalità (Sinistra) */
.fnd-col-feature {
    font-weight: 700;
    color: #163740;
}

/* Colonna "Gli Altri" (Centro) */
.fnd-col-others {
    color: #64748b;
    font-weight: 500;
}
.fnd-col-others i {
    color: #cbd5e1;
    margin-right: 10px;
    font-size: 20px;
}
.fnd-text-gray {
    color: #94a3b8;
}

/* Colonna "Noi" (Destra - Evidenziata) */
.fnd-col-us {
    background-color: rgba(186, 162, 86, 0.05); /* Sfondo leggerissimo oro */
    font-weight: 700;
    color: #163740;
    border-left: 2px solid rgba(186, 162, 86, 0.2);
}
.fnd-col-us i {
    color: #BAA256;
    margin-right: 10px;
    font-size: 20px;
}

/* --- INTESTAZIONE (Titoli colonne) --- */
.fnd-compare-head {
    background-color: #163740;
    border-bottom: none;
}
.fnd-compare-head .fnd-col-feature { color: #ffffff; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.fnd-compare-head .fnd-col-others { color: #cbd5e1; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.fnd-compare-head .fnd-col-us { 
    background-color: #BAA256; 
    color: #ffffff; 
    border-left: none;
    font-size: 18px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.fnd-compare-head .fnd-col-us i {
    color: #ffffff;
    margin-left: 8px;
    margin-right: 0;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUpCompare {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-compare-section { padding: 80px 20px; }
    .fnd-compare-header h2 { font-size: 40px; }
    .fnd-compare-header p { font-size: 18px; }
    
    /* Su mobile trasformiamo la tabella per non farla schiacciare */
    .fnd-compare-wrapper {
        border-radius: 24px;
    }
    
    .fnd-compare-row {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 12px;
    }
    
    .fnd-compare-head { display: none; } /* Nascondiamo l'intestazione su mobile per pulizia */
    
    .fnd-col-feature, .fnd-col-others, .fnd-col-us {
        padding: 0;
        border: none;
        background: transparent;
    }
    
    .fnd-col-feature {
        font-size: 20px;
        margin-bottom: 8px;
        border-bottom: 2px solid #f1f5f9;
        padding-bottom: 8px;
    }
    
    .fnd-col-others {
        font-size: 16px;
    }
    
    .fnd-col-us {
        font-size: 16px;
        padding-top: 8px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f07853 *//* --- IMPOSTAZIONI GLOBALI DELLA SEZIONE --- */
.fnd-faq-section {
    padding: 120px 20px;
    background-color: #ffffff; 
    font-family: 'Outfit', -apple-system, sans-serif;
    overflow-x: hidden; /* Evita sfarfallii laterali durante l'animazione */
}

/* --- HEADER ANIMATO --- */
.fnd-faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    /* Stato iniziale nascosto */
    opacity: 0;
    transform: translateY(40px);
}

.fnd-faq-header.is-visible {
    animation: fadeInUpFaq 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fnd-faq-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #1d1d1f; 
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.fnd-faq-header h2 span { color: #BAA256; }
.fnd-faq-header p { font-size: 24px; color: #86868b; font-weight: 400; margin: 0; }

/* --- CONTENITORE DELLE FAQ --- */
.fnd-faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

/* --- I SINGOLI BLOCCHI FAQ ANIMATI --- */
.fnd-faq-item {
    background-color: #fafafa; 
    border-radius: 24px; 
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* Stato iniziale nascosto */
    opacity: 0;
    transform: translateY(40px);
}

/* Effetto cascata: ogni FAQ entra con un ritardo maggiore */
.fnd-faq-item.is-visible:nth-child(1) { animation: fadeInUpFaq 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards; }
.fnd-faq-item.is-visible:nth-child(2) { animation: fadeInUpFaq 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; }
.fnd-faq-item.is-visible:nth-child(3) { animation: fadeInUpFaq 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; }
.fnd-faq-item.is-visible:nth-child(4) { animation: fadeInUpFaq 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards; }
.fnd-faq-item.is-visible:nth-child(5) { animation: fadeInUpFaq 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards; }

.fnd-faq-item:hover {
    background-color: #f5f5f5; 
}

/* --- DIV DOMANDA --- */
.fnd-faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 32px;
    font-size: 22px;
    font-weight: 700;
    color: #163740 !important; 
    background-color: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.fnd-faq-question:hover,
.fnd-faq-question:focus,
.fnd-faq-question:active {
    color: #163740 !important;
    background-color: transparent !important;
}

.fnd-faq-question i {
    font-size: 20px;
    color: #BAA256; 
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}

/* --- STATO ATTIVO (QUANDO LA FAQ È APERTA) --- */
.fnd-faq-item.active {
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(22, 55, 64, 0.08); 
    border-color: rgba(186, 162, 86, 0.3); 
}

.fnd-faq-item.active .fnd-faq-question i {
    transform: rotate(45deg); 
    color: #163740;
}

/* --- TESTI INTERNI ALLE RISPOSTE --- */
.fnd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fnd-faq-answer p {
    padding: 0 32px 32px 32px;
    margin: 0;
    font-size: 18px;
    color: #64748b; 
    line-height: 1.6;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUpFaq {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-faq-section { padding: 80px 20px; }
    .fnd-faq-header h2 { font-size: 40px; }
    .fnd-faq-header p { font-size: 18px; }
    
    .fnd-faq-item { border-radius: 20px; }
    .fnd-faq-question { padding: 24px; font-size: 18px; }
    .fnd-faq-answer p { padding: 0 24px 24px 24px; font-size: 16px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c035316 *//* --- SFONDO WRAPPER (Continua il grigio Apple) --- */
.fnd-cta-wrapper {
    padding: 60px 20px 120px 20px;
    background-color: #f5f5f7; /* Stesso grigio della sezione precedente */
    display: flex;
    justify-content: center;
    font-family: 'Outfit', -apple-system, sans-serif;
}

/* --- LA CARD SCURA GIGANTE --- */
.fnd-cta-card {
    background-color: #163740; /* Il tuo Dark Teal Brand */
    width: 100%;
    max-width: 1200px;
    border-radius: 40px; /* Angoli Apple */
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(22, 55, 64, 0.15);
}

/* --- EFFETTO LUCE INTERNA --- */
.fnd-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 162, 86, 0.15) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* --- TESTI --- */
.fnd-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.fnd-cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
}

.fnd-cta-content h2 span {
    color: #BAA256; /* Oro */
}

.fnd-cta-content p {
    font-size: 20px;
    color: #cbd5e1; /* Grigio azzurrognolo chiaro per leggibilità */
    line-height: 1.6;
    margin: 0 0 48px 0;
}

/* --- BOTTONI --- */
.fnd-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.fnd-cta-btn {
    padding: 18px 40px;
    border-radius: 100px; /* Bottoni a pillola */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.fnd-cta-primary {
    background-color: #BAA256;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(186, 162, 86, 0.3);
}

.fnd-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #c9b168;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(186, 162, 86, 0.4);
}

.fnd-cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fnd-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- TRUST BADGE --- */
.fnd-cta-trust {
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fnd-cta-trust i {
    color: #BAA256;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .fnd-cta-wrapper {
        padding: 40px 20px 80px 20px;
    }
    
    .fnd-cta-card {
        padding: 60px 24px;
        border-radius: 32px;
    }
    
    .fnd-cta-content h2 {
        font-size: 40px;
    }
    
    .fnd-cta-actions {
        flex-direction: column; /* Incolonna i bottoni su mobile */
        width: 100%;
    }
    
    .fnd-cta-btn {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ff6965 *//* --- SEZIONE TRUST E-E-A-T --- */
.fnd-trust-section {
    background-color: #163740; /* Sfondo scuro per contrasto premium */
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Outfit', -apple-system, sans-serif;
    border-top: 4px solid #BAA256; /* Linea d'accento oro */
}

.fnd-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fnd-trust-text {
    flex: 1;
    max-width: 450px;
}

.fnd-trust-badge {
    display: inline-block;
    background: rgba(186, 162, 86, 0.15);
    color: #BAA256;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fnd-trust-heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.fnd-trust-sub {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* --- METRICHE E NUMERI --- */
.fnd-trust-metrics {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Preparazione per animazione JS */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fnd-trust-metrics.fnd-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fnd-metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fnd-metric-number {
    font-size: 42px;
    font-weight: 800;
    color: #BAA256; /* Oro */
    margin-bottom: 8px;
    line-height: 1;
}

.fnd-metric-label {
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 500;
}

.fnd-metric-stars {
    margin-top: 8px;
    color: #BAA256;
    font-size: 12px;
    display: flex;
    gap: 4px;
}

.fnd-metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- RESPONSIVE MOBILE E TABLET --- */
@media (max-width: 992px) {
    .fnd-trust-container {
        flex-direction: column;
        text-align: center;
    }
    
    .fnd-trust-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .fnd-trust-metrics {
        width: 100%;
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .fnd-metric-divider {
        width: 100px;
        height: 1px;
    }
}/* End custom CSS */