/* ============================================
   STUDIO CAPACE — Design System
   Palette: Blu Acciaio & Teal
   ============================================ */

:root{
  --navy:#1B3A52;
  --navy-deep:#0F2638;
  --steel:#2E6A8E;
  --teal:#1D9C8A;
  --teal-light:#E8F4F2;
  --teal-mist:#F0F8F7;
  --white:#FFFFFF;
  --ink:#16242F;
  --muted:#5A6B78;
  --line:#E2EAEE;
  --whatsapp:#25D366;

  --maxw:1200px;
  --radius:16px;
  --radius-sm:10px;
  --ease:cubic-bezier(.22,1,.36,1);
  --font-sans:'Inter',system-ui,-apple-system,sans-serif;
  --font-head:'Playfair Display',Georgia,serif;
  --shadow:0 10px 40px rgba(27,58,82,.10);
  --shadow-lg:0 24px 70px rgba(27,58,82,.18);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
section{position:relative}

h1,h2,h3,h4{font-family:var(--font-head);font-weight:700;line-height:1.12;color:var(--navy);letter-spacing:-.01em}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-sans);font-weight:600;font-size:.72rem;
  letter-spacing:.18em;text-transform:uppercase;color:var(--teal);
  margin-bottom:1rem;
}
.eyebrow::before{content:"";width:28px;height:2px;background:var(--teal);display:inline-block}

.container{max-width:var(--maxw);margin:0 auto;padding:0 1.25rem}
.section{padding:5rem 0}
@media(min-width:768px){.section{padding:7rem 0}}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  font-weight:600;font-size:.95rem;padding:.95rem 1.7rem;border-radius:100px;
  cursor:pointer;border:none;transition:transform .4s var(--ease),box-shadow .4s var(--ease),background .3s;
  position:relative;will-change:transform;
}
.btn-primary{background:var(--teal);color:#fff;box-shadow:0 8px 24px rgba(29,156,138,.35)}
.btn-primary:hover{background:#17887a;box-shadow:0 12px 32px rgba(29,156,138,.45)}
.btn-ghost{background:transparent;color:var(--navy);border:1.5px solid var(--line)}
.btn-ghost:hover{border-color:var(--navy);background:var(--navy);color:#fff}
.btn-light{background:#fff;color:var(--navy)}
.btn-light:hover{background:var(--teal-light)}
.btn svg{width:18px;height:18px}

/* ---------- Custom cursor ---------- */
.cursor-dot,.cursor-ring{position:fixed;top:0;left:0;border-radius:50%;pointer-events:none;z-index:10000;mix-blend-mode:difference;will-change:transform}
.cursor-dot{width:8px;height:8px;background:var(--teal);margin:-4px 0 0 -4px}
.cursor-ring{width:42px;height:42px;border:1.5px solid var(--teal);margin:-21px 0 0 -21px;transition:width .3s var(--ease),height .3s var(--ease),margin .3s var(--ease),background .3s}
.cursor-ring.hover{width:64px;height:64px;margin:-32px 0 0 -32px;background:rgba(29,156,138,.12)}
@media(hover:none),(max-width:900px){.cursor-dot,.cursor-ring{display:none}}

/* ---------- Navbar ---------- */
/* Header bianco sempre: il logo (testo navy) resta leggibile su qualsiasi pagina */
.nav{position:fixed;top:0;left:0;width:100%;z-index:900;transition:padding .4s var(--ease),box-shadow .4s;padding:.8rem 0;background:#fff;box-shadow:0 1px 0 var(--line)}
.nav.scrolled{padding:.4rem 0;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);box-shadow:0 6px 24px rgba(27,58,82,.08)}
.nav-inner{display:flex;align-items:center;justify-content:space-between}
.nav-logo-img{height:124px;width:auto;display:block;transition:height .4s var(--ease)}
.nav.scrolled .nav-logo-img{height:74px}
@media(max-width:1080px){.nav-logo-img{height:64px}.nav.scrolled .nav-logo-img{height:52px}}
.nav-menu{display:none;align-items:center;gap:1.4rem}
.nav-menu>a,.nav-drop-t{font-weight:500;font-size:.92rem;color:var(--navy);position:relative;transition:color .3s;cursor:pointer}
.nav-menu>a::after,.nav-drop-t::after{content:"";position:absolute;left:0;bottom:-4px;width:0;height:2px;background:var(--teal);transition:width .35s var(--ease)}
.nav-menu>a:hover,.nav-drop-t:hover{color:var(--teal)}
.nav-menu>a:hover::after,.nav-drop:hover .nav-drop-t::after{width:100%}
.nav-cta{display:none}

/* Dropdown Servizi */
.nav-drop{position:relative}
.nav-drop-t{display:inline-flex;align-items:center;gap:.35rem}
.nav-drop-t svg{width:14px;height:14px;transition:transform .35s var(--ease)}
.nav-drop:hover .nav-drop-t svg{transform:rotate(180deg)}
.nav-drop-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(10px);min-width:280px;background:#fff;border-radius:14px;box-shadow:var(--shadow-lg);padding:.6rem;opacity:0;visibility:hidden;transition:opacity .3s var(--ease),transform .3s var(--ease);margin-top:.8rem}
.nav-drop:hover .nav-drop-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav-drop-menu::before{content:"";position:absolute;top:-.8rem;left:0;width:100%;height:.8rem}
.nav-drop-menu a{display:flex;align-items:center;gap:.7rem;padding:.7rem .85rem;border-radius:10px;font-size:.88rem;font-weight:500;color:var(--navy);transition:background .25s,color .25s}
.nav-drop-menu a:hover{background:var(--teal-light);color:var(--steel)}
.nav-drop-menu a svg{width:18px;height:18px;color:var(--teal);flex-shrink:0}
@media(min-width:1080px){.nav-menu{display:flex}.nav-cta{display:inline-flex}}

.burger{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:950}
.burger span{width:26px;height:2px;background:var(--navy);transition:.35s var(--ease);transform-origin:center}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.burger.open span{background:#fff}
@media(min-width:1080px){.burger{display:none}}

.mobile-menu{position:fixed;inset:0;background:var(--navy);z-index:920;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;gap:0;padding:6.4rem 1.5rem 2.5rem;overflow-y:auto;transform:translateY(-100%);transition:transform .5s var(--ease);opacity:0}
.mobile-menu.open{transform:translateY(0);opacity:1}
.mobile-menu>a:not(.btn){font-family:var(--font-sans);font-size:1.12rem;font-weight:500;color:#fff;padding:.9rem .2rem;border-bottom:1px solid rgba(255,255,255,.12)}
.mobile-menu>a:not(.btn):active{color:var(--teal)}
.mobile-menu .btn{margin-top:1.4rem;font-size:1rem}
/* accordion sottomenu mobile */
.m-acc{border-bottom:1px solid rgba(255,255,255,.12)}
.m-acc-t{width:100%;display:flex;align-items:center;justify-content:space-between;background:none;border:none;color:#fff;font-family:var(--font-sans);font-size:1.12rem;font-weight:500;padding:.9rem .2rem;cursor:pointer}
.m-acc-t svg{width:18px;height:18px;transition:transform .35s var(--ease);color:var(--teal)}
.m-acc.open .m-acc-t svg{transform:rotate(180deg)}
.m-acc-p{max-height:0;overflow:hidden;transition:max-height .45s var(--ease)}
.m-acc.open .m-acc-p{max-height:640px}
.m-acc-p a{display:flex;align-items:center;gap:.7rem;padding:.65rem .2rem .65rem 1rem;color:rgba(255,255,255,.78);font-size:.96rem}
.m-acc-p a:active{color:var(--teal)}
.m-acc-p a svg{width:18px;height:18px;color:var(--teal);flex-shrink:0}

/* ---------- Hero ---------- */
.hero{min-height:100svh;display:flex;align-items:center;position:relative;overflow:hidden;background:var(--navy-deep)}
.hero-bg{position:absolute;inset:-10% 0 0 0;height:120%;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.6}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(15,38,56,.92) 0%,rgba(15,38,56,.72) 45%,rgba(15,38,56,.4) 100%)}
.hero-inner{position:relative;z-index:2;padding:12rem 1.25rem 4rem}
.hero h1{color:#fff;font-size:clamp(2.6rem,8vw,5.2rem);line-height:1.04;margin-bottom:1.5rem}
.hero h1 .accent{color:var(--teal);font-style:italic}
.hero .lead{color:rgba(255,255,255,.82);font-size:clamp(1.05rem,2.4vw,1.3rem);max-width:600px;margin-bottom:2.2rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem}
.hero-rating{display:inline-flex;align-items:center;gap:.7rem;margin-top:2.6rem;color:#fff;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);padding:.6rem 1.1rem;border-radius:100px;backdrop-filter:blur(6px)}
.hero-rating .stars{color:#FFC857;letter-spacing:1px}
.hero-rating b{font-weight:600}
.hero-rating span{font-size:.85rem;color:rgba(255,255,255,.7)}
.hero-scroll{position:absolute;bottom:1.6rem;left:50%;transform:translateX(-50%);z-index:2;color:rgba(255,255,255,.6);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;display:flex;flex-direction:column;align-items:center;gap:.5rem}
.hero-scroll .line{width:1px;height:38px;background:rgba(255,255,255,.4);position:relative;overflow:hidden}
.hero-scroll .line::after{content:"";position:absolute;top:-100%;left:0;width:100%;height:100%;background:var(--teal);animation:scrolldown 2s infinite}
@keyframes scrolldown{0%{top:-100%}60%,100%{top:100%}}
.word{display:inline-block;overflow:hidden;vertical-align:top}
.word>span{display:inline-block;will-change:transform;transform:translateY(115%);animation:wordUp 1s var(--ease) forwards}
@keyframes wordUp{to{transform:translateY(0)}}
.word:nth-child(1)>span{animation-delay:.15s}
.word:nth-child(2)>span{animation-delay:.23s}
.word:nth-child(3)>span{animation-delay:.31s}
.word:nth-child(4)>span{animation-delay:.39s}
.word:nth-child(5)>span{animation-delay:.47s}
.word:nth-child(6)>span{animation-delay:.55s}
.word:nth-child(7)>span{animation-delay:.63s}
.word:nth-child(8)>span{animation-delay:.71s}
.word:nth-child(9)>span{animation-delay:.79s}
.word:nth-child(10)>span{animation-delay:.87s}

/* ---------- Numbers ---------- */
.numbers{background:var(--navy);padding:3.5rem 0}
.numbers-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem 1rem}
@media(min-width:768px){.numbers-grid{grid-template-columns:repeat(4,1fr)}}
.num-item{text-align:center;color:#fff}
.num-item .n{font-family:var(--font-head);font-size:clamp(2.4rem,6vw,3.6rem);font-weight:700;color:#fff;line-height:1}
.num-item .n .suffix{color:var(--teal)}
.num-item .lbl{font-size:.82rem;letter-spacing:.06em;color:rgba(255,255,255,.62);margin-top:.5rem;text-transform:uppercase}

/* ---------- Chi siamo ---------- */
.about-grid{display:grid;gap:3rem;align-items:center}
@media(min-width:900px){.about-grid{grid-template-columns:1.1fr 1fr;gap:4.5rem}}
.about h2{font-size:clamp(1.9rem,4.5vw,3rem);margin-bottom:1.6rem}
.about p{color:var(--muted);margin-bottom:1.1rem;font-size:1.04rem}
.about p strong{color:var(--navy);font-weight:600}
.about-visual{position:relative}
.about-visual img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%;aspect-ratio:4/5;object-fit:cover;clip-path:inset(0 0 0 0)}
.about-badge{position:absolute;bottom:-22px;left:-10px;background:#fff;border-radius:var(--radius-sm);box-shadow:var(--shadow-lg);padding:1.1rem 1.4rem;display:flex;align-items:center;gap:.9rem}
.about-badge .big{font-family:var(--font-head);font-size:2.2rem;color:var(--teal);line-height:1}
.about-badge .sm{font-size:.78rem;color:var(--muted);max-width:90px}
.values{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2.2rem}
.value{display:flex;gap:.85rem;align-items:flex-start}
.value .vi{flex-shrink:0;width:42px;height:42px;border-radius:12px;background:var(--teal-light);display:grid;place-items:center;color:var(--teal)}
.value .vi svg{width:22px;height:22px}
.value h4{font-family:var(--font-sans);font-size:.98rem;font-weight:600;color:var(--navy);margin-bottom:.15rem}
.value p{font-size:.85rem;color:var(--muted);margin:0;line-height:1.45}

/* ---------- Servizi ---------- */
.services{background:var(--teal-mist)}
.services-head{display:flex;flex-direction:column;gap:1rem;margin-bottom:3rem}
.services-head h2{font-size:clamp(1.9rem,4.5vw,3rem)}
.services-head p{color:var(--muted);max-width:520px}
.services-track{display:grid;gap:1.4rem}
@media(min-width:700px){.services-track{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1050px){.services-track{grid-template-columns:repeat(3,1fr)}}
.svc-card{background:#fff;border-radius:var(--radius);padding:2rem 1.8rem;box-shadow:var(--shadow);border:1px solid transparent;transition:transform .5s var(--ease),box-shadow .5s var(--ease),border-color .5s;position:relative;overflow:hidden;will-change:transform}
.svc-card::before{content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--teal),var(--steel));transform:scaleX(0);transform-origin:left;transition:transform .5s var(--ease)}
.svc-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:var(--teal-light)}
.svc-card:hover::before{transform:scaleX(1)}
.svc-icon{width:58px;height:58px;border-radius:14px;background:var(--navy);display:grid;place-items:center;color:var(--teal);margin-bottom:1.3rem;transition:background .4s}
.svc-card:hover .svc-icon{background:var(--teal);color:#fff}
.svc-icon svg{width:28px;height:28px}
.svc-card h3{font-size:1.32rem;margin-bottom:.7rem}
.svc-card>p{color:var(--muted);font-size:.94rem;margin-bottom:1.2rem}
.svc-tags{display:flex;flex-wrap:wrap;gap:.4rem}
.svc-tags span{font-size:.72rem;background:var(--teal-light);color:var(--steel);padding:.28rem .65rem;border-radius:100px;font-weight:500}

/* ---------- Team ---------- */
.team-head{text-align:center;max-width:620px;margin:0 auto 3rem}
.team-head h2{font-size:clamp(1.9rem,4.5vw,3rem);margin-bottom:1rem}
.team-head p{color:var(--muted)}
.team-grid{display:grid;grid-template-columns:1fr;gap:1.3rem}
@media(min-width:600px){.team-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.team-grid{grid-template-columns:repeat(3,1fr)}}
.member{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .4s var(--ease),box-shadow .4s var(--ease);transform-style:preserve-3d;will-change:transform}
.member:hover{box-shadow:var(--shadow-lg)}
.member-photo{aspect-ratio:1/1;position:relative;display:grid;place-items:center;overflow:hidden}
.member-photo .avatar{width:100%;height:100%;display:grid;place-items:center;font-family:var(--font-head);font-size:3.4rem;color:#fff;font-weight:700}
.member-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.member-info{padding:1.3rem 1.4rem}
.member-info .role{font-size:.74rem;letter-spacing:.08em;text-transform:uppercase;color:var(--teal);font-weight:600;margin-bottom:.3rem}
.member-info h3{font-family:var(--font-sans);font-size:1.18rem;font-weight:600;color:var(--navy);margin-bottom:.4rem}
.member-info p{font-size:.86rem;color:var(--muted);line-height:1.5}

/* ---------- Recensioni ---------- */
.reviews{background:var(--navy);overflow:hidden}
.reviews .eyebrow{color:var(--teal)}
.reviews-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:2.5rem}
.reviews-head h2{color:#fff;font-size:clamp(1.9rem,4.5vw,3rem)}
.reviews-nav{display:flex;gap:.6rem}
.rev-btn{width:48px;height:48px;border-radius:50%;border:1.5px solid rgba(255,255,255,.25);background:transparent;color:#fff;cursor:pointer;display:grid;place-items:center;transition:.3s}
.rev-btn:hover{background:var(--teal);border-color:var(--teal)}
.rev-btn svg{width:20px;height:20px}
.reviews-viewport{overflow:hidden}
.reviews-rail{display:flex;gap:1.4rem;transition:transform .6s var(--ease)}
.review{flex:0 0 100%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:2rem;backdrop-filter:blur(6px)}
@media(min-width:700px){.review{flex:0 0 calc(50% - .7rem)}}
@media(min-width:1050px){.review{flex:0 0 calc(33.333% - .94rem)}}
.review .stars{color:#FFC857;letter-spacing:2px;margin-bottom:1rem}
.review .quote{color:#fff;font-size:1.02rem;line-height:1.6;margin-bottom:1.4rem;font-style:italic}
.review .who{display:flex;flex-direction:column}
.review .who b{color:#fff;font-weight:600}
.review .who span{color:rgba(255,255,255,.6);font-size:.84rem}

/* ---------- Review CTA (Google) ---------- */
.review-cta{margin-top:2.5rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:1.8rem 2rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.2rem}
.review-cta .rc-left{display:flex;align-items:center;gap:1rem}
.review-cta .g-badge{width:52px;height:52px;border-radius:50%;background:#fff;display:grid;place-items:center;flex-shrink:0;font-family:var(--font-head);font-size:1.6rem;font-weight:700;color:#4285F4}
.review-cta .rc-txt b{color:#fff;display:block;font-size:1.05rem}
.review-cta .rc-txt span{color:rgba(255,255,255,.65);font-size:.88rem}
.review-cta .rc-txt .stars{color:#FFC857;letter-spacing:1px}

/* ---------- Dove siamo + gallery ---------- */
.dove .ds-grid{display:grid;gap:2.5rem;align-items:start}
@media(min-width:920px){.dove .ds-grid{grid-template-columns:1fr 1fr;gap:3rem}}
.ds-map{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);height:340px}
.ds-map iframe{width:100%;height:100%;border:0;filter:grayscale(.15)}
.ds-info .contact-detail{margin-bottom:1.2rem}
.ds-actions{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.5rem}
.gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1rem}
@media(min-width:600px){.gallery{grid-template-columns:repeat(3,1fr)}}
.gallery figure{position:relative;border-radius:var(--radius-sm);overflow:hidden;aspect-ratio:4/3;margin:0;cursor:pointer}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.gallery figure:hover img{transform:scale(1.08)}
.gallery figcaption{position:absolute;left:0;bottom:0;width:100%;padding:1.4rem .9rem .7rem;font-size:.78rem;font-weight:500;color:#fff;background:linear-gradient(transparent,rgba(15,38,56,.85));opacity:0;transition:opacity .3s}
.gallery figure:hover figcaption{opacity:1}
.gallery .ph-tag{position:absolute;top:.5rem;right:.5rem;background:rgba(255,255,255,.9);color:var(--steel);font-size:.62rem;font-weight:600;padding:.2rem .5rem;border-radius:100px;letter-spacing:.04em}

/* ---------- FAQ ---------- */
.faq-head{text-align:center;max-width:620px;margin:0 auto 2.5rem}
.faq-head h2{font-size:clamp(1.9rem,4.5vw,3rem);margin-bottom:1rem}
.faq-head p{color:var(--muted)}
.faq-filters{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:2.5rem}
.faq-filter{font-size:.84rem;font-weight:500;padding:.5rem 1.1rem;border-radius:100px;border:1.5px solid var(--line);background:#fff;color:var(--muted);cursor:pointer;transition:.3s}
.faq-filter.active,.faq-filter:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.8rem}
.faq-item{border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden;background:#fff;transition:border-color .3s}
.faq-item.open{border-color:var(--teal)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.25rem 1.4rem;background:none;border:none;cursor:pointer;text-align:left;font-family:var(--font-sans);font-size:1.02rem;font-weight:600;color:var(--navy)}
.faq-q .ic{flex-shrink:0;width:26px;height:26px;border-radius:50%;background:var(--teal-light);color:var(--teal);display:grid;place-items:center;transition:transform .4s var(--ease),background .3s}
.faq-item.open .faq-q .ic{transform:rotate(45deg);background:var(--teal);color:#fff}
.faq-a{max-height:0;overflow:hidden;transition:max-height .5s var(--ease)}
.faq-a-inner{padding:0 1.4rem 1.3rem;color:var(--muted);font-size:.95rem}

/* ---------- Blog preview ---------- */
.blog{background:var(--teal-mist)}
.blog-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:3rem}
.blog-head h2{font-size:clamp(1.9rem,4.5vw,3rem)}
.blog-grid{display:grid;grid-template-columns:1fr;gap:1.6rem}
@media(min-width:680px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1000px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.post-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .5s var(--ease),box-shadow .5s var(--ease);display:flex;flex-direction:column;will-change:transform}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.post-thumb{aspect-ratio:16/10;overflow:hidden}
.post-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.post-card:hover .post-thumb img{transform:scale(1.07)}
.post-body{padding:1.5rem;display:flex;flex-direction:column;flex:1}
.post-meta{display:flex;gap:.7rem;align-items:center;margin-bottom:.8rem;font-size:.76rem}
.post-cat{background:var(--teal-light);color:var(--steel);padding:.25rem .6rem;border-radius:100px;font-weight:600}
.post-date{color:var(--muted)}
.post-body h3{font-size:1.18rem;font-family:var(--font-sans);font-weight:600;color:var(--navy);margin-bottom:.6rem;line-height:1.35}
.post-body p{color:var(--muted);font-size:.9rem;flex:1;margin-bottom:1rem}
.post-link{color:var(--teal);font-weight:600;font-size:.9rem;display:inline-flex;align-items:center;gap:.4rem;transition:gap .3s}
.post-link:hover{gap:.75rem}

/* ---------- Contatti ---------- */
.contact-grid{display:grid;gap:2.5rem}
@media(min-width:920px){.contact-grid{grid-template-columns:.85fr 1.15fr;gap:3.5rem}}
.contact-info h2{font-size:clamp(1.9rem,4.5vw,3rem);margin-bottom:1.2rem}
.contact-info>p{color:var(--muted);margin-bottom:2rem}
.contact-detail{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.4rem}
.contact-detail .ci{flex-shrink:0;width:46px;height:46px;border-radius:12px;background:var(--teal-light);color:var(--teal);display:grid;place-items:center}
.contact-detail .ci svg{width:22px;height:22px}
.contact-detail b{display:block;color:var(--navy);font-weight:600;margin-bottom:.1rem}
.contact-detail span{color:var(--muted);font-size:.92rem}
.contact-map{margin-top:1.5rem;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);height:220px}
.contact-map iframe{width:100%;height:100%;border:0;filter:grayscale(.2)}

.form-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:2rem 1.8rem}
@media(min-width:768px){.form-card{padding:2.6rem}}
.form-card h3{font-family:var(--font-sans);font-size:1.4rem;font-weight:700;color:var(--navy);margin-bottom:.4rem}
.form-card>p{color:var(--muted);font-size:.92rem;margin-bottom:1.8rem}
.field{margin-bottom:1.2rem}
.field label{display:block;font-size:.84rem;font-weight:600;color:var(--navy);margin-bottom:.45rem}
.field input,.field select,.field textarea{width:100%;padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:var(--radius-sm);font-family:inherit;font-size:.95rem;color:var(--ink);background:#fff;transition:border-color .3s,box-shadow .3s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 4px rgba(29,156,138,.1)}
.field textarea{resize:vertical;min-height:90px}
.field-row{display:grid;gap:1.2rem}
@media(min-width:560px){.field-row{grid-template-columns:1fr 1fr}}
.radio-group,.check-group{display:flex;flex-wrap:wrap;gap:.55rem}
.pill-opt{position:relative}
.pill-opt input{position:absolute;opacity:0;pointer-events:none}
.pill-opt label{display:inline-flex;align-items:center;gap:.4rem;padding:.55rem 1rem;border:1.5px solid var(--line);border-radius:100px;font-size:.85rem;font-weight:500;color:var(--muted);cursor:pointer;transition:.25s;margin:0}
.pill-opt input:checked+label{background:var(--teal-light);border-color:var(--teal);color:var(--steel)}
.check-line{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.9rem;font-size:.84rem;color:var(--muted);cursor:pointer}
.check-line input{margin-top:.2rem;width:18px;height:18px;flex-shrink:0;accent-color:var(--teal)}
.form-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:.5rem}
.form-actions .btn{flex:1;min-width:160px}
.btn-wa{background:var(--whatsapp);color:#fff}
.btn-wa:hover{background:#1eb955}
.form-note{font-size:.78rem;color:var(--muted);margin-top:1rem;text-align:center}

/* ---------- Footer ---------- */
.footer{background:var(--navy-deep);color:rgba(255,255,255,.7);padding:4rem 0 2rem}
.footer-grid{display:grid;gap:2.5rem;margin-bottom:3rem}
@media(min-width:760px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr}}
.footer-brand .logo-foot{height:48px;margin-bottom:1.2rem}
.foot-logo-badge{display:inline-block;background:#fff;padding:16px 22px;border-radius:16px;margin-bottom:1.3rem;box-shadow:0 8px 24px rgba(0,0,0,.18)}
.foot-logo-img{height:120px;width:auto;display:block}
@media(max-width:600px){.foot-logo-img{height:88px}}
.footer-brand p{font-size:.9rem;max-width:280px}
.footer h4{font-family:var(--font-sans);color:#fff;font-size:.95rem;font-weight:600;margin-bottom:1.1rem}
.footer-links a{display:block;font-size:.9rem;padding:.3rem 0;transition:color .3s,padding-left .3s}
.footer-links a:hover{color:var(--teal);padding-left:.3rem}
.footer-contact p{font-size:.9rem;margin-bottom:.7rem;display:flex;gap:.6rem;align-items:flex-start}
.footer-contact svg{width:17px;height:17px;color:var(--teal);flex-shrink:0;margin-top:3px}
.footer-news{margin-top:1rem}
.footer-news .nf{display:flex;gap:.5rem;margin-top:.7rem}
.footer-news input{flex:1;padding:.7rem .9rem;border-radius:100px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.06);color:#fff;font-size:.85rem}
.footer-news input::placeholder{color:rgba(255,255,255,.45)}
.footer-news button{background:var(--teal);border:none;color:#fff;width:44px;border-radius:50%;cursor:pointer;display:grid;place-items:center;flex-shrink:0}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem}
.footer-social a{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.2);display:grid;place-items:center;transition:.3s}
.footer-social a:hover{background:var(--teal);border-color:var(--teal)}
.footer-social svg{width:18px;height:18px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:1.6rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:.82rem}
.footer-bottom a:hover{color:var(--teal)}

/* ---------- WhatsApp widget ---------- */
.wa-widget{position:fixed;bottom:22px;right:22px;z-index:880;display:flex;align-items:center;gap:0}
.wa-tooltip{background:#fff;color:var(--navy);font-size:.85rem;font-weight:500;padding:.6rem 1rem;border-radius:100px;box-shadow:var(--shadow);margin-right:.6rem;white-space:nowrap;opacity:0;transform:translateX(10px);pointer-events:none;transition:.4s var(--ease)}
.wa-widget.show-tip .wa-tooltip{opacity:1;transform:translateX(0)}
.wa-btn{width:60px;height:60px;border-radius:50%;background:var(--whatsapp);display:grid;place-items:center;box-shadow:0 8px 28px rgba(37,211,102,.45);position:relative;transition:transform .3s}
.wa-btn:hover{transform:scale(1.08)}
.wa-btn svg{width:32px;height:32px;fill:#fff}
.wa-btn::before{content:"";position:absolute;inset:0;border-radius:50%;background:var(--whatsapp);animation:wapulse 2.4s infinite;z-index:-1}
@keyframes wapulse{0%{transform:scale(1);opacity:.6}70%,100%{transform:scale(1.7);opacity:0}}

/* ---------- Cookie banner ---------- */
.cookie{position:fixed;bottom:0;left:0;width:100%;z-index:9000;background:#fff;box-shadow:0 -10px 40px rgba(15,38,56,.15);transform:translateY(110%);transition:transform .6s var(--ease)}
.cookie.show{transform:translateY(0)}
.cookie-inner{max-width:var(--maxw);margin:0 auto;padding:1.4rem 1.25rem;display:flex;flex-wrap:wrap;gap:1.2rem;align-items:center;justify-content:space-between}
.cookie-text{flex:1;min-width:260px}
.cookie-text h4{font-family:var(--font-sans);font-size:1rem;font-weight:600;color:var(--navy);margin-bottom:.3rem}
.cookie-text p{font-size:.84rem;color:var(--muted);line-height:1.5}
.cookie-text a{color:var(--teal);text-decoration:underline}
.cookie-actions{display:flex;flex-wrap:wrap;gap:.6rem}
.cookie-actions .btn{padding:.7rem 1.3rem;font-size:.85rem}
.cookie-prefs{display:none;flex-basis:100%;border-top:1px solid var(--line);margin-top:.4rem;padding-top:1.2rem}
.cookie-prefs.show{display:block}
.pref-row{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--line)}
.pref-row:last-child{border:none}
.pref-row .pi b{display:block;color:var(--navy);font-size:.9rem}
.pref-row .pi span{font-size:.8rem;color:var(--muted)}
.switch{position:relative;width:46px;height:26px;flex-shrink:0}
.switch input{opacity:0;width:0;height:0}
.slider{position:absolute;inset:0;background:var(--line);border-radius:100px;cursor:pointer;transition:.3s}
.slider::before{content:"";position:absolute;width:20px;height:20px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.3s}
.switch input:checked+.slider{background:var(--teal)}
.switch input:checked+.slider::before{transform:translateX(20px)}
.switch input:disabled+.slider{opacity:.55;cursor:not-allowed}

/* ---------- Reveal animations (fallback / mobile) ---------- */
/* Gated su html.js: senza JS i contenuti restano sempre visibili */
.js .reveal{opacity:0;transform:translateY(40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.js .reveal.in{opacity:1;transform:none}
.reveal[data-delay="1"]{transition-delay:.1s}
.reveal[data-delay="2"]{transition-delay:.2s}
.reveal[data-delay="3"]{transition-delay:.3s}
.reveal[data-delay="4"]{transition-delay:.4s}
.reveal[data-delay="5"]{transition-delay:.5s}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}

/* ---------- Mobile submenu (servizi) ---------- */
.m-sub{display:flex;flex-direction:column;gap:.4rem;align-items:center;margin:-.4rem 0 .4rem}
.m-sub a{font-family:var(--font-sans)!important;font-size:1rem!important;color:rgba(255,255,255,.7)!important}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{padding:13rem 0 4rem;background:var(--navy-deep);color:#fff;position:relative;overflow:hidden}
.page-hero .bg{position:absolute;inset:0;z-index:0}
.page-hero .bg img{width:100%;height:100%;object-fit:cover;opacity:.28}
.page-hero .bg::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(15,38,56,.95),rgba(15,38,56,.7))}
.page-hero .container{position:relative;z-index:1}
.page-hero .breadcrumb{font-size:.82rem;color:rgba(255,255,255,.6);margin-bottom:1.3rem;display:flex;gap:.5rem;flex-wrap:wrap}
.page-hero .breadcrumb a:hover{color:var(--teal)}
.page-hero h1{color:#fff;font-size:clamp(2.2rem,5.5vw,3.8rem);max-width:840px;line-height:1.1;margin-bottom:1.2rem}
.page-hero p{color:rgba(255,255,255,.82);font-size:clamp(1.05rem,2.2vw,1.25rem);max-width:640px}
.page-hero .ph-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:2rem}

/* ---------- Service detail ---------- */
.svc-intro{display:grid;gap:2.5rem;align-items:start}
@media(min-width:900px){.svc-intro{grid-template-columns:1.2fr .8fr;gap:4rem}}
.svc-intro .lead-text p{color:var(--muted);font-size:1.08rem;margin-bottom:1.2rem}
.svc-intro .lead-text strong{color:var(--navy)}
.svc-intro h2{font-size:clamp(1.7rem,4vw,2.4rem);margin-bottom:1.3rem}
.svc-aside{background:var(--teal-mist);border-radius:var(--radius);padding:1.8rem;position:sticky;top:90px}
.svc-aside h3{font-family:var(--font-sans);font-size:1.1rem;font-weight:700;margin-bottom:1rem;color:var(--navy)}
.svc-aside ul{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.4rem}
.svc-aside li{display:flex;gap:.6rem;align-items:flex-start;font-size:.92rem;color:#33424d}
.svc-aside li svg{width:18px;height:18px;color:var(--teal);flex-shrink:0;margin-top:3px}
.svc-aside .btn{width:100%}

.include-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:1rem}
@media(min-width:600px){.include-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.include-grid{grid-template-columns:repeat(3,1fr)}}
.include-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);padding:1.4rem;transition:border-color .3s,transform .3s}
.include-card:hover{border-color:var(--teal);transform:translateY(-3px)}
.include-card .ic{width:44px;height:44px;border-radius:11px;background:var(--teal-light);color:var(--teal);display:grid;place-items:center;margin-bottom:.9rem}
.include-card .ic svg{width:22px;height:22px}
.include-card h4{font-family:var(--font-sans);font-size:1rem;font-weight:600;color:var(--navy);margin-bottom:.35rem}
.include-card p{font-size:.86rem;color:var(--muted);line-height:1.5}

.usecases{display:grid;grid-template-columns:1fr;gap:1.2rem}
@media(min-width:760px){.usecases{grid-template-columns:repeat(3,1fr)}}
.usecase{background:var(--teal-mist);border-radius:var(--radius);padding:1.7rem;border-left:3px solid var(--teal)}
.usecase .step{font-family:var(--font-head);font-size:1.6rem;color:var(--teal);margin-bottom:.5rem}
.usecase h4{font-family:var(--font-sans);font-size:1.05rem;font-weight:600;color:var(--navy);margin-bottom:.4rem}
.usecase p{font-size:.9rem;color:var(--muted)}

.cta-band{background:var(--navy);border-radius:var(--radius);padding:3rem 2rem;text-align:center;margin-top:1rem}
.cta-band h2{color:#fff;font-size:clamp(1.6rem,4vw,2.4rem);margin-bottom:.8rem}
.cta-band p{color:rgba(255,255,255,.78);max-width:560px;margin:0 auto 1.8rem}
.cta-band .actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center}

.other-svc{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:1rem}
@media(min-width:700px){.other-svc{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1050px){.other-svc{grid-template-columns:repeat(4,1fr)}}
.other-svc a{display:flex;align-items:center;gap:.7rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);padding:1rem 1.2rem;font-weight:600;font-size:.9rem;color:var(--navy);transition:.3s}
.other-svc a:hover{border-color:var(--teal);color:var(--teal);transform:translateY(-2px)}
.other-svc a svg{width:20px;height:20px;color:var(--teal);flex-shrink:0}

/* ---------- Team page extra ---------- */
.team-page-hero img{border-radius:var(--radius)}

/* ---------- Blog article page ---------- */
.article-hero{padding:13rem 0 3rem;background:var(--navy-deep);color:#fff}
.article-hero .breadcrumb{font-size:.82rem;color:rgba(255,255,255,.6);margin-bottom:1.4rem;display:flex;gap:.5rem;flex-wrap:wrap}
.article-hero .breadcrumb a:hover{color:var(--teal)}
.article-hero h1{color:#fff;font-size:clamp(1.9rem,5vw,3.2rem);max-width:820px;margin-bottom:1.2rem;line-height:1.12}
.article-hero .meta{display:flex;gap:1rem;align-items:center;flex-wrap:wrap;font-size:.85rem;color:rgba(255,255,255,.7)}
.article-hero .post-cat{background:var(--teal);color:#fff}
.article-cover{max-width:920px;margin:-2rem auto 0;padding:0 1.25rem}
.article-cover img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%;aspect-ratio:16/8;object-fit:cover}
.article-body{max-width:740px;margin:0 auto;padding:3.5rem 1.25rem}
.article-body p{color:#33424d;font-size:1.08rem;line-height:1.8;margin-bottom:1.4rem}
.article-body h2{font-size:1.7rem;margin:2.4rem 0 1rem}
.article-body h3{font-size:1.3rem;font-family:var(--font-sans);font-weight:700;color:var(--navy);margin:1.8rem 0 .8rem}
.article-body ul{margin:0 0 1.4rem 1.2rem;list-style:disc;color:#33424d}
.article-body ul li{margin-bottom:.5rem;padding-left:.3rem}
.article-body strong{color:var(--navy)}
.article-body .callout{background:var(--teal-mist);border-left:4px solid var(--teal);border-radius:0 var(--radius-sm) var(--radius-sm) 0;padding:1.4rem 1.6rem;margin:2rem 0}
.article-body .callout p{margin:0;font-size:1rem}
.article-cta{background:var(--navy);border-radius:var(--radius);padding:2.4rem;text-align:center;margin-top:3rem}
.article-cta h3{color:#fff;font-family:var(--font-sans);font-size:1.4rem;margin-bottom:.7rem}
.article-cta p{color:rgba(255,255,255,.75);margin-bottom:1.5rem}
.related{background:var(--teal-mist);padding:4rem 0}
.related h2{text-align:center;font-size:1.8rem;margin-bottom:2.5rem}

/* ---------- Legal pages ---------- */
.legal{max-width:820px;margin:0 auto;padding:13rem 1.25rem 5rem}
.legal h1{font-size:clamp(2rem,5vw,3rem);margin-bottom:.5rem}
.legal .upd{color:var(--muted);font-size:.88rem;margin-bottom:2.5rem}
.legal h2{font-size:1.4rem;font-family:var(--font-sans);font-weight:700;margin:2.2rem 0 .8rem;color:var(--navy)}
.legal h3{font-size:1.1rem;font-family:var(--font-sans);font-weight:600;margin:1.4rem 0 .5rem;color:var(--steel)}
.legal p,.legal li{color:#33424d;line-height:1.75;margin-bottom:.8rem}
.legal ul{margin-left:1.2rem;list-style:disc}
.legal a{color:var(--teal);text-decoration:underline}
.legal .back{display:inline-flex;align-items:center;gap:.4rem;color:var(--teal);font-weight:600;margin-bottom:2rem}
.legal table{width:100%;border-collapse:collapse;margin:1rem 0;font-size:.9rem}
.legal th,.legal td{border:1px solid var(--line);padding:.7rem .9rem;text-align:left}
.legal th{background:var(--teal-mist);color:var(--navy)}

/* ============================================
   NUOVE FEATURE (calcolatori, quiz, scadenzario,
   casi studio, guide, video, partner, IG, chatbot)
   ============================================ */

/* --- Tabs generiche --- */
.tabs{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:2rem}
.tab-btn{font-size:.88rem;font-weight:600;padding:.6rem 1.2rem;border-radius:100px;border:1.5px solid var(--line);background:#fff;color:var(--muted);cursor:pointer;transition:.3s}
.tab-btn.active,.tab-btn:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.tab-panel{display:none}
.tab-panel.active{display:block;animation:fadeUp .5s var(--ease)}
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}

/* --- Calcolatori --- */
.calc{max-width:760px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:2rem}
@media(min-width:768px){.calc{padding:2.6rem}}
.calc-row{display:grid;gap:1.2rem;margin-bottom:1.2rem}
@media(min-width:560px){.calc-row{grid-template-columns:1fr 1fr}}
.calc-field label{display:block;font-size:.85rem;font-weight:600;color:var(--navy);margin-bottom:.45rem}
.calc-field input,.calc-field select{width:100%;padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:var(--radius-sm);font-family:inherit;font-size:1rem;color:var(--ink);background:#fff;transition:border-color .3s,box-shadow .3s}
.calc-field input:focus,.calc-field select:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 4px rgba(29,156,138,.1)}
.calc-result{margin-top:1.6rem;background:var(--teal-mist);border-radius:var(--radius-sm);padding:1.6rem;border-left:4px solid var(--teal)}
.calc-result .big{font-family:var(--font-head);font-size:2.2rem;color:var(--steel);line-height:1.1}
.calc-result .lbl{font-size:.85rem;color:var(--muted);margin-bottom:.3rem;text-transform:uppercase;letter-spacing:.05em}
.calc-result .note{font-size:.85rem;color:var(--muted);margin-top:.8rem}
.calc-result.win{border-color:var(--teal)}
.calc-breakdown{display:grid;gap:.5rem;margin-top:1rem}
.calc-breakdown div{display:flex;justify-content:space-between;font-size:.9rem;color:#33424d;padding:.4rem 0;border-bottom:1px solid var(--line)}
.calc-breakdown div b{color:var(--navy)}
.calc-cta{margin-top:1.4rem;text-align:center}
.calc-disclaimer{font-size:.76rem;color:var(--muted);text-align:center;margin-top:1.2rem;max-width:760px;margin-left:auto;margin-right:auto}

/* --- Scadenzario --- */
.scad{max-width:820px;margin:0 auto}
.scad-list{display:flex;flex-direction:column;gap:.8rem}
.scad-item{display:flex;gap:1.1rem;align-items:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);padding:1.1rem 1.3rem;transition:border-color .3s,transform .3s}
.scad-item:hover{border-color:var(--teal);transform:translateX(4px)}
.scad-item.soon{border-left:4px solid var(--teal)}
.scad-date{flex-shrink:0;width:62px;text-align:center}
.scad-date .d{font-family:var(--font-head);font-size:1.7rem;color:var(--steel);line-height:1}
.scad-date .m{font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:var(--muted)}
.scad-body{flex:1}
.scad-body b{display:block;color:var(--navy);font-size:.98rem}
.scad-body span{font-size:.85rem;color:var(--muted)}
.scad-badge{font-size:.68rem;font-weight:600;padding:.25rem .6rem;border-radius:100px;background:var(--teal-light);color:var(--steel);white-space:nowrap}
.scad-badge.urgent{background:#FDECEC;color:#C0392B}

/* --- Quiz / configuratore --- */
.quiz{max-width:680px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:2rem;min-height:380px}
@media(min-width:768px){.quiz{padding:2.8rem}}
.quiz-progress{height:6px;background:var(--line);border-radius:100px;overflow:hidden;margin-bottom:2rem}
.quiz-progress span{display:block;height:100%;background:var(--teal);width:0;transition:width .5s var(--ease)}
.quiz-step{display:none}
.quiz-step.active{display:block;animation:fadeUp .5s var(--ease)}
.quiz-step h3{font-family:var(--font-sans);font-size:1.4rem;font-weight:700;color:var(--navy);margin-bottom:1.5rem}
.quiz-opts{display:grid;gap:.8rem}
.quiz-opt{display:flex;align-items:center;gap:.9rem;padding:1.1rem 1.3rem;border:1.5px solid var(--line);border-radius:var(--radius-sm);cursor:pointer;font-weight:500;color:var(--navy);transition:.25s;text-align:left;background:#fff;font-family:inherit;font-size:1rem;width:100%}
.quiz-opt:hover{border-color:var(--teal);background:var(--teal-mist);transform:translateY(-2px)}
.quiz-opt .qi{width:40px;height:40px;border-radius:10px;background:var(--teal-light);color:var(--teal);display:grid;place-items:center;flex-shrink:0}
.quiz-opt .qi svg{width:20px;height:20px}
.quiz-result{text-align:center}
.quiz-result .qr-icon{width:72px;height:72px;border-radius:18px;background:var(--navy);color:var(--teal);display:grid;place-items:center;margin:0 auto 1.2rem}
.quiz-result .qr-icon svg{width:36px;height:36px}
.quiz-result h3{font-size:1.6rem;margin-bottom:.7rem}
.quiz-result p{color:var(--muted);margin-bottom:1.5rem}
.quiz-back{background:none;border:none;color:var(--muted);font-size:.85rem;cursor:pointer;margin-top:1.2rem;font-family:inherit}
.quiz-back:hover{color:var(--teal)}

/* --- Casi studio --- */
.cases{display:flex;flex-direction:column;gap:2rem}
.case{display:grid;gap:0;background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
@media(min-width:820px){.case{grid-template-columns:1fr 1.3fr}.case.rev{grid-template-columns:1.3fr 1fr}.case.rev .case-img{order:2}}
.case-img{min-height:240px;position:relative}
.case-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.case-img .sector{position:absolute;top:1rem;left:1rem;background:rgba(15,38,56,.85);color:#fff;font-size:.74rem;font-weight:600;padding:.35rem .8rem;border-radius:100px}
.case-body{padding:2rem}
@media(min-width:768px){.case-body{padding:2.6rem}}
.case-body h3{font-family:var(--font-sans);font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:.8rem}
.case-body .challenge{color:var(--muted);font-size:.95rem;margin-bottom:1.4rem}
.case-metrics{display:flex;flex-wrap:wrap;gap:1.6rem;margin-bottom:1.2rem}
.metric .mv{font-family:var(--font-head);font-size:1.9rem;color:var(--teal);line-height:1}
.metric .ml{font-size:.78rem;color:var(--muted);margin-top:.2rem}
.case-quote{font-style:italic;color:#33424d;font-size:.92rem;border-left:3px solid var(--teal);padding-left:1rem}

/* --- Guide / lead magnet --- */
.magnet-grid{display:grid;grid-template-columns:1fr;gap:1.4rem}
@media(min-width:680px){.magnet-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1020px){.magnet-grid{grid-template-columns:repeat(3,1fr)}}
.magnet{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.magnet:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.magnet-top{background:linear-gradient(135deg,var(--navy),var(--steel));padding:1.6rem;color:#fff;position:relative}
.magnet-top .fmt{position:absolute;top:1rem;right:1rem;font-size:.68rem;font-weight:600;background:rgba(255,255,255,.18);padding:.25rem .6rem;border-radius:100px}
.magnet-top .mi{width:46px;height:46px;border-radius:11px;background:rgba(255,255,255,.15);display:grid;place-items:center;margin-bottom:1rem}
.magnet-top .mi svg{width:24px;height:24px;color:var(--teal-light)}
.magnet-top h3{font-family:var(--font-sans);font-size:1.12rem;color:#fff;font-weight:600;line-height:1.3}
.magnet-body{padding:1.4rem;display:flex;flex-direction:column;flex:1}
.magnet-body p{font-size:.88rem;color:var(--muted);flex:1;margin-bottom:1.1rem}
.magnet-body .btn{width:100%}

/* --- Modal generico (guide gate / video) --- */
.modal{position:fixed;inset:0;z-index:9500;background:rgba(15,38,56,.6);backdrop-filter:blur(4px);display:none;align-items:center;justify-content:center;padding:1.2rem}
.modal.open{display:flex;animation:fadeUp .3s var(--ease)}
.modal-card{background:#fff;border-radius:var(--radius);max-width:460px;width:100%;padding:2.2rem;position:relative}
.modal-card.video{max-width:880px;padding:0;overflow:hidden;background:#000}
.modal-card.video .vwrap{position:relative;aspect-ratio:16/9}
.modal-card.video iframe{width:100%;height:100%;border:0}
.modal-close{position:absolute;top:.8rem;right:.8rem;width:38px;height:38px;border-radius:50%;border:none;background:var(--teal-mist);color:var(--navy);cursor:pointer;display:grid;place-items:center;z-index:2}
.modal-card.video .modal-close{background:rgba(255,255,255,.9)}
.modal-card h3{font-family:var(--font-sans);font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:.5rem}
.modal-card>p{color:var(--muted);font-size:.92rem;margin-bottom:1.4rem}

/* --- Video band (idea 10) --- */
.video-band{position:relative;border-radius:var(--radius);overflow:hidden;min-height:380px;display:flex;align-items:center;justify-content:center}
.video-band img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.video-band::after{content:"";position:absolute;inset:0;background:linear-gradient(rgba(15,38,56,.55),rgba(15,38,56,.7))}
.video-band .vb-inner{position:relative;z-index:2;text-align:center;color:#fff;padding:2rem}
.video-band h2{color:#fff;font-size:clamp(1.6rem,4vw,2.6rem);margin-bottom:.8rem}
.video-band p{color:rgba(255,255,255,.85);max-width:520px;margin:0 auto 1.6rem}
.play-btn{width:78px;height:78px;border-radius:50%;background:var(--teal);border:none;cursor:pointer;display:grid;place-items:center;margin:0 auto;box-shadow:0 10px 30px rgba(29,156,138,.5);transition:transform .3s}
.play-btn:hover{transform:scale(1.08)}
.play-btn svg{width:30px;height:30px;fill:#fff;margin-left:4px}
.play-btn::before{content:"";position:absolute;width:78px;height:78px;border-radius:50%;background:var(--teal);opacity:.5;animation:wapulse 2.4s infinite}

/* --- Partner / certificazioni --- */
.partners{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:2.5rem;opacity:.85}
.partner-logo{height:46px;display:flex;align-items:center;gap:.5rem;color:var(--muted);font-weight:600;font-size:.95rem;filter:grayscale(1);transition:.3s}
.partner-logo:hover{filter:grayscale(0);color:var(--navy)}
.partner-logo svg{width:34px;height:34px;color:var(--steel)}

/* --- Feed Instagram (idea 9) --- */
.ig-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem}
@media(min-width:680px){.ig-grid{grid-template-columns:repeat(4,1fr)}}
.ig-item{position:relative;aspect-ratio:1/1;border-radius:var(--radius-sm);overflow:hidden;display:block}
.ig-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.ig-item:hover img{transform:scale(1.08)}
.ig-item::after{content:"";position:absolute;inset:0;background:rgba(15,38,56,0);transition:.3s}
.ig-item:hover::after{background:rgba(15,38,56,.25)}
.ig-item .ig-ic{position:absolute;top:.6rem;right:.6rem;color:#fff;opacity:0;transition:.3s;z-index:2}
.ig-item:hover .ig-ic{opacity:1}
.ig-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}
.ig-handle{display:flex;align-items:center;gap:.7rem;font-weight:600;color:var(--navy)}
.ig-handle .ig-av{width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,#1B3A52,#1D9C8A);display:grid;place-items:center;color:#fff;font-weight:700}

/* --- Chatbot / assistente FAQ (idea 9) --- */
.cb-toggle{position:fixed;bottom:22px;right:92px;z-index:880;width:60px;height:60px;border-radius:50%;background:var(--navy);border:none;cursor:pointer;display:grid;place-items:center;box-shadow:0 8px 28px rgba(27,58,82,.4);transition:transform .3s}
.cb-toggle:hover{transform:scale(1.08)}
.cb-toggle svg{width:28px;height:28px;color:#fff}
.cb-toggle .cb-dot{position:absolute;top:2px;right:2px;width:14px;height:14px;background:var(--teal);border-radius:50%;border:2px solid #fff}
@media(max-width:600px){.cb-toggle{right:90px;bottom:22px;width:54px;height:54px}}
.cb-panel{position:fixed;bottom:94px;right:22px;z-index:885;width:360px;max-width:calc(100vw - 44px);height:520px;max-height:calc(100vh - 130px);background:#fff;border-radius:18px;box-shadow:var(--shadow-lg);display:flex;flex-direction:column;overflow:hidden;opacity:0;visibility:hidden;transform:translateY(20px) scale(.98);transition:.35s var(--ease)}
.cb-panel.open{opacity:1;visibility:visible;transform:none}
.cb-header{background:var(--navy);color:#fff;padding:1.1rem 1.3rem;display:flex;align-items:center;gap:.8rem}
.cb-header .cb-av{width:40px;height:40px;border-radius:50%;background:var(--teal);display:grid;place-items:center;flex-shrink:0;font-weight:700}
.cb-header b{display:block;font-size:.98rem}
.cb-header span{font-size:.78rem;color:rgba(255,255,255,.7)}
.cb-header .cb-x{margin-left:auto;background:none;border:none;color:#fff;cursor:pointer;opacity:.8}
.cb-msgs{flex:1;overflow-y:auto;padding:1.2rem;display:flex;flex-direction:column;gap:.8rem;background:var(--teal-mist)}
.cb-msg{max-width:85%;padding:.7rem 1rem;border-radius:14px;font-size:.9rem;line-height:1.5}
.cb-msg.bot{background:#fff;color:#33424d;border:1px solid var(--line);align-self:flex-start;border-bottom-left-radius:4px}
.cb-msg.user{background:var(--teal);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.cb-quick{display:flex;flex-wrap:wrap;gap:.5rem;padding:.8rem 1.2rem;background:#fff;border-top:1px solid var(--line)}
.cb-quick button{font-size:.78rem;font-weight:500;padding:.45rem .8rem;border:1.5px solid var(--line);border-radius:100px;background:#fff;color:var(--steel);cursor:pointer;transition:.25s}
.cb-quick button:hover{background:var(--teal-light);border-color:var(--teal)}
.cb-input{display:flex;gap:.5rem;padding:.8rem 1rem;border-top:1px solid var(--line);background:#fff}
.cb-input input{flex:1;border:1.5px solid var(--line);border-radius:100px;padding:.6rem 1rem;font-family:inherit;font-size:.88rem}
.cb-input input:focus{outline:none;border-color:var(--teal)}
.cb-input button{width:42px;height:42px;border-radius:50%;background:var(--teal);border:none;color:#fff;cursor:pointer;display:grid;place-items:center;flex-shrink:0}
.cb-input button svg{width:18px;height:18px}

/* ============================================
   SETTORI + COSTO-OPPORTUNITÀ + CHECK-UP
   ============================================ */
/* problemi/soluzioni settore */
.usecase.pain{border-left-color:#C0392B;background:#FDF1F0}
.usecase.pain .step{color:#C0392B}
.sector-icons{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1rem}
.sector-icons span{font-size:.78rem;background:#fff;border:1px solid var(--line);color:var(--steel);padding:.4rem .8rem;border-radius:100px;font-weight:500}
.sector-card{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;box-shadow:var(--shadow);transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .3s}
.sector-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--teal)}
.sector-card .si{width:54px;height:54px;border-radius:13px;background:var(--navy);color:var(--teal);display:grid;place-items:center;margin-bottom:1rem}
.sector-card .si svg{width:28px;height:28px}
.sector-card h3{font-size:1.2rem;margin-bottom:.5rem}
.sector-card p{font-size:.9rem;color:var(--muted);margin-bottom:.8rem}
.sector-card .sl{color:var(--teal);font-weight:600;font-size:.88rem}

/* costo-opportunità */
.calc-result.alert{border-color:#C0392B;background:#FDECEC}
.calc-result.alert .big{color:#C0392B}
.calc-result.alert .lbl{color:#C0392B}
.cost-flag{display:inline-block;background:#C0392B;color:#fff;font-size:.7rem;font-weight:600;padding:.25rem .7rem;border-radius:100px;margin-bottom:.6rem;letter-spacing:.03em}

/* check-up report */
.report{display:flex;flex-direction:column;gap:1rem;text-align:left;margin:1.5rem 0}
.report-area{background:var(--teal-mist);border-radius:var(--radius-sm);padding:1.2rem 1.4rem}
.report-area .ra-head{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:.5rem}
.report-area b{color:var(--navy);font-size:1rem}
.report-area .lvl{font-size:.72rem;font-weight:600;padding:.2rem .65rem;border-radius:100px;white-space:nowrap}
.report-area .lvl.low{background:#FDECEC;color:#C0392B}
.report-area .lvl.mid{background:#FFF4E0;color:#B8860B}
.report-area .lvl.good{background:var(--teal-light);color:var(--steel)}
.gauge{height:8px;background:#fff;border-radius:100px;overflow:hidden;margin:.3rem 0 .5rem}
.gauge span{display:block;height:100%;background:var(--teal);transition:width .8s var(--ease)}
.report-area p{font-size:.85rem;color:var(--muted)}
.checkup-gate{max-width:420px;margin:0 auto;text-align:center}
.checkup-gate .field{text-align:left}

/* ============================================
   OTTIMIZZAZIONE MOBILE — padding + slider
   ============================================ */
@media(max-width:680px){
  /* --- Spaziature compatte --- */
  .section{padding:3.4rem 0}
  .container{padding:0 1.15rem}
  .hero-inner{padding:7rem 1.15rem 3rem}
  .hero h1{font-size:clamp(2.05rem,8.5vw,3rem);margin-bottom:1.1rem}
  .hero .lead{font-size:1.02rem;margin-bottom:1.6rem}
  .hero-rating{margin-top:1.8rem}
  .page-hero{padding:7.5rem 0 2.8rem}
  .article-hero{padding:7.5rem 0 2.4rem}
  .legal{padding:7.5rem 1.15rem 3.4rem}
  .numbers{padding:2.6rem 0}
  .services-head,.team-head,.blog-head,.reviews-head,.faq-head{margin-bottom:2rem!important}
  .cta-band{padding:2.2rem 1.3rem}
  .video-band{min-height:300px}
  .about-grid,.contact-grid,.ds-grid,.svc-intro{gap:2rem}
  .about-badge{left:0;bottom:-16px;padding:.8rem 1rem}
  .review-cta{padding:1.4rem}
  .magnet-top{padding:1.3rem}
  .quiz,.calc{padding:1.5rem}
  .form-card{padding:1.6rem}
  .case-body{padding:1.5rem}

  /* --- Slider orizzontali (riducono drasticamente la lunghezza pagina) --- */
  .services-track,.team-grid,.blog-grid,.include-grid,.magnet-grid,.usecases,.cases{
    display:flex;flex-wrap:nowrap;gap:1rem;
    overflow-x:auto;overflow-y:visible;
    scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    margin:0 -1.15rem;padding:.3rem 1.15rem 1.1rem;
    scrollbar-width:none;
  }
  .services-track::-webkit-scrollbar,.team-grid::-webkit-scrollbar,.blog-grid::-webkit-scrollbar,
  .include-grid::-webkit-scrollbar,.magnet-grid::-webkit-scrollbar,.usecases::-webkit-scrollbar,
  .cases::-webkit-scrollbar{display:none}
  .services-track>*,.team-grid>*,.blog-grid>*,.include-grid>*,.magnet-grid>*,.usecases>*{
    flex:0 0 82%;scroll-snap-align:start;min-width:0}
  .cases>*{flex:0 0 88%;scroll-snap-align:start}
  /* la card "CTA" tra i servizi resta leggibile nello slider */
  .svc-card.svc-cta{flex:0 0 82%}

  /* hint "scorri" sotto gli slider */
  .slider-hint{display:flex;align-items:center;justify-content:center;gap:.4rem;font-size:.74rem;color:var(--muted);margin-top:-.4rem}
  .slider-hint svg{width:15px;height:15px}

  /* le card team/blog non si alzino col tilt su touch */
  .member,.svc-card,.post-card{transform:none!important}

  /* gallery e feed restano griglie compatte */
  .gallery{grid-template-columns:repeat(2,1fr)}
  .ig-grid{grid-template-columns:repeat(3,1fr)}
  .partners{gap:1.4rem}
  .partner-logo{height:38px;font-size:.85rem}

  /* dropdown interni non servono su mobile (c'è il menu) */
}
@media(max-width:680px){
  /* riduci padding card servizi/include per slider */
  .svc-card{padding:1.6rem 1.4rem}
  .include-card{padding:1.2rem}
  .usecase{padding:1.4rem}
}

/* check-up: aria tra domanda e risposte */
.cu-q h3{margin-bottom:1.5rem;font-size:1.22rem;line-height:1.4}
.cu-q .quiz-opts{margin-top:.2rem}
@media(max-width:680px){.cu-q h3{margin-bottom:1.2rem;font-size:1.12rem}.quiz,.checkup-gate{padding-top:.5rem}}

/* Home: card strumenti (icone) */
.tool-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;box-shadow:var(--shadow);transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .3s}
.tool-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--teal)}
.tool-card .ti{width:52px;height:52px;border-radius:13px;background:var(--navy);color:var(--teal);display:grid;place-items:center;margin-bottom:1rem}
.tool-card .ti svg{width:26px;height:26px}
.tool-card h3{font-family:var(--font-sans);font-size:1.08rem;font-weight:600;color:var(--navy);margin-bottom:.4rem}
.tool-card p{font-size:.86rem;color:var(--muted);flex:1;margin-bottom:.8rem}
.tool-card .tl{color:var(--teal);font-weight:600;font-size:.85rem}
/* due card affiancate (guide + consulente) */
.duo{display:grid;grid-template-columns:1fr;gap:1.4rem}
@media(min-width:760px){.duo{grid-template-columns:1fr 1fr}}
.duo-card{position:relative;overflow:hidden;border-radius:var(--radius);padding:2.2rem;color:#fff;display:flex;flex-direction:column;min-height:240px}
.duo-card.g1{background:linear-gradient(135deg,#1B3A52,#2E6A8E)}
.duo-card.g2{background:linear-gradient(135deg,#15998A,#1D9C8A)}
.duo-card .di{width:50px;height:50px;border-radius:12px;background:rgba(255,255,255,.16);display:grid;place-items:center;margin-bottom:1rem}
.duo-card .di svg{width:26px;height:26px;color:#fff}
.duo-card h3{color:#fff;font-family:var(--font-sans);font-size:1.4rem;font-weight:700;margin-bottom:.5rem}
.duo-card p{color:rgba(255,255,255,.85);font-size:.95rem;flex:1;margin-bottom:1.2rem}
.duo-card .btn{align-self:flex-start}
@media(max-width:680px){.duo-card{padding:1.7rem;min-height:auto}}


/* ════════════ AWARDS SLIDER ════════════ */
.awards-slider-section{position:relative;padding:3.4rem 0;background:linear-gradient(135deg,var(--navy-deep),var(--navy));overflow:hidden}
.awards-slider-section .eyebrow{justify-content:center;color:var(--teal)}
.awards-slider-section .eyebrow::before,.awards-slider-section .eyebrow::after{background:rgba(255,255,255,.25)}
.awards-head{text-align:center;max-width:560px;margin:0 auto 2rem}
.awards-head h2{color:#fff;font-size:clamp(1.5rem,3.2vw,2rem);margin:.4rem 0 .6rem}
.awards-head p{color:rgba(255,255,255,.7);font-size:.95rem;line-height:1.6}
.awards-slider{position:relative;max-width:880px;margin:0 auto;padding:0 12px}
.awards-track{display:flex;gap:1.1rem;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:.4rem 0 1rem;-ms-overflow-style:none;scrollbar-width:none}
.awards-track::-webkit-scrollbar{display:none}
.award-slide{flex:0 0 auto;width:calc((100% - 2.2rem)/3);scroll-snap-align:center}
@media(max-width:760px){.award-slide{width:calc((100% - 1.1rem)/2)}}
@media(max-width:460px){.award-slide{width:78%}}
.award-chip{background:#fff;border-radius:14px;padding:1.3rem 1rem 1.1rem;display:flex;flex-direction:column;align-items:center;text-align:center;box-shadow:0 10px 30px rgba(0,0,0,.18);transition:transform .35s var(--ease)}
.award-chip:hover{transform:translateY(-5px)}
.award-chip img{width:88px;height:auto;object-fit:contain;margin-bottom:.7rem}
.award-chip .ay{font-family:var(--font-sans);font-size:.72rem;font-weight:700;color:var(--teal);letter-spacing:1.5px;text-transform:uppercase}
.award-chip .at{font-size:.74rem;color:var(--muted);margin-top:.15rem}
.aw-arrow{position:absolute;top:42%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.08);color:#fff;display:grid;place-items:center;cursor:pointer;transition:.3s;z-index:2;backdrop-filter:blur(4px)}
.aw-arrow:hover{background:var(--teal);border-color:var(--teal)}
.aw-arrow svg{width:18px;height:18px}
.aw-arrow.prev{left:-6px}.aw-arrow.next{right:-6px}
@media(max-width:760px){.aw-arrow{display:none}}
.aw-dots{display:flex;gap:.4rem;justify-content:center;margin-top:.4rem}
.aw-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.3);cursor:pointer;transition:.3s}
.aw-dot.active{background:var(--teal);width:20px;border-radius:4px}

/* ════════════ CNA SECTION (home) ════════════ */
.cna-strip{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:3.8rem 0}
.cna-strip-inner{display:grid;grid-template-columns:auto 1fr;gap:4rem;align-items:center}
@media(max-width:760px){.cna-strip-inner{grid-template-columns:1fr;gap:2.2rem;text-align:center}}
.cna-logo-block{display:flex;flex-direction:column;align-items:center;gap:1rem;flex-shrink:0}
.cna-logo-box{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem 2.4rem;display:flex;align-items:center;justify-content:center}
.cna-logo-box img{height:56px;width:auto;object-fit:contain}
.cna-badge-pill{display:inline-flex;align-items:center;gap:.4rem;background:var(--teal-light);color:var(--teal);font-size:.75rem;font-weight:700;padding:.4rem 1rem;border-radius:100px;letter-spacing:.5px;white-space:nowrap}
.cna-badge-pill svg{width:13px;height:13px;flex-shrink:0}
.cna-text-block .eyebrow{margin-bottom:.5rem}
@media(max-width:760px){.cna-text-block .eyebrow{justify-content:center}}
.cna-text-block h2{font-size:clamp(1.5rem,3vw,2rem);color:var(--navy);margin:0 0 .9rem}
.cna-text-block .cna-lead{font-size:1rem;color:var(--muted);line-height:1.8;margin:0 0 1.8rem;max-width:560px}
.cna-points{display:grid;grid-template-columns:1fr 1fr;gap:.75rem 1.6rem;margin-bottom:1.8rem}
@media(max-width:560px){.cna-points{grid-template-columns:1fr}}
.cna-point{display:flex;align-items:flex-start;gap:.55rem;font-size:.88rem;color:var(--muted);line-height:1.55;text-align:left}
.cna-point::before{content:"✓";flex-shrink:0;color:var(--teal);font-weight:700;margin-top:1px}
@media(max-width:760px){.cna-lead{text-align:center}.cna-text-block h2{text-align:center}.cna-text-block .eyebrow{justify-content:center}.cna-points{justify-items:start}.cna-text-block .btn{display:block;text-align:center}}

/* ════════════ FOOTER PARTNER + AWARDS ════════════ */
.footer-creds{border-top:1px solid rgba(255,255,255,.1);margin-top:2.5rem;padding-top:1.6rem;display:flex;flex-wrap:wrap;gap:1.6rem 2.5rem;align-items:flex-start}
.footer-cred-group{display:flex;flex-direction:column;gap:.7rem}
.footer-cred-label{font-size:.7rem;font-weight:700;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:1.6px}
.footer-cred-logos{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.footer-cred-logos .chip{background:#fff;border-radius:8px;padding:6px 8px;display:flex;align-items:center;justify-content:center;height:42px;box-shadow:0 2px 8px rgba(0,0,0,.15)}
.footer-cred-logos .chip img{height:30px;width:auto;object-fit:contain;display:block}
.footer-cred-logos .chip.cna{padding:6px 12px}
.footer-cred-logos .chip.cna img{height:22px}
@media(max-width:560px){.footer-creds{gap:1.3rem 2rem}.footer-cred-logos .chip{height:38px}.footer-cred-logos .chip img{height:26px}}

/* ── ABOUT PHOTO SLIDER ───────────────────────────────────── */
.about-slider{position:relative;width:100%;aspect-ratio:4/5;border-radius:var(--radius);box-shadow:var(--shadow-lg);overflow:hidden}
.about-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.1s ease;border-radius:0;aspect-ratio:auto;box-shadow:none}
.about-slider img.as-active{opacity:1}
.about-visual .about-slider + .about-badge{position:absolute;bottom:-22px;left:-10px}
@media(max-width:760px){.about-visual .about-slider + .about-badge{left:0;bottom:-16px}}

/* ── GALLERY REAL PHOTOS ───────────────────────────────────── */
.gallery figure{position:relative;overflow:hidden;border-radius:var(--radius-sm)}
.gallery figure img{transition:transform .4s var(--ease)}
.gallery figure:hover img{transform:scale(1.05)}
