/* --- Import font --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ===========================
   Sandro Corapi – Homepage CSS
   =========================== */

/* Reset & Base */
*                                       {margin:0; padding:0; box-sizing:border-box;}
html                                    {scroll-behavior: smooth;}
body                                    {margin:0; background-color:var(--wb_black) !important; color:var(--wb_white); font-family:'Raleway',sans-serif; line-height:1.5; overflow-x:hidden; }
a                                       {text-decoration:none; color:inherit;}
img                                     {max-width:100%; height:auto; display:block;}

/* Tipografia Manuel */
:root{
    --scale-h1:clamp(1.9rem,3.6vw,3rem);
    --scale-h2:clamp(1.5rem,3vw,2.2rem);
    --scale-h3:clamp(1.2rem,2.4vw,1.7rem);
    --scale-h4:clamp(1rem,2vw,1.3rem);
    --scale-h5:clamp(.9rem,1.8vw,1rem);
    --scale-p:clamp(.95rem,1.6vw,1.1rem);
}
h1{font-size:var(--scale-h1);margin-bottom:.75rem;font-weight:700;line-height:1.15;}
h2{font-size:var(--scale-h2);margin-bottom:.75rem;font-weight:600;line-height:1.25;}
h3{font-size:var(--scale-h3);margin-bottom:.65rem;font-weight:600;line-height:1.3;}
h4{font-size:var(--scale-h4);margin-bottom:.55rem;font-weight:500;line-height:1.1;}
h5{font-size:var(--scale-h5);font-weight:600;letter-spacing:.06em;margin-bottom:.5rem;}
p{font-size:var(--scale-p);line-height:1.65;font-weight:400;margin-bottom:1rem;}
/* Regole  per spaziatura verticale */
h1+h2,h2+h3,h3+p{margin-top:.4em;}
p+p{margin-top:.8em;}
p+.btn,p+a.btn{margin-top:1.4em;}

/* === Palette Principale === */
:root{
    --wb_primary:#144072;         /* Blu istituzionale → fiducia e autorevolezza */
    --wb_secondary:#852c87;       /* Viola introspezione → crescita interiore, creatività */
    --wb_life:#36a9e1;            /* Azzurro vitalità → energia positiva, equilibrio */
    --wb_red:#e6332a;             /* Rosso azione → passione e determinazione */
    --wb_sport:#f39200;           /* Arancio sport → entusiasmo e performance */
    --wb_academy:#008EB9;         /* Blu academy → formazione e chiarezza mentale */
    --wb_business:#0072ff;        /* Blu business → competenza e innovazione */
    --wb_mental:#e6007e;          /* Fucsia mental → forza emotiva e motivazione */
    --wb_calcio:#0BD113;          /* Verde calcio → crescita, concentrazione e resilienza */
    --wb_calcio-dark:#0b700b;     /* Verde calcio → crescita, concentrazione e resilienza */

    /* === Toni Neutri === */
    --wb_dark:#282828;            /* Grigio scuro → eleganza e profondità */
    --wb_black:#000;              /* Nero assoluto → contrasto e impatto visivo */
    --wb_white:#fff;              /* Bianco → chiarezza e leggibilità */
    --wb_business-light:#6cacea;  /* Blu chiaro digitale → modernità e leggerezza */
    --wb_grey-light:#f2f2f2;      /* Grigio chiaro → equilibrio e neutralità */

    /* Gradienti */
    --wb_primary-gradient: linear-gradient(135deg, #144072 0%, #e6007e 100%);
    --wb_sport-gradient: linear-gradient(135deg, #f39200 0%, #e6332a 100%);
    --wb_life-gradient: linear-gradient(135deg, #36a9e1 0%, #008EB9 100%);
    --wb_business-gradient: linear-gradient(135deg, #0072ff 0%, #777777 100%);
    --wb_mental-gradient: linear-gradient(135deg, #852c87 0%, #008EB9 100%);

    --bs-navbar-active-color:#36a9e1;
}

/* Testi Formazione & Coaching */
.cca-title                              {font-size:clamp(1.7rem,3.3vw,2.8rem);margin-bottom:.75rem;font-weight:700;line-height:1.15;}
.cca-subtitle                           {font-size:clamp(1.2rem,2.2vw,1.6rem);margin-bottom:.65rem;font-weight:600;line-height:1.3;}
.cca-text                               {font-size:clamp(.95rem,1.6vw,1.2rem);line-height:1.65;font-weight:400;margin-bottom:1rem;}
.highlight                              {color:var(--highlight-color);}
.theme-life                             {--highlight-color:var(--wb_life);}
.theme-sport                            {--highlight-color:var(--wb_sport);}
.theme-business                         {--highlight-color:var(--wb_business-light);}
.theme-mental                           {--highlight-color:var(--wb_secondary);}

/* BUTTON SYSTEM (Coerente & Accattivante) */
:root{
    --wb_academy-gradient:linear-gradient(135deg,#008EB9,#144072);
    --wb_life-gradient:linear-gradient(135deg,#36a9e1,#029fc3);
    --wb_sport-gradient:linear-gradient(135deg,#f39200,#bf7a1f);
    --wb_calcio-gradient:linear-gradient(135deg,#0BD113,#0b700b);
    --wb_business-gradient:linear-gradient(135deg,#0072ff,#6cacea);
    --wb_mental-gradient:linear-gradient(135deg,#e6007e,#852c87);
}
/* Buttons Base */
.cta-buttons                                {display:flex;justify-content:left;align-items:center;gap:1rem;flex-wrap:wrap;margin-top:1.5rem; border-radius: 24px 0;}
.cta-buttons a                              {text-decoration:none;min-width:200px;text-align:center}
.btn-gradient-base                          {font-size:clamp(.9rem,1.8vw,1rem);font-weight:400;color:var(--wb_white);border:none;border-radius:24px 0;padding:1rem 2rem;box-shadow:0 4px 12px rgba(0,0,0,.2);transition:.3s;display:inline-block;text-decoration:none;margin:1rem 0;cursor:pointer; line-height:1.2;transition:all .3s ease; min-width: 250px;}
.btn-gradient-base:hover                    {transform:translateY(-2px);opacity:.9}
.btn-gradient                               {background:linear-gradient(135deg,var(--wb_primary),var(--wb_mental))}
.btn-gradient-form                          {background:linear-gradient(135deg,var(--wb_primary),var(--wb_life))}
.btn-gradient-alt                           {background:linear-gradient(135deg,var(--wb_primary),var(--wb_business))}
.btn-gradient:hover,
.btn-gradient-form:hover,
.btn-gradient-alt:hover                     {background:linear-gradient(135deg,var(--wb_secondary),var(--wb_primary));box-shadow:0 6px 16px rgba(0,0,0,.3);color:var(--wb_white)}
/* Hover globale */
.btn-gradient:hover                         {transform:translateY(-2px);box-shadow:0 6px 16px rgba(0,0,0,.35); filter:brightness(1.05);}
/* Life (Header & CTA principale) */
.btn-gradient-life                          {background:var(--wb_life-gradient); }
.btn-gradient-life:hover                    {background:linear-gradient(135deg,var(--wb_primary),var(--wb_life));}
/* Sport */
.btn-gradient-sport                         {background:var(--wb_sport-gradient);}
.btn-gradient-sport:hover                   {background:linear-gradient(135deg,var(--wb_red),var(--wb_sport));}
/* Calcio */
.btn-gradient-calcio                        {background:var(--wb_calcio-gradient);}
.btn-gradient-calcio:hover                   {background:linear-gradient(135deg,var(--wb_calcio),var(--wb_calcio-dark));}
/* Business */
.btn-gradient-business                      {background:var(--wb_business-gradient);}
.btn-gradient-business:hover                {background:linear-gradient(135deg,var(--wb_primary),var(--wb_business));}
/* Mental */
.btn-gradient-mental                        {background:var(--wb_mental-gradient);}
.btn-gradient-mental:hover                  {background:linear-gradient(135deg,#852c87,#e6007e);}
/* Responsive */
@media(max-width:767.98px){
    .btn-gradient                           {padding:.8rem 1.6rem;font-size:.95rem;border-radius:16px 0;}
    .btn                                    {padding:.8rem 1.6rem;font-size:.95rem;}
    .btn-cta                                {padding:1rem 1.8rem;font-size:1rem;}
    .cta-buttons                            {flex-direction:column;gap:.75rem; justify-content:center;}
}
/* Sections */
.min-vh-40                                  { min-height: 40vh; } /* altezza minima metà 60 viewport */
.min-vh-60                                  { min-height: 60vh; } /* altezza minima metà 60 viewport */

/* ==================== HEADER ==================== */
header                                  {position:sticky;top:0;z-index:1000;background:var(--wb_black);box-shadow:0 2px 10px rgba(0,0,0,.3)}
.navbar                                 {padding:1rem 0;height:80px;background-color:var(--wb_black);}
.navbar-brand img                       {height:40px}
.navbar-nav                             {gap:.2rem;align-items:center;}
.navbar-nav .nav-item                   {color:var(--wb_white)}
.navbar-nav .nav-link                   {color:var(--wb_white);font-size:.9rem;font-weight:400;position:relative;transition:color .3s;padding:.4rem .6rem}
.navbar-nav .nav-item .nav-link:hover   {color:var(--wb_life);}
.navbar-nav .nav-item .nav-link:focus   {color:var(--wb_life);}
.navbar-nav .nav-item .nav-link.active  {color:var(--wb_life);}
.navbar-nav .nav-item .nav-link:focus-visible   {color:var(--wb_life);box-shadow:none;}

/* Menù click+hover + Navbar gradiente sottolineato */
.navbar .nav-link::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:linear-gradient(90deg,var(--wb_primary),var(--wb_life),var(--wb_mental));transition:.35s}
.navbar .nav-link:hover, .navbar .nav-link:focus, .navbar .nav-link.active{color:var(--wb_life);}
.navbar .nav-link:hover::after,.navbar .nav-link:focus::after,.navbar .nav-link.active::after{width:100%}

/* --- ICONA PERSONALIZZATA MENU MOBILE --- */
.navbar-toggler         { border: none; padding: .4rem .6rem; outline: none; box-shadow: none !important; }
.navbar-toggler:focus   {outline: none;box-shadow: none;}
.custom-toggler-icon    { width: 32px; height: 32px; filter: brightness(0) invert(1); /* mantiene bianca anche se SVG è scuro */ }

/* --- MENU MOBILE FIX CTA --- */
@media (max-width: 991.98px) {
    .navbar-collapse { padding: 1rem 1rem 2rem;}
    .navbar-collapse .btn-gradient { display: block; width: 100%; margin-top: 1.5rem; text-align: center; }
}

@media(min-width:992px){.navbar .dropdown:hover>.dropdown-menu{display:block;margin-top:0}}

.navbar-nav .nav-item .nav-link::after                                  {content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--wb_life);transition:width .3s}
.navbar-nav .nav-item .nav-link:hover::after                            {width:100%}
.navbar-nav .dropdown-toggle::after                                     {cursor:pointer;border-top:2px solid;border-right:none;border-bottom:2px solid;border-bottom:none;border-left:none;}
.navbar-nav .dropdown-menu                                              {background:var(--wb_dark);border:1px solid rgba(255,255,255,.1);border-radius:16px 0}
.navbar-nav .dropdown-item                                              {color:var(--wb_white);transition:background-color .3s,color .3s}
.navbar-nav .dropdown-item:hover                                        {background-color:var(--wb_primary);color:var(--wb_white)}
.navbar-collapse                                                        {background-color:var(--wb_black)}
.btn-gradient                                                           {font-size:.9rem;font-weight:normal;color:var(--wb_white);background:linear-gradient(135deg,var(--wb_primary),var(--wb_mental));border:none;border-radius:16px 0;padding:8px 32px;box-shadow:0 4px 12px rgba(0,0,0,.2);transition:all .3s;display:inline-block;text-decoration:none; margin: 1rem 0;}
.btn-gradient:hover                                                     {background:linear-gradient(135deg,var(--wb_secondary),var(--wb_primary));transform:translateY(-2px);box-shadow:0 6px 16px rgba(0,0,0,.3);color:var(--wb_white)}

/* Anti-sfarfallio orizzontale - escluso destiny-section */
@media(max-width:991.98px){
    html,body                                                           {overflow-x:hidden;width:100vw;position:relative;}
    section:not(.destiny-section),[class*="container"],[class*="row"],div:not(.carousel-wrapper):not(.carousel-track),img,video,iframe{box-sizing:border-box;overflow-x:initial;}
}

/* 01 HOMEPAGE */
/* Cover Hero */
.cover-hero                                                 {height:85vh;position:relative;background-image:linear-gradient(90deg,rgba(0,0,0,0.6), rgba(0,0,0,0), rgba(0,0,0,0)),url('../img/sandro-corapi-hero-provvisoria.jpg');background-size:cover;background-position:top center;border-radius:24px 0 24px 0;margin:2rem 0;}
.cover-hero .row                                            {height:100%;}
.hero-left                                                  {padding:3rem;}
.hero-text-content                                          {padding-bottom:2rem;}
.hero-title                                                 {opacity:0;transition: opacity 0.8s ease;font-size:3.5rem;font-weight:700;margin-bottom:1rem;color:var(--wb_white);}
.hero-subtitle                                              {opacity:0;transition: opacity 0.8s ease;font-size:1.75rem;font-weight:600;margin-bottom:1rem;color:var(--wb_white);}
.hero-text                                                  {opacity:0;transition: opacity 0.8s ease;font-size:1.25rem;line-height:1.6;margin-bottom:2rem;color:var(--wb_white);max-width:600px;}
.hero-title.visible                                         {opacity:1;}
.hero-subtitle.visible                                      {opacity:1;}
.hero-text.visible                                          {opacity:1;}
.hero-right                                                 {padding:2rem;}
/* Video Home */
.hero-video                                                 {margin:auto 2rem 0 auto;width:300px!important;position:relative;cursor:pointer;border-radius:24px 0;overflow:hidden;z-index:0;}
.hero-video video                                           {width:100%;height:100%;object-fit:cover;border-radius:inherit;display:block;z-index:0;}
.video-play-overlay                                         {position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.3);transition:background .3s;pointer-events:none;z-index:2;}
.video-play-overlay i                                       {font-size:4rem;color:var(--wb_white);transition:all .3s;opacity:.6;}
.hero-video:hover .video-play-overlay i                     {opacity:.9;transform:scale(1.05);}
/* Crea effetto gradiente luminoso */
.hero-video::after                                          {content:"";position:absolute;inset:0;border-radius:inherit;padding:2px;background:linear-gradient(120deg,var(--wb_primary),var(--wb_secondary),var(--wb_life),var(--wb_mental),var(--wb_sport));background-size:300% 300%;animation:borderLight 6s linear infinite;-webkit-mask-image:linear-gradient(var(--wb_black) 0 0),linear-gradient(var(--wb_black) 0 0);-webkit-mask-origin:content-box,border-box;-webkit-mask-clip:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;z-index:1;}
.hero-video:hover::after                                    {animation-duration:3s;}
@keyframes borderLight                                      {0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@supports not ((mask-composite:exclude) or (-webkit-mask-composite:xor)){
    .hero-video::after                                      {padding:0;box-shadow:0 0 0 3px rgba(54,169,225,.9) inset;animation:none}}

/* Hero Mobile */
@media(max-width:991.98px){
    :root                                                   {--header-mobile-h:60px;}
    .navbar-nav .nav-item                                   {width:100%;}
    .cover-hero                                             { position:relative; display:flex; flex-direction:column; justify-content:flex-start; align-items:center; min-height:calc(100vh - var(--header-mobile-h)); padding:.25rem 0 .5rem; background:linear-gradient(0deg,rgba(0,0,0,.35),rgba(0,0,0,.35)), url('/img/sandro-corapi-hero-mobile.jpg') no-repeat; background-size:cover; background-position:right 24% top; overflow:hidden;}
    .hero-left                                              {width:100%;text-align:left;padding:1rem;}
    .hero-left>div                                          {padding:0 1rem;}
    .hero-title                                             {font-size:clamp(1.9rem,7vw,2.6rem);line-height:1.1;margin-bottom:.4rem;}
    .hero-subtitle                                          {font-size:clamp(1.1rem,4.8vw,1.45rem);margin-bottom:.6rem;}
    .hero-text                                              {font-size:clamp(.95rem,4.2vw,1.05rem);margin-bottom:.9rem;}
    .hero-right                                             {width:100%;display:flex;justify-content:center;align-items:center;padding:0 1rem;}
    .hero-video                                             {width:100%;max-width:720px;margin-inline:auto;margin-top:1rem;border-radius:24px 0;overflow:hidden;aspect-ratio:16/9;position:relative;z-index:2;}
    .hero-video video                                       {width:100%;height:100%;object-fit:cover;display:block;}
    .video-play-overlay i                                   {font-size:3rem;opacity:.85;}
    @supports(min-height:100dvh){
    .cover-hero                                             {min-height:calc(100dvh - var(--header-mobile-h));}
    }
}

/* Crea il tuo destino */
.destiny-section                                    {padding:80px 0; background:var(--wb_black);}
.destiny-section h2                                 {font-size:clamp(2rem,4vw,3rem); font-weight:700; margin-bottom:2rem;}
.carousel-controls                                  {display:flex; gap:10px;}
.carousel-btn                                       {width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,0.1); border:2px solid var(--wb_white); color:var(--wb_white); font-size:1.5rem; cursor:pointer; transition:all .3s;}
.carousel-btn:hover                                 {background:var(--wb_primary); border-color:var(--wb_primary);}
.carousel-btn.disabled                              {visibility:hidden; opacity:0; pointer-events:none;}
.carousel-wrapper                                   {overflow-x:auto; margin-top:20px;height:400px;  -ms-overflow-style: none; scrollbar-width: none;}
.carousel-wrapper::-webkit-scrollbar                {display: none; }
.carousel-track                                     {width: 15000px; height:400px; display: flex;}
.card-logo                                          {position:relative; margin-top:16px; margin-left:16px; width:80px; height:80px; background:rgba(255,255,255,0.9); border-radius:50%; padding:10px; display:flex; align-items:center; justify-content:center;}
.card-logo img                                      {width:100%; height:100%; object-fit:contain;}
.card-overlay                                       {position: relative; display: flex; flex-direction: column; height: 304px; background:linear-gradient(to top,rgba(0,0,0,0.9),transparent); padding:16px 16px; color:var(--wb_white);}
.card-overlay h3                                    {margin-top: auto; font-size:1.5rem; margin-bottom:0.5rem; font-weight:600;}
.card-overlay p                                     {min-height: 50px; font-size:0.95rem; color:var(--wb_business-light); margin:0;}
.carousel-dots                                      {display:flex; justify-content:center; gap:10px; margin-top:30px;}
.destiny-card                                       {display: block; overflow: hidden; -ms-overflow-style: none; scrollbar-width: none; height:400px; width: 320px ; margin-right: 20px; border-radius:16px 0 16px 0; background-size:cover; background-position:center; text-decoration: none; cursor: pointer;transform: scale(1);transform-origin: center;transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;will-change: transform;}
.destiny-card:hover                                 {box-shadow:0 20px 40px rgba(0,0,0,0.4);}
.destiny-card:hover, .destiny-card:focus-visible    {transform: scale(.97);box-shadow: 0 10px 30px rgba(0,0,0,.25);outline: none;}

/* opzionale: enfatizza il contenuto in hover */
.destiny-card .card-overlay                         {transition: transform .25s ease; }
.destiny-card:hover .card-overlay                   {transform: scale(1.02); }

/* Accessibilità: rispetta preferenza riduzione movimento */
@media (prefers-reduced-motion: reduce){
    .carousel-wrapper .destiny-card:hover::after,
    .carousel-wrapper .destiny-card:focus-visible::after{
        animation: none;
    }
}
/* Fallback per browser senza mask-composite */
@supports not ((mask-composite: exclude) or (-webkit-mask-composite: xor)){
    .carousel-wrapper .destiny-card::after{
        padding: 0;
        background: none;
        box-shadow: 0 0 0 3px rgba(54,169,225,.9) inset;
    }
}

/* 7 parole chiave */
.keywords-section                                               {background:var(--wb_white);padding:3rem 0;min-height:620px;}
.keywords-container                                             {max-width:80%;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1.25fr;gap:4rem;align-items:center;}
/* ====== COLONNA SINISTRA ====== */
.keywords-left                                                  {overflow:visible;}
.keywords-list                                                  {list-style:none;margin:0;padding:0;display:grid;gap:24px;overflow:visible;}
.keyword                                                        {background:transparent;position:relative;box-shadow:none;padding:1rem;cursor:pointer;outline:none;text-transform:uppercase;color:var(--wb_primary);font-weight:800;letter-spacing:.5px;font-size:clamp(1.1rem,2.2vw,2rem);line-height:1;transform-origin:left center;transform:translateX(0) scale(1);transition:color .2s ease,transform .28s ease,box-shadow .28s ease;will-change:transform;z-index:1;}
/* stato attivo/hover: ingrandisce molto e si sposta a SINISTRA */
.keyword:hover,.keyword:focus-visible,.keyword.is-active        {color:var(--wb_mental);background-color:transparent;box-shadow:none;transform:translateX(24px) scale(1.5);z-index:3;}
/* opzionale: leggera ombra quando “spinge” a sinistra */
.keyword:hover,.keyword:focus-visible                           {background-color:transparent;}

/* Keywords slider */
.keywords-right                                                 {position:relative;}
.keywords-slider                                                {position:relative;min-height:420px;transition:height .28s ease;overflow:visible;}
.keyword-pane                                                   {position:absolute;inset:0;opacity:0;visibility:hidden;transform:translateX(16px);transition:opacity .32s ease,transform .32s ease,visibility 0s linear .32s;}
.keyword-pane.is-active                                         {opacity:1;visibility:visible;transform:translateX(0);transition:opacity .36s ease,transform .36s ease,visibility 0s;}
.keyword-pane h3                                                {margin:0 0 .6rem 0;color:var(--wb_primary);font-weight:800;font-size:clamp(1.4rem,2.4vw,2.2rem);}
.keyword-pane p                                                 {color:var(--wb_black);line-height:1.65;margin:.5rem 0;}
.keyword-pane p strong                                          {color:var(--wb_mental);}

/* 7 parole chiave > Media Query */
@media (prefers-reduced-motion:reduce){
    .keyword,.keyword-pane                                      {transition:none;}}
@media (max-width:992px){
    .keywords-container                                         {grid-template-columns:1fr;gap:24px;padding-inline:16px;}
    .keywords-list-style-type                                   {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
    .keyword                                                    {width:100%;text-align:center;font-size:clamp(.9rem,3.6vw,1.05rem);padding:12px 10px;border-radius:16px 0;border:1px solid #e6e6e6;background:var(--wb_white);transform:none;}
    .keyword:hover,.keyword:focus-visible,.keyword.is-active    {color:var(--wb_mental);border-color:color-mix(in srgb,var(--wb_mental) 35%,#e6e6e6);transform:scale(1.00);}
    .keywords-slider{min-height:0;}
    .keywords-list{gap:8px;}
}

/* Mental Sport */
/* Sezione con background fisso */
.sport-coach-section                                            {position:relative;background-image:url('../img/mental-coach-degli-sportivi-home.jpg');background-size:cover;background-position:center;background-repeat:no-repeat;padding:2.5rem;color:var(--wb_white);}
.sport-coach-overlay                                            {position:absolute;inset:0;background:radial-gradient(80% 60% at 20% 30%,rgba(0,0,0,.55) 0%,rgba(0,0,0,.25) 60%,rgba(0,0,0,.15) 100%);pointer-events:none;}
.sport-coach-container                                          {position:relative;z-index:1;max-width:80%;margin:0 auto;padding:24px;display:grid;grid-template-columns:1.1fr 1fr;gap:40px 48px;align-items:end;}

/* Hero text Mental Sport */
.sport-hero-copy                                                {grid-column:1/2;align-self:start;max-width:560px;}
.sport-title                                                    {font-size:clamp(2rem,5vw,3.4rem);font-weight:800;line-height:1.1;margin:0 0 .6rem;}
.sport-subtitle                                                 {font-size:clamp(1rem,1.6vw,1.15rem);opacity:.95;margin:0 0 1rem;}

/* Frasi Mental Sport */
.sport-quote                                                    {grid-column:2/3;align-self:start;background:rgba(0,0,0,.35);backdrop-filter:blur(2px);border-radius:24px 0;padding:24px;}
.sport-quote p                                                  {font-size:clamp(1.1rem,2vw,1.3rem);margin:0 0 .5rem;}
.sport-author strong                                            {display:block;font-size:1rem;}
.sport-author span                                              {display:block;opacity:.85;font-size:.95rem;}

/* Miniature Mental Sport  */
.athletes-row                                                   {grid-column:1/-1;display:flex;gap:24px;align-items:flex-start;min-height:fit-content;justify-content:center;margin-top:24px;overflow:visible;}
.athlete                                                        {appearance:none;background:rgba(0,0,0,.35);border:0;border-radius:24px 0;color:var(--wb_white);text-align:center;padding:16px;width:260px;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease,background .2s ease;}
.athlete:hover                                                  {transform:translateY(-4px);background:rgba(0,0,0,.45);}
.athlete.is-active                                              {box-shadow:0 10px 30px rgba(0,0,0,.35);background:rgba(0,0,0,.55);}
.athlete img                                                    {width:140px;height:140px;object-fit:contain;border-radius:50% !important;border:6px solid rgba(255,255,255,.85);display:block;margin:0 auto 12px;}
.ath-name                                                       {display:block;font-weight:700;margin-bottom:6px;}
.ath-role                                                       {display:block;font-size:.92rem;opacity:.9;}

/* Media Query Mental Sport */
@media (max-width:991.98px){
    .sport-coach-section                                        {padding:56px 0 28px;background-attachment:scroll;}
    .sport-coach-container                                      {grid-template-columns:1fr;gap:16px;padding:0;align-items:start;max-width:100%;}
    .sport-hero-copy                                            {max-width:none;text-align:center;}
    .sport-title                                                {font-size:clamp(1.7rem,8vw,2.2rem);}
    .sport-subtitle                                             {font-size:clamp(.95rem,4vw,1.05rem);}
    .btn-gradient                                               {display:inline-block;margin-left:auto;margin-right:auto;}
    .sport-quote                                                {grid-column:1;text-align:center;max-width:80%;margin: 0 auto;}
    .athletes-row                                               {justify-content:flex-start;gap:16px;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:8px;margin:6px -8px 0;padding-inline:8px;}
    .athlete                                                    {flex:0 0 auto;width:220px;min-height:220px;scroll-snap-align:center;background:rgba(0,0,0,.45);}
    .athlete img                                                {width:110px;height:110px;border-width:5px;}
    .ath-name,.ath-role                                         {text-align:center;}
    .athlete:first-child                                        {margin-left:10px;}
    .athlete:last-child                                         {margin-right:10px;}
}

/* accessibilità */
.athlete:focus-visible                                          {outline:2px solid var(--wb_mental);outline-offset:3px;}
@media (prefers-reduced-motion:reduce){
    .athlete,.sport-quote                                     {transition:none;}}
/* Bio pre footer */
.bio-spotlight                                                  {background:var(--wb_black);color:var(--wb_white);padding:2.4rem 0;}
.bio-wrap                                                       {max-width:80%;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:center;}
/* Colonna testo destra */
.bio-title                                                      {font-size:clamp(2rem,5.2vw,3.4rem);font-weight:800;line-height:1.1;margin:0 0 .4rem;}
.bio-subtitle                                                   {color:#36a9e1;font-size:clamp(1.05rem,1.6vw,1.25rem);margin:0 0 1rem;font-weight:700;}
.bio-text                                                       {font-size:clamp(1rem,1.3vw,1.1rem);line-height:1.7;opacity:.95;margin:.6rem 0;}
/* Colonna Slider sinistra */
.bio-right                                                      {display:grid;gap:20px;justify-items:center;}
.bio-photo-wrap                                                 {position:relative;display:grid;grid-template-columns:auto 1fr auto;min-height:280px;align-items:center;gap:12px;}
.nav-arrow                                                      {appearance:none;border:0;background:rgba(255,255,255,.12);color:var(--wb_white);font-size:36px;line-height:1;width:42px;height:42px;border-radius:50%;cursor:pointer;display:grid;place-items:center;transition:background .2s ease,transform .2s ease;}
.nav-arrow:hover                                                {background:rgba(255,255,255,.2);transform:translateY(-1px);}
/* Foto grande circolare con bordo bianco e gradiente interno */
.bio-photo                                                      {--ring:8px;width:min(520px,38vw);aspect-ratio:1/1;margin:0;position:relative;border-radius:50%;padding:var(--ring);background:var(--wb_white);box-shadow:0 10px 40px rgba(0,0,0,.5);overflow:hidden;}
.bio-photo::before                                              {content:"";position:absolute;inset:var(--ring);border-radius:50%;background:linear-gradient(135deg,#f2a31a 0%,#33c0ff 100%);z-index:0;}
.bio-photo img                                                  {position:relative;z-index:1;width:100%;height:100%;object-fit:contain;border-radius:50%;display:block;}
#bioMain                                                        {width:min(520px,45vw);aspect-ratio:1/1;margin:0;position:relative;border-radius:50%;background:var(--wb_white);box-shadow:0 10px 40px rgba(0,0,0,.5);overflow:hidden;border:8px solid #fff;}
/* Miniature */
.bio-thumbs img                                                 { width: 100%; height: 100%; object-fit: contain; aspect-ratio: 1 / 1; border-radius: 50%; display: block; transform: rotate(0deg); background: #000;}
.bio-thumbs                                                     {display:flex;gap:18px;align-items:center;justify-content:center;overflow:visible;}
.thumb                                                          {appearance:none;border:0;background:transparent;cursor:pointer;width:108px;height:108px;border-radius:50%;padding:5px;box-shadow:0 0 0 3px var(--wb_white) inset;transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease;}
.thumb img                                                      {width:100%;height:100%;border-radius:50%;object-fit:contain;display:block;}
.thumb:hover                                                    {transform:translateY(-2px);}
.thumb.is-active                                                {box-shadow:0 0 0 3px var(--wb_white) inset,0 0 0 4px var(--wb_mental);outline-offset:3px;}
.form__input                                                    {width:100%;height:44px;border-radius:16px 0;border:1px solid #e6e6e6;background:var(--wb_white);color:var(--wb_black);padding:0 .9rem;outline:none;}
.form__input:focus                                              {border-color:var(--wb_mental);box-shadow:0 0 0 3px rgba(54,169,225,.2);}
.form__btn                                                      {height:44px;border-radius:16px 0;border:0;}
.form__check                                                    {display:flex;align-items:center;gap:.5rem;font-size:.9rem;opacity:.9;}
/* Media Query Bio home */
@media (max-width:767.98px){
    .bio-spotlight                                              {padding:16px 0;}
    .bio-wrap                                                   {grid-template-columns:1fr;gap:12px;padding:0 12px;justify-items:center;text-align:center;}
    /* Titoli e paragrafi molto più piccoli */
    .bio-title{font-size:clamp(1.6rem,8vw,1.8rem);margin-bottom:.25rem;}
    .bio-subtitle{font-size:clamp(.9rem,3.8vw,1rem);margin-bottom:.5rem;}
    .bio-text{font-size:clamp(.8rem,3.6vw,.95rem);line-height:1.55;margin:.4rem 0;}
    /* Foto grande compatta */
    .bio-photo{width:min(240px,50vw);--ring:4px;}
    /* Frecce più piccole e ravvicinate */
    .nav-arrow{width:24px;height:24px;font-size:24px;}
    /* Thumbs su un rigo piccolo, scrollabile */
    .bio-thumbs{gap:16px;margin:6px;padding:6px;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;}
    .thumb{flex:0 0 auto;width:64px;height:64px;padding:3px;scroll-snap-align:center;}
    .thumb.is-active{box-shadow:0 0 0 2px var(--wb_white) inset,0 0 0 4px var(--wb_mental);outline-offset:3px;}
    /* CTA centrata */
    .bio-left .btn-gradient{margin-top:.4rem;}
}

/* XS ultra-compact (telefoni molto piccoli) */
@media (max-width:479.98px){
    .bio-title{font-size:clamp(1.3rem,8.5vw,1.6rem);}
    .bio-subtitle{font-size:.9rem;}
    .bio-text{font-size:.86rem; }
}

/* Mantieni proporzione e visibilità anche su WebKit mobile */
@supports (-webkit-touch-callout: none) {
    .bio-thumbs img {
        max-width: none;
        max-height: none;
    }
}

/* 02 CHI SONO */
.about-hero                                 {background:var(--wb_black);padding:2rem 0;}
.about-hero__frame                          {border-radius:24px 0;overflow:hidden;box-shadow:0 10px 36px rgba(0,0,0,.5)}
.about-hero__video                          {display:block;width:100%;aspect-ratio:16/9;background:var(--wb_black);object-fit:cover}
.about-heading                              {background:var(--wb_black);color:var(--wb_white);padding:18px 0 8px;text-align:center}
.about-title                                {font-size:clamp(2rem,4.5vw,3rem);font-weight:800;margin:0 0 .25rem}
.about-subtitle                             {opacity:.95;margin:0;font-size:clamp(1rem,2.2vw,1.2rem);color:#36a9e1;font-weight:700}
.about-intro                                {color:var(--wb_life);font-size:clamp(1rem,2.2vw,1.2rem)}
.about                                      {background:var(--wb_black);color:#dfe6ee;padding:8px 0 24px}
.about .container                           {max-width:100%}
.about-grid                                 {width:min(80vw,1200px);margin:0 auto}
.about-col                                  {max-width:none;text-align:center}
.about-col p                                {margin:.7rem 0;line-height:1.7}
.about-strip                                {background:var(--wb_black);padding:8px 0 18px}
.about-strip__row                           {display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.about-strip__row img                       {width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:18px 0;display:block;box-shadow:0 8px 24px rgba(0,0,0,.45)}
.about-cta                                  {background:var(--wb_black);color:#dfe6ee;padding:12px 0 22px}
.about-cta p                                {margin:0 auto;max-width:900px;text-align:center;line-height:1.7}
.about-cta a.hl                             {color:#19c3d6;text-decoration:none;font-weight:800}
.about-cta a.hl:hover                       {color:var(--wb_mental)}
.zoomable                                   {position:relative;display:block;cursor:zoom-in;transform:translateZ(0);transition:transform .35s,box-shadow .35s}
.zoomable:hover                             {transform:scale(1.03);box-shadow:0 14px 40px rgba(0,0,0,.4)}
.zoomable::after                            {content:"";position:absolute;inset:0;pointer-events:none;border-radius:inherit;background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.18) 20%,transparent 40%);transform:translateX(-120%);transition:transform .6s;mix-blend-mode:screen}
.zoomable:hover::after                      {transform:translateX(120%)}

/* === LIGHTBOX CON NAVIGAZIONE === */
.lb                                         {position:fixed;inset:0;display:none;place-items:center;z-index:9999;background:rgba(0,0,0,.9);padding:clamp(10px,4vw,24px);animation:fadeIn .3s ease}
.lb.is-open                                 {display:grid}
.lb__img                                    {max-width:min(1200px,92vw);max-height:84vh;width:auto;height:auto;border-radius:14px;box-shadow:0 20px 60px rgba(0,0,0,.6);transition:transform .3s}
.lb__cap                                    {color:var(--wb_white);opacity:.9;margin-top:12px;text-align:center;max-width:min(1000px,90vw)}
.lb__close                                  {position:absolute;top:5%;right:4%;width:44px;height:44px;border-radius:12px;border:0;background:rgba(255,255,255,.12);color:var(--wb_white);font-size:28px;display:grid;place-items:center;cursor:pointer;transition:background .3s}
.lb__close:hover                            {background:rgba(255,255,255,.25)}
.lb__arrow                                  {position:absolute;top:50%;transform:translateY(-50%);font-size:2.2rem;color:var(--wb_white);background:rgba(255,255,255,.15);width:52px;height:52px;display:grid;place-items:center;border-radius:50%;cursor:pointer;user-select:none;transition:background .3s}
.lb__arrow:hover                            {background:rgba(255,255,255,.3)}
.lb__prev                                   {left:3%}
.lb__next                                   {right:3%}
@keyframes fadeIn                           {from{opacity:0}to{opacity:1}}
.lb.is-open .lb__img                        {animation:zoomIn .4s ease}
@keyframes zoomIn                           {from{transform:scale(.95);opacity:.5}to{transform:scale(1);opacity:1}}

/* Mobile */
@media(max-width:991.98px){
    .about-grid                             {grid-template-columns:1fr;gap:12px}.about-figure img{max-height:60vh}.about-strip__row{grid-template-columns:repeat(2,1fr);gap:10px}}
@media(max-width:575.98px){
    .about-strip__row                       {grid-template-columns:repeat(2,1fr)}.about-strip__row img{border-radius:14px 0}}
@media(prefers-reduced-motion:reduce){
    .zoomable,.zoomable::after              {transition:none}}

/* 03. COACHING ACADEMY SECTION */
.cca-hero                                       {position:relative;background:var(--wb_dark);color:var(--wb_white);padding:24px 0}
.cca-hero .row                                  {min-height:60vh;align-items:center}

/* Colonna sinistra */
.cca-left                               {padding:0 1rem}
.cca-badge                              {display:inline-flex;align-items:center;gap:.5rem;margin-bottom:.6rem}
.cca-logo                               {width:48px;height:48px;display:grid;place-items:center;border-radius:50%}
.cca-logo img                           {width:100%;height:100%;object-fit:contain;display:block}

/* Rotazione logo */
@keyframes spinOnce                     {to{transform:rotate(1turn)}}
.spin-hover:hover                       {animation:spinOnce .9s ease}

/* ===== HERO VIDEO RESPONSIVE FIX (Compatto) ===== */
.cca-right{display:flex;justify-content:flex-end;align-items:center}
.cca-thumb{position:relative;cursor:pointer;border-radius:24px 0;overflow:hidden;box-shadow:0 10px 36px rgba(0,0,0,.5);width:100%;max-width:620px;aspect-ratio:16/9;transition:transform .3s}
.cca-thumb video{width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.cca-thumb:hover{transform:scale(1.02)}
.play-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.22);pointer-events:none}
.play-overlay i{font-size:3.4rem;color:#fff;opacity:.8;transition:transform .3s,opacity .3s}
.cca-thumb:hover .play-overlay i{transform:scale(1.08);opacity:1}
.cca-thumb::after                       {content:"";position:absolute;inset:0;border-radius:inherit;padding:2px;background:linear-gradient(120deg,var(--wb_primary),var(--wb_secondary),var(--wb_life),var(--wb_mental),var(--wb_sport));background-size:300% 300%;animation:ccaGlow 6s linear infinite;-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
@keyframes ccaGlow                      {0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}

/* Cornice gradiente animata */
.cca-thumb::after                       {content:"";position:absolute;inset:0;border-radius:inherit;padding:2px;
    background:linear-gradient(120deg,var(--wb_primary),var(--wb_secondary),var(--wb_life),var(--wb_mental),var(--wb_sport));
    background-size:300% 300%;animation:ccaGlow 6s linear infinite;
    -webkit-mask:linear-gradient(var(--wb_black) 0 0) content-box,linear-gradient(var(--wb_dark) 0 0);
    -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
@keyframes ccaGlow                      {0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@supports not ((mask-composite:exclude) or (-webkit-mask-composite:xor)){
    .cca-thumb::after{padding:0;box-shadow:0 0 0 3px rgba(54,169,225,.9) inset;animation:none}
}

/* ==================== INTRO ACCADEMY: LOGO + TESTO ==================== */
.cca-info                                   {background:var(--wb_white);padding:42px 0;color:var(--wb_black)}
.cca-info-grid                              {display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:center;margin:0 auto}
.cca-info-logo                              {display:flex;justify-content:center;align-items:center;text-align:center;}
.cca-info-logo img                          {width:min(300px,30vw);height:auto;display:block;filter:drop-shadow(0 6px 18px rgba(0,0,0,.18))}
.cca-info-title                             {color:var(--wb_academy);font-size:var(--scale-h3);margin-bottom:.55rem;font-weight:500;line-height:1.1;}
.cca-info-text p                            {font-size:1.1rem; line-height:1.5;color:var(--wb_dark)}
#benefici                                   {scroll-margin-top: 90px;}
/* ==================== BENEFITS + PERCORSI ==================== */
.ico                                        {width:64px;height:64px;display:inline-block;border-radius:50%;background:#111 center/60% no-repeat;background-image:var(--ico);box-shadow:0 0 0 2px rgba(255,255,255,.1) inset}
.cca-b-ul li                                {display:grid;grid-template-columns:64px 1fr;gap:16px;align-items:center}

.cca-benefits                               {background:#000;padding:60px 0;color:#eaf1f7;text-align:left}
.cca-benefits-grid                          {display:grid;grid-template-columns:1.15fr .85fr;gap:36px;max-width:1200px;margin:0 auto;align-items:center}
.cca-b-title                                {color:#fff;font-weight:700;font-size:clamp(1.6rem,3.6vw,2.4rem);margin-bottom:18px}
.cca-b-ul                                   {list-style:none;margin:0 0 20px;padding:0;display:grid;gap:18px}
.cca-b-ul p                                 {line-height:1.6;margin:0;color:#eaf1f7}
.cca-b-highlight                            {position:relative;margin-top:12px;line-height:1.7;color:#19c3d6;max-width:52ch}
.cca-b-highlight .bar                       {display:inline-block;width:4px;height:100%;background:#19c3d6;border-radius:2px;position:absolute;left:-12px;top:0}
.cca-cards                                  {display:grid;gap:24px}
.cca-card                                   {display:flex;align-items:center;justify-content:center;min-height:116px;border-radius:24px 0;font-weight:700;font-size:clamp(1rem,2.2vw,1.3rem);text-transform:uppercase;text-align:center;color:#fff;text-decoration:none;box-shadow:0 8px 24px rgba(0,0,0,.35);transition:transform .25s ease,box-shadow .25s ease,filter .25s ease}
.cca-card:hover                             {transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.45);filter:saturate(1.1)}
.cca-card-life                              {background:linear-gradient(90deg,#007ea6 0%,#029fc3 45%,#06495b 100%)}
.cca-card-sport                             {background:linear-gradient(90deg,#f0a22a 0%,#bf7a1f 50%,#7c4b10 100%)}
.cca-card-business                          {background:linear-gradient(90deg,var(--wb_business) 0%,#029fc3 45%,var(--wb_primary) 100%)}
.cca-card span                              {position:relative;z-index:2}
/*
.cca-card::after                            {content:"";position:absolute;inset:0;border-radius:inherit;opacity:0;transition:opacity .3s,box-shadow .3s;box-shadow:0 0 20px rgba(255,255,255,.4) inset}
.cca-card:hover::after                      {opacity:.25}
*/

/* === MOBILE: BENEFITS + PERCORSI === */
@media(max-width:991px){
    .cca-benefits                           {text-align:center;padding:3rem 1rem!important}
    .cca-benefits-grid                      {display:flex;flex-direction:column;align-items:center;gap:2.5rem}
    .cca-b-list                             {max-width:680px;width:100%}
    .cca-b-title                            {font-size:1.8rem;margin-bottom:1.5rem;text-align:center}
    .cca-b-ul                               {gap:1.5rem}
    .cca-b-ul li                            {grid-template-columns:1fr;gap:.8rem;justify-items:center;text-align:center}
    .ico                                    {margin:0 auto 0.5rem auto;width:72px;height:72px;background-size:50%}
    .cca-b-ul p                             {font-size:1rem;line-height:1.6;margin:0 auto;max-width:40ch}
    .cca-b-highlight                        {max-width:90%;margin:2rem auto 0 auto;text-align:center;padding-left:0}
    .cca-b-highlight .bar                   {display:none}
    .cca-cards                              {width:100%;max-width:500px;display:flex;flex-direction:column;align-items:center;gap:1.5rem}
    .cca-card                               {width:100%;max-width:360px;margin:0 auto;font-size:1.1rem;min-height:100px;border-radius:24px 0}
}

/* ======== CARD VANTAGGI (multi-tema) ======== */
.cca-card-vantaggi                          {position:relative;background:var(--grad);border-radius:24px 0;padding:2rem 1.5rem;color:#fff;text-align:left;display:flex;flex-direction:column;justify-content:start;min-height:280px;transition:.3s;overflow:hidden}
.cca-card-vantaggi:hover                    {transform:translateY(-5px);box-shadow:0 8px 22px rgba(0,0,0,.4)}
.cca-card-vantaggi .num                     {position:absolute;bottom:1rem;right:1.2rem;font-size:5rem;font-weight:800;color:rgba(255,255,255,.18);line-height:1;pointer-events:none;user-select:none}
.cca-card-vantaggi p                        {position:relative;z-index:2;font-size:1rem;line-height:1.5}

/* --- Temi --- */
.theme-life                                 {--grad:linear-gradient(135deg,#029fc3,#007ea6,#06495b)}
.theme-sport                                {--grad:linear-gradient(135deg,#f0a22a,#bf7a1f,#7c4b10)}
.theme-business                             {--grad:linear-gradient(135deg,#0072ff,#6cacea,#144072)}

/* --- Responsive --- */
@media(max-width:991px){
    .cca-card-vantaggi                      {text-align:center;min-height:220px;padding:1.5rem}
    .cca-card-vantaggi .num                 {position:static;margin-bottom:.5rem;font-size:3rem}
    .cca-card-vantaggi p                    {font-size:.95rem}
}

/* ======== THEME MENTAL ======== */
.theme-mental                               {--cca-color:var(--wb_secondary);}
.cca-card-mental                            {background:linear-gradient(135deg,var(--wb_secondary),var(--wb_primary));border-radius:24px 0;color:#fff;min-height:280px;display:flex;flex-direction:column;justify-content:space-between;padding:2rem 1.5rem;transition:.3s;position:relative;overflow:hidden;text-align:left;}
.cca-card-mental:hover                      {transform:translateY(-6px);box-shadow:0 8px 20px rgba(0,0,0,.3);}
.cca-card-mental .num                       {position:absolute;bottom:1rem;left:1.5rem;font-size:5rem;font-weight:700;color:rgba(255,255,255,.25);line-height:1;pointer-events:none;}
@media(max-width:767px){
    .cca-card-mental                        {text-align:center;min-height:auto;padding:1.5rem;}.cca-card-mental .num{position:static;font-size:3.5rem;margin-bottom:.5rem;}}
    .text-mental                            {color:var(--wb_secondary);}


/* ====== AL TERMINE SARAI IN GRADO DI ====== */
.fw-bold-life                               { font-size: 3rem; font-weight: 700; color: var(--wb_academy) !important;}
.fw-bold-sport                              { font-size: 3rem;font-weight: 700; color: var(--wb_sport) !important ; }
.fw-bold-business                           { font-size: 3rem;font-weight: 700; color: var(--wb_business) !important ; }
.fw-bold-mental                             { font-size: 3rem;font-weight: 700; color: var(--wb_mental) !important ; }
.cca-skill                                  {display:flex;align-items:flex-start;gap:1.2rem;margin-bottom:1.5rem;text-align:left}
.skill-icon                                 {width:80px;height:80px;flex-shrink:0;object-fit:contain;filter:drop-shadow(0 2px 4px rgba(0,0,0,.15))}
.cca-skill p                                {font-size:1.25rem;line-height:1.5;color:var(--wb_dark);margin:0}
.cca-box-right                              {background:linear-gradient(135deg,#007ea6,#029fc3);border-radius:24px 0;color:#fff;min-height:100%;box-shadow:0 8px 20px rgba(0,0,0,.25);transition:.3s}
.cca-box-right-sport                        {background:var(--wb_sport-gradient);border-radius:24px 0;color:#fff;min-height:100%;box-shadow:0 8px 20px rgba(0,0,0,.25);transition:.3s}
.cca-box-right-business                     {background:var(--wb_business-gradient);border-radius:24px 0;color:#fff;min-height:100%;box-shadow:0 8px 20px rgba(0,0,0,.25);transition:.3s}
.cca-box-right-mental                       {background:var(--wb_mental-gradient);border-radius:24px 0;color:#fff;min-height:100%;box-shadow:0 8px 20px rgba(0,0,0,.25);transition:.3s}
.cca-box-right:hover                        {transform:translateY(-4px);box-shadow:0 10px 28px rgba(0,0,0,.3)}
.cca-box-right h3                           {font-size:1.4rem;color:#fff}
.cca-box-right p                            {font-size:1rem;line-height:1.6;color:var(--wb_white);margin:2rem 0;}

@media(max-width:991px){
    .cca-skill                              {flex-direction:column;align-items:center;text-align:center}
    .skill-icon                             {width:64px;height:64px;margin-bottom:.75rem;margin-left: auto;margin-right:auto;}
    .cca-skill p                            {font-size:1.05rem;line-height:1.6;max-width:36ch}
    .cca-box-right                          {margin-top:2rem;text-align:center;padding:1.5rem}
    .cca-box-right h3                       {font-size:1.25rem}
    .cca-box-right p                        {font-size:.9rem}
}

/* ====== DOCENTI SECTION ====== */
.cca-docente-card-life,
.cca-docente-card-sport,
.cca-docente-card-business                  {background:var(--wb_life-gradient);border-radius:24px 0;padding:0.75rem;display:flex;align-items:center;gap:0.75rem;width:100%; height:auto; transition:.3s;min-height:260px}
.cca-docente-card-sport                     {background:var(--wb_sport-gradient)}
.cca-docente-card-business                  {background:var(--wb_business-gradient)}
.cca-docente-card-life:hover,
.cca-docente-card-sport:hover,
.cca-docente-card-business:hover            {transform:translateY(-6px);box-shadow:0 8px 22px rgba(0,0,0,.35)}
.docente-img                                {width:120px;height:180px;border-radius:24px 0;object-fit:cover;flex-shrink:0;border:2px solid rgba(255,255,255,.3)}
.docente-info                               {display:flex;flex-direction:column;justify-content:center;height:100%}
.docente-info p                             {font-size:0.9rem;line-height:1.3;margin:0}

/* === Allineamento testi & icone === */
.cca-hero,.cca-info,.cca-benefits,.cca-section{color:#fff;text-align:left; align-items: center;}
.cca-b-ul li{display:grid;grid-template-columns:64px 1fr;gap:16px;align-items:center}
.ico{width:64px;height:64px;display:inline-block;border-radius:50%;background:#111 center/60% no-repeat;background-image:var(--ico);box-shadow:0 0 0 2px rgba(255,255,255,.1) inset}

/* === Video Hero uniformi === */
.cca-right{display:flex;justify-content:flex-end;align-items:center}
.cca-thumb{position:relative;cursor:pointer;border-radius:24px 0;overflow:hidden;box-shadow:0 10px 36px rgba(0,0,0,.5);width:100%;max-width:620px;aspect-ratio:16/9;transition:transform .3s}
.cca-thumb video{width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.cca-thumb:hover{transform:scale(1.02)}
.play-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.22);pointer-events:none}
.play-overlay i{font-size:3.4rem;color:#fff;opacity:.8;transition:transform .3s,opacity .3s}
.cca-thumb:hover .play-overlay i{transform:scale(1.08);opacity:1}

/* === Docenti centrati verticalmente === */
.cca-docenti-row{display:flex;align-items:center;min-height:80vh}
.cca-docenti-text{display:flex;flex-direction:column;justify-content:center; height:100%;}
.cca-section h2{margin-bottom:1.5rem!important;line-height:1.25}

/* === Mobile ottimizzato === */
@media(max-width:991px){
    .cca-hero,.cca-info,.cca-benefits,.cca-section  {text-align:center!important;padding:2rem 1rem!important}
    .cca-right                                      {justify-content:center;align-items:center;padding:1rem}
    .cca-thumb                                      {width:100%;max-width:680px;margin:0 auto;aspect-ratio:16/9;border-radius:24px 0;box-shadow:0 8px 20px rgba(0,0,0,.45)}
    .play-overlay i                                 {font-size:3rem}
    .cca-b-ul li                                    {grid-template-columns:1fr;gap:.8rem;justify-items:center;text-align:center}
    .ico                                            {margin:0 auto .5rem;width:72px;height:72px;background-size:50%}
    .cca-docenti-row                                {flex-direction:column;min-height:auto}
    .cca-docenti-text                               {align-items:center;text-align:center}
    .ico                                            {margin:0 auto .5rem;width:72px;height:72px;background-size:50%}
    .cca-docenti-row                                {flex-direction:column;min-height:auto}
    .cca-docenti-text                               {align-items:center;text-align:center}
    .cca-hero                                       {text-align:center;padding:2rem 0!important}
    .cca-right                                      {display:flex;justify-content:center;align-items:center;padding:1rem}
    .cca-thumb                                      {width:100%;max-width:680px;aspect-ratio:16/9;border-radius:24px 0;overflow:hidden;margin:0 auto}
    .cca-thumb video                                {width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
    .play-overlay i                                 {font-size:3rem;opacity:.85}
    .cca-docente-card-life                          { max-height: 220px !important;}

    /* INTRO */
    .cca-info-grid                                  {grid-template-columns:1fr;gap:24px;text-align:center}
    .cca-info-logo img                              {width:min(280px,60vw);margin:auto}

    /* BENEFITS */
    .cca-b-ul                                       {justify-items:center}
    .cca-b-ul li                                    {grid-template-columns:1fr;gap:10px}
    .ico                                            {margin:0 auto 8px}
    .cca-b-highlight                                {max-width:none;text-align:center;padding:0}
    .cca-b-highlight .bar                           {display:none}
    .cca-cards .cca-card                            {min-height:96px}
}

/* 04. MENTAL CLUB */
/* Hero + Video */
.mental-hero                                        {position:relative;padding:6rem 0;background:var(--wb_white);color:var(--wb_black);overflow:hidden}
.mental-hero .overlay                               {position:absolute;inset:0;background:radial-gradient(circle at top left,rgba(255,255,255,.15),transparent 70%);z-index:0}
.mental-hero .container                             {position:relative;z-index:1}
.hero-video-wrapper                                 {position:relative;cursor:pointer;border-radius:24px 0;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.45);transition:.35s}
.hero-video-wrapper::after                          {content:"";position:absolute;inset:0;border-radius:inherit;padding:3px;background:linear-gradient(135deg,#ff4da6,#b30089,#ff4da6);background-size:200% 200%;mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask-composite:exclude;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;pointer-events:none;opacity:0;transition:opacity .4s ease}
.hero-video-wrapper:hover::after                    {opacity:1;animation:borderLight 3s linear infinite}
@keyframes borderLight                              {0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@supports not ((mask-composite:exclude) or (-webkit-mask-composite:xor)){.hero-video-wrapper::after{padding:0;box-shadow:0 0 0 3px rgba(255,77,166,.8) inset;background:none;animation:none}}
.hero-video-wrapper:hover                           {transform:scale(1.02);box-shadow:0 10px 28px rgba(0,0,0,.55)}
.hero-video-wrapper video                           {width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.video-overlay                                      {position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.3);pointer-events:none;transition:.3s}
.video-overlay i                                    {font-size:3.8rem;color:#fff;opacity:.85;transition:.3s}
.hero-video-wrapper:hover .video-overlay i          {transform:scale(1.08);opacity:1}

/* === CTA BUTTON === */
.btn-gradient-mental                                {background:linear-gradient(135deg,#ff4da6,#b30089);color:#fff;border:none;padding:.8rem 2rem;border-radius:16px 0;font-weight:600;text-decoration:none;transition:.3s;display:inline-block}
.btn-gradient-mental:hover                          {transform:translateY(-2px);opacity:.9;text-decoration:none;color:#fff}

/* === TOOLS === */
.mental-tools                                       {background:#000;color:#fff;padding:5rem 0}
.tool-card                                          {background:rgba(255,255,255,.03);border-radius:24px 0;padding:2rem 1rem;transition:.3s;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}
.tool-card i                                        {font-size:3rem;color:#ccc;margin-bottom:1rem;transition:.3s}
.tool-card h5                                       {font-size:1rem;font-weight:600;margin:0;color:#fff}
.tool-card:hover                                    {background:rgba(255,255,255,.1);transform:translateY(-5px)}
.tool-card:hover i                                  {color:var(--wb_mental)}
.mental-tools h2                                    {font-size:2rem;font-weight:700;margin-bottom:3rem}

/* === SEZIONI INTERNE === */
.mental-sections                                    {background:#000;color:#fff;padding:5rem 0}
.section-card                                       {display:flex;align-items:center;justify-content:center;min-height:240px;border-radius:30px 0;background:var(--card-color);color:#fff;text-decoration:none;font-size:1.5rem;font-weight:700;border:4px solid #fff;transition:.3s;box-shadow:0 6px 16px rgba(0,0,0,.3)}
.section-card:hover                                 {transform:translateY(-6px) scale(1.03);box-shadow:0 8px 22px rgba(0,0,0,.4)}
.section-card span                                  {text-transform:uppercase;letter-spacing:.05em}

/* === ACCADEMIA DELLE 12 INTELLIGENZE === */
.mental-intelligences                               {background:#fff}
.intelligence-card                                  {border-radius:24px 0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff;padding:2rem 1rem;min-height:220px;transition:.3s;box-shadow:0 4px 12px rgba(0,0,0,.15)}
.intelligence-card img                              {height:80px;margin-bottom:1rem;filter:brightness(0) invert(1)}
.intelligence-card h5                               {font-size:1rem;font-weight:600;line-height:1.4;margin:0}
.intelligence-card:hover                            {transform:translateY(-5px);box-shadow:0 6px 18px rgba(0,0,0,.25)}
.mental-intelligences h2                            {font-weight:700;font-size:2rem;margin-bottom:2rem}
.mental-intelligences p                             {font-size:1rem;color:#333}
.mental-intelligences .intelligence-card:hover img  {transform:scale(1.08)}

/* === MEMBERSHIP CARDS === */
.membership-plans .row                              {row-gap:1rem}
.plan-title                                         {font-weight:700;color:var(--wb_mental);letter-spacing:.05em}
.membership-card                                    {display:flex;flex-direction:column;justify-content:space-between;width:100%;height:100%;min-height:660px;background:#fff;border-radius:24px 0;box-shadow:0 6px 16px rgba(0,0,0,.1);padding:2rem;transition:.3s}
.membership-card:hover                              {transform:translateY(-5px);box-shadow:0 8px 22px rgba(0,0,0,.15)}
.membership-content                                 {text-align:left;flex:1}
.membership-content ul{padding-left:1rem;margin:0;text-align:left}
.membership-content li{color:#333;margin-bottom:.5rem;line-height:1.6;list-style:none}
.membership-content i{color:var(--wb_mental);margin-right:.4rem}
.membership-footer{text-align:center;margin-top:auto}
.btn-gradient-form{display:inline-block;border:none;border-radius:30px;background:linear-gradient(90deg,var(--wb_mental),var(--wb_life));color:#fff;font-weight:600;padding:.6rem 1.5rem;transition:.3s;text-decoration:none}
.btn-gradient-form:hover{opacity:.9;transform:translateY(-2px)}
.border-basic{border:2px solid #E91E63}
.border-medium{border:2px solid #00B4D8}
.border-advanced{border:2px solid #A64AC9}
.border-elite{border:2px solid gold}

/* === CARD ELITE (GOLD STYLE) === */
.gold-style{background:linear-gradient(135deg,#f7e68f,#f1c94b,#f9e98a);border:2px solid rgba(255,215,0,.7);border-radius:24px 0;box-shadow:0 0 25px rgba(255,215,0,.3);position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:space-between;transition:all .4s ease}
.gold-style::before{content:"";position:absolute;inset:0;border-radius:24px 0;padding:2px;background:linear-gradient(90deg,#ffea70,#fff9c4,#ffec8b,#fff9c4);background-size:300% 300%;animation:shineGold 4s linear infinite;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude}
@keyframes shineGold{0%{background-position:0% 50%}100%{background-position:100% 50%}}
.gold-style {color:#000;font-weight:700}
.gold-style li{color:#222}
.gold-style .membership-content,.gold-style .membership-footer{position:relative;z-index:1}
.gold-style .btn-gradient-form{position:relative;z-index:2;cursor:pointer}

/* === CARD VANTAGGI === */
.membership-card-vantaggi{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;width:100%;padding:2rem}
.border-advantages{background:#fff;border-radius:24px 0;box-shadow:0 6px 14px rgba(0,0,0,.08);max-width:1220px;margin:0 auto;padding:2.5rem 2rem}
.membership-card-vantaggi h2{text-align:center;font-size:2rem;margin-bottom:2rem}
.membership-card-vantaggi p{max-width:800px;margin:0 auto 2rem;font-size:1rem;color:#333;line-height:1.6}

/* Grid: 4 colonne desktop, 2 mobile (con override sicuro) */
.vantaggi-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:1.25rem;justify-items:center;align-items:stretch;margin-top:2rem;width:100%}

/* Card interne uniformi */
.vantaggio-item{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;text-align:center;color:#333;background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:16px;padding:2rem;width:100%;height:100%}
.vantaggio-item i{font-size:3rem;color:var(--wb_mental);}
.vantaggio-item span{font-weight: bold; color:var(--wb_black); font-size:1.2rem;line-height:1.4;max-width:220px}

/* Mobile ≤991px: 2 colonne */
@media(max-width:991px){
    .membership-card-vantaggi{padding:2rem 1rem}
    .border-advantages{padding:2rem 1rem}
    .vantaggi-grid{grid-template-columns:repeat(2,1fr)!important;gap:1rem}
    .vantaggio-item span{font-size:.9rem}
}

/* === CTA Membership === */
.btn-gradient-form                                  {background:linear-gradient(135deg,var(--wb_mental),var(--wb_secondary));color:var(--wb_white);border:none;
    border-radius:24px 0;padding:.7rem 1.8rem;font-weight:600;text-decoration:none;transition:.3s;display:inline-block}
.btn-gradient-form:hover                            {opacity:.9;transform:translateY(-2px);color:#fff}

/* === MISSION (MENTAL CLUB) === */
.mission-hero { background: #000; color: #fff; }
.why-mission { margin: 2rem 0; background-color: var(--wb_grey-light); }
.logo-animated-wrapper { display: flex; justify-content: center; text-align: center; align-items: center; }
.animated-logo { animation: pulseGlow 4s ease-in-out infinite; max-width: 320px; width: 100%; filter: drop-shadow(0 0 8px rgba(255,255,255,.35)); transition: transform 0.4s ease; }
.animated-logo:hover { transform: scale(1.05); }
@keyframes pulseGlow                                {0%,100%{transform:scale(1);filter:drop-shadow(0 0 8px rgba(255,255,255,.25))}50%{transform:scale(1.06);filter:drop-shadow(0 0 18px rgba(255,255,255,.6))}}
.iphone-wrapper                                     {display:flex;justify-content:center;align-items:center;width:100%}
.iphone-mockup                                      {position:relative;aspect-ratio:9/16;width:300px;max-width:80vw;margin:auto;border-radius:40px;border:8px solid #333;background:#333;box-shadow:0 8px 20px rgba(0,0,0,.4);overflow:hidden}
.iphone-mockup::before                              {content:"";position:absolute;top:10px;left:50%;transform:translateX(-50%);width:60px;height:6px;border-radius:3px;background:#222}
.iphone-mockup video                                {width:100%;height:100%;object-fit:cover;display:block;border-radius:32px}
.play-overlay                                       {position:absolute;inset:0;background:rgba(0,0,0,.25);transition:.3s;display:flex;align-items:center;justify-content:center;z-index:2;cursor:pointer}
.play-overlay i                                     {font-size:3rem;color:#fff;opacity:.9;transition:.3s ease}
.play-overlay.hidden                                {opacity:0;visibility:hidden}
@media(max-width:991px){
    .mission-hero,.why-mission                      {text-align:center}
    .iphone-mockup                                  {width:220px;margin-top:1rem}
    .mission-hero h1,.why-mission h2                {font-size:clamp(1.6rem,5vw,2rem)}
    .mission-hero p,.why-mission p                  {text-align:center;margin:auto;max-width:85%}
}

/* === DOCENTI === */
.docenti-section                                    {background:#000;color:#fff;padding:5rem 0}
.docente-card                                       {background:#222;border-radius:24px 0;overflow:hidden;display:flex;align-items:center;gap:2rem;min-height:100%;transition:.3s;box-shadow:0 6px 16px rgba(0,0,0,.25)}
.docente-card:hover                                 {background:#2a2a2a;transform:translateY(-4px)}
.docente-img img                                    {width:180px;height:100%;border-radius:24px 0;object-fit:cover;}
.docente-card:hover img                             {transform:scale(1.03)}
.docente-info h5                                    {font-size: 1.5rem; color:var(--wb_mental);margin-bottom:.75rem;font-weight:700}

.btn-cv{
    display:inline-block;border:2px solid var(--wb_life);
    color:var(--wb_life);font-weight:600;padding:.4rem 1rem;
    border-radius:30px;transition:.3s;text-decoration:none
}
.btn-cv:hover                                       {background:var(--wb_life);color:#000}

/* === MOBILE FIX === */
@media(max-width:991px){
    .docenti-section{text-align:center;padding:4rem 1rem}
    .docente-card{flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:2rem 1.5rem;border-radius:24px 0}
    .docente-info                                   {padding:0;margin-top:1rem}
    .docente-img img                                {width:70%;max-width:260px;margin-top:1rem;border-radius:24px 0}
}

/* 05 COACHING & SERVIZI*/
/* === CTA E PULSANTI COACHING === */
.btn-cta-coaching                               {background:transparent;color:var(--wb_white);border:1px solid var(--wb_white);margin-top:3rem;padding:.8rem 2rem;border-radius:24px 0;font-weight:500;transition:.3s;text-decoration:none}
.btn-cta-coaching:hover                         {opacity:.85;transform:translateY(-2px)}

/* === HERO COACHING === */
.coaching-hero                                      {position:relative;overflow:hidden;text-align:left}
.coaching-hero h1                                   {font-size:clamp(2rem,4vw,3rem);font-weight:800}
.coaching-hero p                                    {font-size:1.15rem;opacity:.9;line-height:1.55}
.hero-video-coaching                                {position:relative;cursor:pointer;border-radius:24px 0;overflow:hidden;max-width:480px;margin:auto}
.hero-video-coaching video                          {width:100%;display:block;border-radius:inherit}
.video-play-overlay                                 {position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.25)}
.video-play-overlay i                               {font-size:3.5rem;color:#fff;opacity:.7;transition:.3s}
.hero-video-coaching:hover .video-play-overlay i    {opacity:.95;transform:scale(1.05)}
@media(max-width:991px){
    .coaching-hero                                  {text-align:center}.hero-video-coaching{margin-top:1rem;width:100%;max-width:none}}

/* === CARD COACHING (BASE) === */
.coaching-card                                      {border-radius:24px 0;padding:2rem 1.5rem;color:#fff;display:flex;flex-direction:column;justify-content:space-between;text-align:center;transition:.35s;box-shadow:0 6px 18px rgba(0,0,0,.25); min-height: 320px;}
.coaching-card h3                                   {font-size:1.75rem;font-weight:700;color:#fff;margin-bottom:1rem}
.coaching-card p                                    {flex-grow:1;margin-bottom:1.5rem;font-size:1.05rem;line-height:1.55;opacity:.95}
.coaching-card .btn-card                            {align-self:center;background:transparent;color:#fff;border:2px solid #fff;padding:.6rem 1.4rem;border-radius:24px 0;text-decoration:none;font-weight:600;transition:.3s}
.coaching-card .btn-card:hover                      {background:#fff;color:#000;transform:translateY(-2px)}
.coaching-card:hover                                {transform:translateY(-5px);box-shadow:0 8px 22px rgba(0,0,0,.3)}

/* === GRADIENTI COACHING === */
.coaching-life                                      {background:linear-gradient(135deg,#00a2e8,#007ea6)}
.coaching-business                                  {background:linear-gradient(135deg,#144072,#0072ff)}
.coaching-sport                                     {background:linear-gradient(135deg,#f39200,#d86b00)}
.coaching-career                                    {background:linear-gradient(135deg,#003b64,#005f99)}
.coaching-team                                      {background:linear-gradient(135deg,#e6007e,#c2185b)}
.coaching-speech                                    {background:linear-gradient(135deg,#852c87,#a44ba1)}
.coaching-calcio                                    {background:linear-gradient(135deg,#0BD113,#0C8310)}

/* === VANTAGGI === */
.vantaggio-item                                     {flex:1 1 auto;height:100%;border:1px solid var(--wb_grey-light);border-radius:24px 0;padding:1rem 1.5rem;display:flex;align-items:center;gap:1rem;transition:.3s;background:#fff;color:inherit}
.vantaggio-item:hover                               {transform:translateY(-3px);box-shadow:0 6px 18px rgba(0,0,0,.12)}
.vantaggio-num                                      {flex-shrink:0;width:70px;height:70px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;font-weight:700;color:#fff}
.vantaggio-text                                     {font-size:.95rem;line-height:1.45;color:#333}
.vantaggio-text strong                              {font-weight:600;}
@media(max-width:991px){
    .vantaggio-item                                 {text-align:center;flex-direction:column;padding:1.2rem}
    .vantaggio-num                                  {margin-bottom:.6rem;width:60px;height:60px;font-size:1.5rem}}

/* === COLORI TEMA === */
.theme-life .vantaggio-num{background:var(--wb_life)} .theme-life .vantaggio-item{color:var(--wb_life)}
.theme-sport .vantaggio-num{background:var(--wb_sport)} .theme-sport .vantaggio-item{color:var(--wb_sport)}
.theme-business .vantaggio-num{background:var(--wb_business)} .theme-business .vantaggio-item{color:var(--wb_business)}
.theme-career .vantaggio-num{background:var(--wb_primary)} .theme-career .vantaggio-item{color:var(--wb_primary)}
.theme-team .vantaggio-num{background:var(--wb_mental)} .theme-team .vantaggio-item{color:var(--wb_mental)}
.theme-speech .vantaggio-num{background:var(--wb_secondary)} .theme-speech .vantaggio-item{color:var(--wb_secondary)}
.theme-calcio .vantaggio-num{background:var(--wb_calcio)} .theme-calcio .vantaggio-item{color:var(--wb_calcio)}

/* 6. MENTAL CALCIO */
/* Hero mental calcio */
.mentalcalcio-hero                          {background:var(--wb_business); color:var(--wb_white); overflow:hidden}
.app-mockup                                 {display:flex; justify-content:center; align-items:center;}
.mockup-img                                 {max-width:50% !important; height:auto; object-fit:contain; transition:.3s; z-index: 10;}
.mockup-img:hover                           {transform:scale(1.05);transition:.3s;}
.store-btn img                              {height:50px;transition:.3s}
.store-btn:hover img                        {opacity:.85;transform:translateY(-2px)}
/* Typewriter */
.typewriter                                 {display:inline-block;position:relative;white-space:nowrap;letter-spacing:.05em;font-size:clamp(1.5rem,3.5vw,2.4rem)}
.typewriter::after                          {content:"";position:absolute;right:-.2rem;top:0;bottom:0;width:3px;background:var(--wb_mental);animation:blink .8s step-end infinite}
@keyframes blink                            {50%{opacity:0}}

@media(max-width:991px){
    .mentalcalcio-hero                      {text-align:center}
    .mockup-img                             {max-width:80%;margin:0 auto}
    .store-btn img                          {height:45px}
}

/* Funzionalità mental calcio */
.mentalcalcio-funzionalita                  {background:var(--wb_black);color:var(--wb_white);}
.funzionalita,.vantaggi-mental-calcio       {padding:3rem 2rem}
.vantaggi-mental-calcio                     {background:var(--wb_business);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center; border-radius: 24px 0;}
.logo-mentalcalcio img                      {display:block;margin: 1rem auto;max-width:260px}
.list-funzionalita                          {list-style:none;padding:0;margin:0}
.list-funzionalita li                       {display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.list-funzionalita i                        {font-size:1.8rem;flex-shrink:0;margin-top:.2rem}
.list-funzionalita h5                       {margin-bottom:.25rem;font-weight:600}
.list-funzionalita p                        {font-size:.95rem;line-height:1.6;margin:0}

@media(max-width:991px){.vantaggi-mental-calcio{padding:3rem 1.5rem}.funzionalita{padding:2rem 1.5rem;text-align:center}.list-funzionalita li{justify-content:center;text-align:left}}
.bg-campo{background:url('/img/bg-campo-calcio.jpg') no-repeat center/cover;position:relative}
.bg-campo .overlay{content:"";position:absolute;inset:0;background:rgba(0,0,0,0.55);z-index:1}
.bg-campo .container{position:relative;z-index:2}
.sfida-card{background:#f9f9f9;border-radius:16px 0;box-shadow:0 6px 18px rgba(0,0,0,.08);transition:.3s}
.sfida-card:hover{transform:translateY(-5px);box-shadow:0 8px 24px rgba(0,0,0,.12)}
.sfida-num{background:var(--wb_calcio);color:#fff;font-weight:700;font-size:1.4rem;width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.sfida-text h4{font-size:1.1rem;color:var(--wb_calcio);margin-bottom:.3rem;font-weight:700}
.sfida-text p{font-size:.95rem;color:#333}
@media(max-width:991px){.sfida-card{padding:1rem 1.25rem}.sfida-num{width:42px;height:42px;font-size:1.2rem}.sfida-text h4{font-size:1rem}}
.list-vantaggi{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem 1rem}
.vantaggio-item-calc span{display:block;color:#fff}
.vantaggio-item-calc i{color:var(--wb_calcio);font-size:1.6rem;flex-shrink:0;margin-top:.15rem}
.gallery-calcio .gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:10px}
.gallery-item{position:relative;overflow:hidden;border-radius:12px;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:.4s}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-item figcaption{position:absolute;bottom:0;left:0;right:0;padding:.5rem .75rem;background:rgba(0,0,0,0.6);font-size:.85rem;color:#fff;text-align:center}
.lightbox-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.85);z-index:9999;flex-direction:column;padding:1rem}
.lightbox-modal img{max-width:90%;max-height:80vh;border-radius:12px;box-shadow:0 0 25px rgba(0,0,0,.4);margin-bottom:1rem}
.lightbox-caption{color:#fff;text-align:center;font-size:1rem;margin-bottom:1rem;max-width:80%}
.lightbox-close{position:absolute;top:20px;right:20px;background:none;border:none;color:#fff;font-size:1.8rem;cursor:pointer}
.lightbox-backdrop{position:absolute;inset:0;z-index:-1}
.list-vantaggi{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem 2.5rem}
@media(max-width:767px){
    .list-vantaggi                          {grid-template-columns:1fr;gap:1rem}
    .vantaggio-item-calc                    {font-size:1.05rem;line-height:1.5; text-align:center;}}


/* === Tema per colore accento (riusabile ovunque) === */
.theme-career{--accent:var(--wb_academy)}
.theme-life{--accent:var(--wb_life)}
.theme-sport{--accent:var(--wb_calcio)}
.theme-business{--accent:var(--wb_business, #0b82ff)}

/* === Card numerate uniformi === */
.vantaggio-card{display:flex;flex-direction:column;gap:.5rem;background:#fff;border-radius:16px 0;box-shadow:0 6px 18px rgba(0,0,0,.08);padding:1.25rem 1.25rem 1.5rem;height:100%;text-align:left;transition:.25s ease}
.vantaggio-card:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(0,0,0,.12)}
.vantaggio-card .vantaggio-num{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--accent,#0b82ff);color:#fff;font-weight:800;font-size:1.1rem;box-shadow:0 4px 10px rgba(0,0,0,.15);flex-shrink:0}
.vantaggio-card h5{margin:.25rem 0 .35rem;font-size:1.05rem;color:var(--wb_academy);font-weight:800;line-height:1.25}
.vantaggio-card p{margin:0;font-size:.95rem;color:#333;line-height:1.45}

/* === Responsive fine–tuning === */
@media (max-width:991px){
    .vantaggio-card{padding:1rem 1.1rem}
    .vantaggio-card .vantaggio-num{width:44px;height:44px;font-size:1rem}
    .vantaggio-card h5{font-size:1rem}
    .vantaggio-card p{font-size:.93rem}
}

.theme-speech {--accent: var(--wb_primary,#c60a1e);}

/* Riusa le stesse regole di .vantaggio-card già definite */
.vantaggio-card{display:flex;flex-direction:column;gap:.5rem;background:#fff;border-radius:16px 0;
    box-shadow:0 6px 18px rgba(0,0,0,.08);padding:1.25rem 1.25rem 1.5rem;height:100%;text-align:left;transition:.25s ease}
.vantaggio-card:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(0,0,0,.12)}
.vantaggio-card .vantaggio-num{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--wb_black);color:#fff;font-weight:800;font-size:1.1rem;box-shadow:0 4px 10px rgba(0,0,0,.15);flex-shrink:0;margin-bottom:.5rem}
.vantaggio-card h5{font-size:1.05rem;color:var(--wb_black);font-weight:800;margin:0}
.vantaggio-card p{font-size:.95rem;color:#333;line-height:1.45;margin:0}

/* Responsive */
@media(max-width:991px){
    .vantaggio-card{padding:1rem}
    .vantaggio-card .vantaggio-num{width:44px;height:44px;font-size:1rem}
    .vantaggio-card h5{font-size:1rem}
}

.coaching-scelta {
    background:#fff;
}
.coaching-scelta h2 {
    font-size:2rem;
    font-weight:800;
}
.coaching-scelta p {font-size:1rem;line-height:1.65;max-width:720px;margin:0 auto 1rem;color:#333;}
@media(max-width:991px){  .coaching-scelta h2{font-size:1.6rem;}  .coaching-scelta p{font-size:.95rem;}  }

.theme-team                             {--accent: var(--wb_black, var(--wb_grey-light)); }
.vantaggio-card                         {display:flex;flex-direction:column;gap:.5rem;background:#fff;border-radius:24px 0;box-shadow:0 6px 18px rgba(0,0,0,.08);padding:1.25rem 1.25rem 1.5rem;height:100%;text-align:left;transition:.25s ease;}
.vantaggio-card:hover                   { transform:translateY(-4px); box-shadow:0 10px 24px rgba(0,0,0,.12); }
.vantaggio-card .vantaggio-num          { width:48px;height:48px;border-radius:50%; display:flex;align-items:center;justify-content:center; background:var(--wb_dark);color:var(--wb_white);font-weight:700; font-size:1.1rem;box-shadow:0 4px 10px rgba(0,0,0,.15); flex-shrink:0;margin-bottom:.5rem;}
.vantaggio-card h5                      {font-size:1.05rem;color:var(--wb_black);font-weight:800;margin:0;}
.vantaggio-card p                       {font-size:.95rem;color:#333;line-height:1.45;margin:0;}

@media(max-width:991px){
    .vantaggio-card                     {padding:1rem;}
    .vantaggio-card .vantaggio-num      {width:44px;height:44px;font-size:1rem;}
    .vantaggio-card h5                  {font-size:1rem;}  }

.form-control-base {
    width: 100%;
    border-radius: 24px 0;
    padding: .9rem 1rem;
    font-size: .95rem;
    background: var(--wb_white);
    border: 1px solid var(--wb_mental-gradient, #ccc);
    color: var(--wb_dark, var(--wb_black));
    outline: none;
    transition: .3s ease;
}
.form-control-base:focus {
    border-color: var(--wb_dark, var(--wb_primary));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--wb_grey-light, var(--wb_primary)) 25%, transparent);
}

.btn-gradient-form {
    border-radius: 24px 0;
    border: none;
    color: #fff;
    padding: .9rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    background: linear-gradient(45deg, var(--wb_primary), #444);
}
.btn-gradient-form:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.brochure-centered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.contact-form { flex: 1 1 420px; }
.contact-figure img {
    max-width: 360px;
    border-radius: 24px 0;
}

@media(max-width:768px){
    .brochure-centered {
        flex-direction: column-reverse;
        align-items: center;
        padding: 1rem;
    }
    .contact-form { width: 100%; }
    .contact-figure img { max-width: 280px; }
}


/* FOOTER */
.footer                                     {background:var(--wb_black);color:var(--wb_white);}
.footer__top                                {padding:3rem 0;}
.footer__grid                               {display:grid;grid-template-columns:repeat(4,1fr);gap: 2rem ;align-items:start;}
.footer__col                                {min-width:0;}
.footer__title                              {color:var(--wb_life);font-weight:800;margin:0 0 .8rem;font-size:1.2rem;}
.footer__text                               {margin:0;line-height:1.7;}
.footer__list                               {list-style:none;margin:0;padding:0;display:grid;gap:.5rem;}
.footer__list i                             {color:var(--wb_business-light);margin-right:.5rem;}
.footer__list a                             {color:var(--wb_white);text-decoration:none;}
.footer__list a:hover                       {color:var(--wb_mental);}
.footer__social                             {display:flex;gap:12px;font-size:1.5rem;}
.footer__social a                           {color:var(--wb_white);display:grid;place-items:center;width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.06);transition:transform .2s ease,background .2s ease;}
.footer__social a:hover                     {background:rgba(255,255,255,.15);transform:translateY(-2px);}
.footer__form                               {display:grid;gap:.6rem;max-width:360px;}
.footer__input                              {width:100%;height:44px;border-radius:16px 0;border:1px solid #e6e6e6;background:var(--wb_white);color:var(--wb_black);padding:0 .9rem;outline:none;}
.footer__input:focus                        {border-color:var(--wb_mental);box-shadow:0 0 0 3px rgba(54,169,225,.2);}
.footer__btn                                {height:44px;border-radius:16px 0;border:0; width:100%;}
.footer__check                              {display:flex;align-items:center;gap:.5rem;font-size:.9rem;opacity:.9;}
.footer__check a:hover                       {color:var(--wb_mental);}
.footer__divider                            {height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);}
.footer__bottom                             {padding:16px 0 24px;}
.footer__bottom-grid                        {display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px;}
.footer__lang                               {justify-self:start;}
.footer__select                             {appearance:none;background:var(--wb_white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' d='M6 8 0 0h12z'/%3E%3C/svg%3E") no-repeat right 10px center/12px 8px;border:1px solid #e6e6e6;border-radius:16px 0;padding:.45rem 2rem .45rem .8rem;color:var(--wb_black);min-width:130px;}
.footer__copy                               {text-align:center;opacity:.9;}
.footer__legal                              {justify-self:end;display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;}
.footer__legal a                            {color:var(--wb_white);opacity:.9;text-decoration:none;}
.footer__legal a:hover                      {color:var(--wb_mental);opacity:1;}
.footer .dot                                {opacity:.4;}
.visually-hidden                            {position:absolute!important;width:1px;height:1px;margin:-1px;clip:rect(0 0 0 0);overflow:hidden;}

/* ==========================================================
   HERO PRESS
   ========================================================== */
.press-hero                                 {background:linear-gradient(135deg,color-mix(in srgb,var(--wb_business) 25%,#000),#000);color:#fff}
.press-hero h1{font-size:2.5rem;font-weight:800}
.press-hero h4{font-size:1.25rem;opacity:.9}
.press-hero p{line-height:1.7;font-size:1rem;opacity:.95}
.press-hero img{border-radius:24px 0!important;box-shadow:0 8px 30px rgba(0,0,0,.4)}

/* ==========================================================
   LINK WEB CAROUSEL
   ========================================================== */
.linkweb-slider { display: flex; align-items: center; gap: 1.5rem; margin: 2rem 0; }
.linkweb-track { display: flex; gap: 1.5rem; -ms-overflow-style: none; scrollbar-width: none; }
.linkweb-track::-webkit-scrollbar { display: none; }
.linkweb-wrapper { flex: 1; overflow-x: auto; overflow-y: hidden; width: 100%; height: auto; scroll-behavior: smooth; padding: 0.5rem 0; -webkit-overflow-scrolling: touch; }
.linkweb-card { display: flex; flex-direction: column; align-items: center; justify-content: space-between; flex-shrink: 0; width: 280px; min-height: 380px; padding: 1.5rem; border-radius: 24px 0; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; }
.linkweb-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.linkweb-logo { width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); border-radius: 24px 0; margin-bottom: 1.5rem; flex-shrink: 0; overflow: hidden; }
.linkweb-logo img { width: 100%; height: 100%; object-fit: cover; padding: 0.75rem; border-radius: 24px 0; }
.linkweb-card h5 { font-size: 1rem; font-weight: 600; line-height: 1.4; margin: 0 0 1.5rem 0; text-align: center; color: var(--wb_white); flex-grow: 1; display: flex; align-items: center; }
.btn-linkweb { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--wb_dark); color: var(--wb_white); border: 2px solid var(--wb_grey-light); border-radius: 24px 0; font-weight: 500; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; flex-shrink: 0; }
.btn-linkweb:hover { background: transparent; color: var(--wb_white); transform: translateX(4px); }
.btn-linkweb i { font-size: 1.1rem; transition: transform 0.3s; }
.btn-linkweb:hover i { transform: translateX(3px); }
.slider-btn { position: relative; width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); border: 2px solid var(--wb_white); color: var(--wb_white); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0; }
.slider-btn:hover:not(.disabled) { background: var(--wb_primary); border-color: var(--wb_primary); transform: scale(1.1); }
.slider-btn.disabled { visibility: hidden; opacity: 0; pointer-events: none; }

@media (max-width: 1200px) { .linkweb-card { width: 260px; min-height: 360px; } }
@media (max-width: 768px) { .linkweb-section { padding: 3rem 0; } .linkweb-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 2rem; } .linkweb-track { gap: 1rem; } .linkweb-wrapper { padding: 0.5rem 0; } .linkweb-slider { gap: 1rem; } .linkweb-card { width: 240px; min-height: 340px; padding: 1.25rem; } .linkweb-logo { width: 100px; height: 100px; margin-bottom: 1rem; } .linkweb-card h5 { font-size: 0.9rem; margin-bottom: 1rem; } .btn-linkweb { padding: 0.65rem 1.25rem; font-size: 0.85rem; } .slider-btn { width: 44px; height: 44px; font-size: 1.25rem; } }
@media (max-width: 480px) { .linkweb-track { gap: 0.75rem; } .linkweb-slider { gap: 0.75rem; } .linkweb-card { width: 200px; min-height: 310px; padding: 1rem; } .linkweb-logo { width: 80px; height: 80px; margin-bottom: 0.75rem; } .linkweb-card h5 { font-size: 0.85rem; margin-bottom: 0.75rem; } .btn-linkweb { padding: 0.6rem 1rem; font-size: 0.8rem; } .slider-btn { width: 40px; height: 40px; font-size: 1.1rem; } }

.slider-btn:focus-visible, .btn-linkweb:focus-visible { outline: 2px solid var(--wb_primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .linkweb-track, .linkweb-card, .slider-btn, .btn-linkweb { transition: none; } }
@media (prefers-color-scheme: dark) { .linkweb-card { background: rgba(255, 255, 255, 0.03); } }

/* ========================================================== PRESS ARTICLES GRID ========================================================== */
.press-articles img{border-radius:24px 0;transition:transform .4s,box-shadow .4s;cursor:pointer}
.press-articles img:hover{transform:scale(1.05);box-shadow:0 8px 20px rgba(0,0,0,.3)}
.hover-zoom{overflow:hidden}
.bi-file-earmark-pdf {color: var(--wb_grey-light); width: auto; height: 120px;}

/* ==========================================================
   LIGHTBOX MODAL
   ========================================================== */
.lightbox-modal{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:1055}
.lightbox-modal.d-none{display:none}
.lightbox-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.85);backdrop-filter:blur(6px)}
.lightbox-img{max-width:90%;max-height:90%;border-radius:16px 0;z-index:2;box-shadow:0 8px 32px rgba(0,0,0,.6)}
.lightbox-btn{position:absolute;top:50%;transform:translateY(-50%);background:none;border:none;color:#fff;font-size:2rem;cursor:pointer;z-index:3;transition:.3s}
.lightbox-btn.prev{left:2%}
.lightbox-btn.next{right:2%}
.lightbox-btn:hover{color:var(--wb_life)}
.lightbox-close{position:absolute;top:5%;right:5%;background:none;border:none;color:#fff;font-size:1.8rem;cursor:pointer;z-index:4;transition:.3s}
.lightbox-close:hover{color:var(--wb_life)}
@media(max-width:768px){.lightbox-btn.prev{left:4%}.lightbox-btn.next{right:4%}.lightbox-img{max-width:95%;max-height:85%}}


/* === HERO CONTATTI === */
.hero-contact{background:url('/img/bg-contatti.jpg') center/cover no-repeat;position:relative;isolation:isolate}
.hero-contact .overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);z-index:0}
.hero-contact .container{z-index:1;position:relative}

/* === VARIANTI COLORE === */
.form-academy .contact-title{color:var(--wb_life);}
.form-academy .form-control-base:focus{border-color:var(--wb_life);box-shadow:0 0 0 3px color-mix(in srgb,var(--wb_life) 25%,transparent);}
.form-academy .btn-gradient-form{background:linear-gradient(135deg,var(--wb_life),#1e5bd3);}
.form-academy .form-check-custom a{color:var(--wb_life);}

/* === FORM BASE === */
.contact-box{display:flex;align-items:center;justify-content:center;padding:5rem 1rem;background:var(--wb_grey-light);}
.form-centered{background:#fff;border-radius:24px 0;box-shadow:0 8px 30px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:space-between;gap:3rem;max-width:90%;width:100%;padding:3rem 4rem;margin:auto;overflow:hidden;position:relative;}
.contact-form{flex:1;}
.contact-title{font-weight:800;font-size:2rem;margin-bottom:2rem;color:var(--wb_life);}
.form-control-base{width:100%;background:#fff;border:1px solid #ccc;border-radius:16px 0;padding:.9rem 1rem;font-size:1rem;color:#222;transition:.3s;}
.form-control-base:focus{border-color:var(--wb_life);box-shadow:0 0 0 3px color-mix(in srgb,var(--wb_life) 25%,transparent);outline:none;}
textarea.form-control-base{resize:none;}
.btn-gradient-form{background:linear-gradient(135deg,var(--wb_life),#1e5bd3);color:#fff;font-weight:600;border:none;border-radius:24px 0;padding:.9rem 2rem;transition:.3s;box-shadow:0 4px 10px rgba(0,0,0,.2);}
.btn-gradient-form:hover{opacity:.9;transform:translateY(-2px);}
.form-check-custom{display:flex;align-items:center;gap:.4rem;font-size:.9rem;margin-top:1rem;color:#333;}
.form-check-custom a{color:var(--wb_life);text-decoration:underline;}
.contact-figure{flex-shrink:0;max-width:320px;text-align:center;}
.contact-figure img{width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 4px 10px rgba(0,0,0,.25));margin-bottom:-100px;}

/* TRADUTTORE */
.goog-te-gadget-icon                                    {display:none;}
.goog-te-gadget-simple                                  {border-radius: 16px 0;  min-width: 150px;padding:0 .9rem;background-image: url('/img/angledown.png');background-size: 12px 15px;background-position: calc(100% - 10px) 12px;background-repeat: no-repeat;border: none !important;}
.goog-te-gadget-simple a > span:nth-child(1)            {padding:8px 0;display:inline-block;height:36px;font-size:15px;font-family:'Raleway',sans-serif;}
.goog-te-gadget-simple a > span:nth-child(3)            {display:none;}
.goog-te-gadget-simple a > span:nth-child(5)            {display:none;}
.goog-te-gadget-simple a > img                          {display:none;}
a.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:nth-child(2) > div:nth-child(1) > span:nth-child(1)
table tbody tr td a div span.indicator                  {display:none;}

/* === RESPONSIVE === */
@media(max-width:991px){
    .form-centered{flex-direction:column;align-items:center;text-align:center;padding:1rem;gap:1.5rem;max-width:95%;}
    .contact-form{width:100%;padding:0;}
    .contact-title{font-size:1.7rem;margin-bottom:1.2rem;}
    .form-control-base{font-size:1rem;padding:.8rem 1rem;}
    .btn-gradient-form{font-size:1rem;padding:.9rem 1.5rem;}
    .contact-figure{order:2;width:100%;max-width:260px;margin-top:1rem;text-align:center;}
    .contact-figure img{width:100%;max-height:260px;margin:0 auto;object-fit:contain;margin-bottom:-60px;}
}


/* === RESPONSIVE MOBILE === */
@media(max-width:991px){
    .form-centered{flex-direction:column;align-items:center;text-align:center;padding:1rem;gap:1.5rem;max-width:95%;}
    .contact-form{width:100%;padding:0;}
    .contact-title{font-size:1.6rem;margin-bottom:1.5rem;}
    .form-control-base{font-size:1rem;padding:.8rem 1rem;}
    .btn-gradient-form{font-size:1rem;padding:.9rem 1.5rem;}
    .contact-figure{order:2;width:100%;max-width:260px;margin-top:1rem;text-align:center;}
    .contact-figure img{width:100%;max-height:260px;margin:0 auto;object-fit:contain;margin-bottom:-60px;}
}

@media (max-width:767px){ /* CELLULARI */
    .footer__top{padding:36px 0;}
    .footer__grid{grid-template-columns:1fr;gap:24px;text-align:center;}
    .footer__social{justify-content:center;}
    .footer__form{margin:0 auto;}
    .footer__bottom-grid{grid-template-columns:1fr;gap:10px;text-align:center;}
    .footer__lang,.footer__legal{justify-self:center;}
}

@media (min-width:992px){ /* DESKTOP */
    .dm_onlymobile{display:none;}
}

#whatsapp-fixed {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    font-size: 1.8rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    z-index: 999;
    transition: transform .25s ease, box-shadow .25s ease;
}
#whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    text-decoration: none;
}
@media (max-width: 767px) {
    #whatsapp-fixed {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}
