/* ================================================================
   DORA CLEAN SERVICES — Main Stylesheet
   ================================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* ── PALETTE UFFICIALE DORA CLEAN ── */
  --sky:        #04AEFA;   /* blu brillante primario */
  --sky-dark:   #19578E;   /* blu scuro brand       */
  --sky-darker: #245483;   /* blu profondo brand     */
  --sky-darkest:#0B3458;   /* navy brand             */
  --sky-light:  #e8f5fe;
  --sky-mid:    #cce9fc;
  --sky-border: #8ED2FF;
  --gold:       #CAB23A;   /* oro brand              */
  --gold-dark:  #A08D2C;
  --navy:       #12314F;   /* dark footer brand      */
  --navy-mid:   #19578E;
  --slate:      #4a6080;
  --slate-lt:   #7a94b0;
  --border:     #dde8f2;
  --bg:         #f4f8fc;
  --white:      #ffffff;
  --green:      #10b981;
  --amber:      #f59e0b;
  --r-xs:  6px;
  --r-sm:  8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --sh-xs: 0 1px 2px rgba(0,0,0,.05);
  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh:    0 4px 16px rgba(0,0,0,.07);
  --sh-md: 0 8px 30px rgba(0,0,0,.09);
  --sh-lg: 0 16px 50px rgba(0,0,0,.11);
  --max-w: 1200px;
  --nav-h: 96px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans','Inter',system-ui,sans-serif;color:var(--navy);background:var(--white);line-height:1.65;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}
input,textarea,select{font:inherit}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1{font-size:clamp(2rem,4.5vw,3.25rem);font-weight:800;line-height:1.15}
h2{font-size:clamp(1.55rem,3vw,2.25rem);font-weight:700;line-height:1.2}
h3{font-size:clamp(1.05rem,2vw,1.3rem);font-weight:700;line-height:1.3}
h4{font-size:1rem;font-weight:600}
p{color:var(--slate);font-size:.95rem;line-height:1.75}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
.section   {padding:3.75rem 0}
.section-sm{padding:2.5rem 0}
.section-lg{padding:5rem 0}
.section-bg{background:var(--bg)}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.sec-header{text-align:center;max-width:680px;margin:0 auto 2.25rem}
.sec-header h2{margin-bottom:.75rem}
.sec-header p{font-size:1.02rem}
.sec-label{
  display:inline-block;background:rgba(202,178,58,.15);color:var(--gold-dark);
  border:1px solid rgba(202,178,58,.3);
  padding:.3rem 1rem;border-radius:999px;font-size:.75rem;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;margin-bottom:.9rem
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.65rem 1.4rem;border-radius:var(--r-sm);font-size:.9rem;font-weight:600;
  text-decoration:none;transition:all .22s ease;white-space:nowrap;border:2px solid transparent;cursor:pointer
}
.btn-primary{background:var(--sky);color:#fff;border-color:var(--sky);box-shadow:0 2px 10px rgba(14,165,233,.28)}
.btn-primary:hover{background:var(--sky-dark);border-color:var(--sky-dark);transform:translateY(-1px);box-shadow:0 6px 22px rgba(14,165,233,.38)}
.btn-outline{background:transparent;border-color:var(--sky);color:var(--sky)}
.btn-outline:hover{background:var(--sky);color:#fff}
.btn-white{background:#fff;color:var(--sky-dark);border-color:#fff}
.btn-white:hover{background:var(--sky-light)}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.4);color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.65)}
.btn-sm {padding:.42rem .9rem;font-size:.82rem}
.btn-lg {padding:.85rem 1.75rem;font-size:1rem;border-radius:var(--r)}
.btn-xl {padding:1rem 2.2rem;font-size:1.05rem;border-radius:var(--r)}
.btn-full{width:100%;justify-content:center}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav{
  position:sticky;top:0;z-index:200;
  background:rgba(255,255,255,.96);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);height:var(--nav-h)
}
.nav-inner{
  max-width:var(--max-w);margin:0 auto;padding:0 1.5rem;
  height:100%;display:flex;align-items:center;justify-content:space-between;gap:1.5rem
}
.nav-logo{display:flex;align-items:center;gap:.65rem;flex-shrink:0}
.nav-logo img{height:82px;width:auto;object-fit:contain}
.nav-logo-fallback{font-size:1.1rem;font-weight:800;color:var(--navy)}
.nav-logo-fallback span{color:var(--sky)}
.nav-links{display:flex;align-items:center;gap:.2rem}
.nav-links a{
  padding:.48rem .85rem;border-radius:var(--r-sm);font-size:.88rem;font-weight:500;
  color:var(--slate);transition:color .2s,background .2s
}
.nav-links a:hover,.nav-links a.active{color:var(--sky-dark);background:var(--sky-light)}
.nav-right{display:flex;align-items:center;gap:.75rem}
.nav-tel{
  font-size:.84rem;font-weight:600;color:var(--navy);
  display:flex;align-items:center;gap:.35rem;transition:color .2s
}
.nav-tel:hover{color:var(--sky)}
.hamburger{display:none;flex-direction:column;gap:5px;padding:.4rem}
.hamburger span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all .3s}
.mobile-menu{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;z-index:199;
  background:#fff;border-bottom:1px solid var(--border);padding:1.5rem;
  flex-direction:column;gap:.4rem;box-shadow:var(--sh-md)
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  padding:.75rem 1rem;border-radius:var(--r-sm);font-size:.95rem;
  font-weight:500;color:var(--navy);transition:background .2s
}
.mobile-menu a:hover{background:var(--sky-light);color:var(--sky-darker)}
.mobile-menu .btn{margin-top:.5rem;justify-content:center}
@media(max-width:900px){
  .nav-links,.nav-tel{display:none}
  .hamburger{display:flex}
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero{
  background:linear-gradient(150deg, #0B3458 0%, #19578E 45%, #04AEFA 100%);
  padding:4rem 1.5rem 3.5rem;
  position:relative;overflow:hidden;text-align:center
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(202,178,58,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(4,174,250,.25) 0%, transparent 50%);
  pointer-events:none
}
.hero::after{
  content:'';position:absolute;bottom:-2px;left:0;right:0;height:60px;
  background:var(--white);
  clip-path:ellipse(55% 100% at 50% 100%)
}
.hero-label{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.15);backdrop-filter:blur(8px);
  color:#fff;border:1px solid rgba(255,255,255,.3);
  padding:.4rem 1.1rem;border-radius:999px;font-size:.78rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:1rem
}
.hero h1{max-width:820px;margin:0 auto;color:#fff;text-shadow:0 2px 20px rgba(0,0,0,.2)}
.hero h1 em{font-style:normal;color:var(--gold)}
.hero-slogan{
  font-size:clamp(1rem,2vw,1.22rem);color:rgba(255,255,255,.88);max-width:580px;
  margin:.6rem auto 1.5rem;font-weight:500;line-height:1.6
}
.hero-actions{
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;
  gap:1rem;margin-bottom:2rem
}
.hero .btn-primary{background:var(--gold);color:var(--navy);border-color:var(--gold);box-shadow:0 4px 20px rgba(202,178,58,.4)}
.hero .btn-primary:hover{background:var(--gold-dark);border-color:var(--gold-dark);color:#fff}
.hero .btn-outline{border-color:rgba(255,255,255,.5);color:#fff}
.hero .btn-outline:hover{background:rgba(255,255,255,.15);border-color:#fff}
.hero-trust{
  display:flex;justify-content:center;flex-wrap:wrap;gap:0;
  max-width:700px;margin:0 auto;
  background:rgba(255,255,255,.12);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--r-xl);padding:.25rem
}
.hero-trust-item{
  flex:1;min-width:130px;text-align:center;padding:1.2rem .75rem
}
.hero-trust-item+.hero-trust-item{border-left:1px solid rgba(255,255,255,.2)}
.hero-trust-item strong{display:block;font-size:1.65rem;font-weight:800;color:var(--gold);line-height:1}
.hero-trust-item span{font-size:.76rem;color:rgba(255,255,255,.8);font-weight:500;margin-top:.25rem;display:block}

/* ── HERO BADGES ────────────────────────────────────────────── */
.hero-badges{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;
  margin:1.5rem auto .5rem;max-width:780px
}
.hero-badge{
  display:inline-flex;align-items:center;gap:.35rem;
  background:rgba(255,255,255,.15);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;font-size:.78rem;font-weight:600;
  padding:.4rem .9rem;border-radius:999px;
  letter-spacing:.02em
}

/* ── HERO PHOTO STRIP ───────────────────────────────────────── */
.hero-photo-strip{
  display:flex;gap:1rem;justify-content:center;align-items:center;
  margin-top:2rem;flex-wrap:wrap
}
.hero-photo-pill{
  width:100px;height:100px;border-radius:50%;
  overflow:hidden;border:3px solid rgba(255,255,255,.4);
  box-shadow:0 4px 16px rgba(0,0,0,.25);flex-shrink:0;
  transition:transform .25s;
}
.hero-photo-pill:hover{transform:scale(1.07)}
.hero-photo-pill img{width:100%;height:100%;object-fit:cover;display:block}

/* ── PHOTO SHOWCASE ─────────────────────────────────────────── */
.photo-showcase{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
  max-width:var(--max-w);margin:0 auto
}
.photo-tile{
  border-radius:var(--r-lg);overflow:hidden;
  aspect-ratio:4/3;position:relative;cursor:pointer
}
.photo-tile img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .4s ease
}
.photo-tile:hover img{transform:scale(1.05)}
.photo-tile-label{
  position:absolute;bottom:0;left:0;right:0;
  padding:.75rem 1rem;
  background:linear-gradient(transparent,rgba(0,0,0,.65));
  color:#fff;font-size:.8rem;font-weight:600
}
@media(max-width:768px){.photo-showcase{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.photo-showcase{grid-template-columns:repeat(2,1fr)}}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem;
  max-width:var(--max-w);margin:0 auto
}
.why-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);
  padding:1.6rem 1.5rem;transition:transform .25s,box-shadow .25s;text-align:center
}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--sh-md)}
.why-icon{
  width:64px;height:64px;border-radius:var(--r-lg);
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;margin:0 auto 1.25rem
}
.why-card h3{margin-bottom:.6rem}
.why-card p{font-size:.88rem}

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem;
  max-width:var(--max-w);margin:0 auto
}
.service-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--r-xl);
  overflow:hidden;transition:transform .25s,box-shadow .25s;
  display:flex;flex-direction:column
}
.service-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg)}
.sc-thumb{
  height:185px;display:flex;align-items:center;
  justify-content:center;font-size:3rem;position:relative;
  overflow:hidden;background-size:cover;background-position:center
}
.sc-thumb::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,.5) 100%)
}
.sc-thumb-emoji{position:relative;z-index:2;filter:drop-shadow(0 2px 10px rgba(0,0,0,.5))}
.sc-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.sc-body h3{margin-bottom:.55rem}
.sc-body p{font-size:.87rem;flex:1;margin-bottom:1.25rem}
.sc-tag{
  display:inline-block;padding:.22rem .65rem;border-radius:999px;
  font-size:.73rem;font-weight:600;margin-bottom:1rem
}

/* ── STATS BANNER ───────────────────────────────────────────── */
.stats-section{
  background:linear-gradient(135deg,#0B3458 0%,#19578E 60%,#245483 100%);
  padding:3.5rem 1.5rem;text-align:center
}
.stats-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
  max-width:860px;margin:0 auto
}
.stat-item{}
.stat-value{
  font-size:clamp(2.2rem,4.5vw,3.25rem);font-weight:800;
  color:var(--sky);line-height:1;margin-bottom:.4rem
}
.stat-label{font-size:.9rem;color:rgba(255,255,255,.8);font-weight:500}
.stat-sub{font-size:.77rem;color:rgba(255,255,255,.45);margin-top:.15rem}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
  max-width:var(--max-w);margin:0 auto
}
.review-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);
  padding:1.25rem;transition:transform .25s,box-shadow .25s
}
.review-card:hover{transform:translateY(-3px);box-shadow:var(--sh-md)}
.review-stars{color:var(--amber);font-size:.95rem;letter-spacing:.1rem;margin-bottom:.85rem}
.review-text{
  font-size:.9rem;color:#374151;font-style:italic;
  line-height:1.7;margin-bottom:1.25rem
}
.reviewer{display:flex;align-items:center;gap:.85rem}
.rev-avatar{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.9rem;color:#fff;flex-shrink:0
}
.rev-name{font-size:.9rem;font-weight:600;color:var(--navy);margin-bottom:.1rem}
.rev-meta{font-size:.77rem;color:var(--slate)}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq-item{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--r);overflow:hidden
}
.faq-q{
  width:100%;text-align:left;padding:1.2rem 1.5rem;font-size:.93rem;font-weight:600;
  color:var(--navy);display:flex;justify-content:space-between;align-items:center;
  gap:1rem;background:none;border:none;cursor:pointer;transition:background .2s
}
.faq-q:hover{background:var(--sky-light)}
.faq-icon{font-size:1.1rem;flex-shrink:0;transition:transform .3s;color:var(--sky)}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{
  max-height:0;overflow:hidden;padding:0 1.5rem;
  transition:max-height .35s ease,padding .3s
}
.faq-item.open .faq-a{max-height:240px;padding:0 1.5rem 1.25rem}
.faq-a p{font-size:.87rem}

/* ── BLOG GRID ──────────────────────────────────────────────── */
.blog-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem;
  max-width:var(--max-w);margin:0 auto
}
.blog-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);
  overflow:hidden;transition:transform .25s,box-shadow .25s;
  display:flex;flex-direction:column
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}
.bc-thumb{
  height:200px;display:flex;align-items:center;
  justify-content:center;font-size:3.5rem;
  background-size:cover;background-position:center;position:relative;overflow:hidden
}
.bc-thumb::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,.18)}
.bc-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.bc-meta{display:flex;align-items:center;gap:.65rem;margin-bottom:.75rem;flex-wrap:wrap}
.bc-cat{
  background:var(--sky-mid);color:var(--sky-darker);
  padding:.2rem .65rem;border-radius:999px;
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em
}
.bc-date{font-size:.77rem;color:var(--slate-lt)}
.bc-body h3{margin-bottom:.55rem;font-size:1rem}
.bc-body p{font-size:.85rem;flex:1;margin-bottom:1.25rem}
.bc-link{
  font-size:.85rem;font-weight:600;color:var(--sky);
  display:flex;align-items:center;gap:.3rem;margin-top:auto;transition:gap .2s
}
.blog-card:hover .bc-link{gap:.6rem}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner{
  background:linear-gradient(135deg,#0B3458 0%,#19578E 50%,#04AEFA 100%);
  padding:3.5rem 1.5rem;text-align:center
}
.cta-banner h2{color:#fff;margin-bottom:.75rem}
.cta-banner p{color:rgba(255,255,255,.82);max-width:520px;margin:0 auto 2rem;font-size:1.02rem}
.cta-banner .btn-white:hover{background:var(--sky-light);color:var(--sky-darker)}

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero{
  background:linear-gradient(135deg,#0B3458 0%,#19578E 60%,#04AEFA 100%);
  padding:3rem 1.5rem 2.75rem;text-align:center;color:#fff
}
.page-hero h1{color:#fff;margin-bottom:.75rem}
.page-hero p{color:rgba(255,255,255,.75);max-width:580px;margin:0 auto;font-size:1.02rem}
.breadcrumb{
  display:flex;align-items:center;justify-content:center;
  gap:.5rem;font-size:.8rem;color:rgba(255,255,255,.5);margin-bottom:1.5rem
}
.breadcrumb a{color:rgba(255,255,255,.7);transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:rgba(255,255,255,.4)}

/* ── SERVICE FEATURED IMAGE ─────────────────────────────────── */
.service-featured{
  width:100%;border-radius:var(--r-lg);overflow:hidden;
  aspect-ratio:16/7;margin-bottom:2.25rem;box-shadow:var(--sh-md)
}
.service-featured img{width:100%;height:100%;object-fit:cover;display:block}

/* ── SERVICE DETAIL PAGE ────────────────────────────────────── */
.service-layout{display:grid;grid-template-columns:1fr 340px;gap:3.5rem;max-width:var(--max-w);margin:0 auto}
.s-main h2{margin-bottom:1rem}
.s-main p{margin-bottom:1.25rem}
.check-list{display:flex;flex-direction:column;gap:.65rem;margin:1.5rem 0}
.check-list li{
  display:flex;align-items:flex-start;gap:.75rem;
  font-size:.9rem;color:var(--navy)
}
.check-list li::before{
  content:'✓';width:22px;height:22px;
  background:var(--sky-mid);color:var(--sky-darker);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:.73rem;font-weight:700;flex-shrink:0;margin-top:.1rem
}
.sidebar-card{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:1.75rem;margin-bottom:1.25rem
}
.sidebar-card h4{margin-bottom:1rem;color:var(--navy)}
.sidebar-contact-item{
  display:flex;gap:.75rem;align-items:center;margin-bottom:.75rem;
  font-size:.87rem;color:var(--navy)
}
.steps{display:flex;flex-direction:column;gap:1.1rem;margin:2rem 0}
.step{
  display:flex;align-items:flex-start;gap:1.25rem;
  padding:1.2rem;background:var(--bg);border-radius:var(--r);border:1px solid var(--border)
}
.step-num{
  width:36px;height:36px;background:var(--sky);color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.88rem;flex-shrink:0
}
.step h4{color:var(--navy);margin-bottom:.2rem}
.step p{font-size:.86rem}
@media(max-width:860px){
  .service-layout{grid-template-columns:1fr}
  .s-sidebar{order:-1}
}

/* ── BLOG PAGE ──────────────────────────────────────────────── */
.blog-page-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem;
  max-width:var(--max-w);margin:0 auto
}
@media(max-width:900px){.blog-page-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.blog-page-grid{grid-template-columns:1fr}}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;max-width:var(--max-w);margin:0 auto}
.contact-info h2{margin-bottom:.75rem}
.contact-info>p{margin-bottom:2rem}
.c-item{
  display:flex;align-items:flex-start;gap:1rem;padding:1rem 1.25rem;
  background:var(--bg);border:1px solid var(--border);border-radius:var(--r);
  margin-bottom:.75rem
}
.c-icon{
  width:40px;height:40px;background:var(--sky-mid);border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0
}
.c-text strong{display:block;font-size:.78rem;color:var(--slate);font-weight:600;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.15rem}
.c-text a,.c-text span{font-size:.9rem;font-weight:500;color:var(--navy)}
.c-text a:hover{color:var(--sky)}
.wa-btn-big{
  display:flex;align-items:center;justify-content:center;gap:.65rem;
  background:#25d366;color:#fff;padding:.95rem 1.5rem;border-radius:var(--r);
  font-weight:700;font-size:.95rem;text-decoration:none;margin-top:1.5rem;
  box-shadow:0 4px 16px rgba(37,211,102,.3);transition:all .22s
}
.wa-btn-big:hover{background:#1fb955;transform:translateY(-1px);box-shadow:0 8px 28px rgba(37,211,102,.38)}
.contact-form{background:var(--bg);border:1px solid var(--border);border-radius:var(--r-xl);padding:2.5rem}
.contact-form h3{margin-bottom:.4rem}
.f-sub{font-size:.84rem;color:var(--slate);margin-bottom:1.75rem}
.fg{margin-bottom:1rem}
.fg label{display:block;font-size:.8rem;font-weight:600;color:var(--navy);margin-bottom:.35rem}
.fg input,.fg select,.fg textarea{
  width:100%;padding:.72rem 1rem;background:#fff;
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  font-size:.9rem;color:var(--navy);outline:none;transition:border-color .2s,box-shadow .2s
}
.fg input:focus,.fg select:focus,.fg textarea:focus{
  border-color:var(--sky);box-shadow:0 0 0 3px rgba(14,165,233,.12)
}
.fg textarea{min-height:120px;resize:vertical}
.f-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.f-note{text-align:center;font-size:.75rem;color:var(--slate-lt);margin-top:.6rem}
.map-wrap{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--border);box-shadow:var(--sh);margin-top:2rem}
@media(max-width:768px){
  .contact-layout{grid-template-columns:1fr;gap:2.5rem}
  .f-row{grid-template-columns:1fr}
}

/* ── SOCIAL SHARE / PAGE BADGES ─────────────────────────────── */
.social-links{display:flex;gap:.65rem}
.social-link{
  width:38px;height:38px;border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;font-size:.85rem;
  color:#fff;background:rgba(255,255,255,.1);text-decoration:none;
  transition:background .2s;font-weight:700
}
.social-link:hover{background:var(--sky)}
.social-link.fb:hover{background:#1877f2}
.social-link.ig:hover{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.social-link.wa:hover{background:#25d366}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer{background:#1a3350;color:rgba(255,255,255,.68);padding:3rem 0 0}
.footer-grid{
  display:grid;grid-template-columns:2.2fr 1fr 1fr 1.3fr;gap:3rem;
  max-width:var(--max-w);margin:0 auto;padding:0 1.5rem 2.5rem
}
.footer-brand .fb-logo{height:38px;width:auto;margin-bottom:1.1rem;filter:brightness(0) invert(1)}
.footer-brand p{font-size:.84rem;line-height:1.8;max-width:290px;color:rgba(255,255,255,.95)}
.footer-col h5{color:#fff;font-size:.87rem;font-weight:700;margin-bottom:1.1rem;letter-spacing:.02em}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col ul li{font-size:.83rem}
.footer-col ul a{color:rgba(255,255,255,.58);transition:color .2s}
.footer-col ul a:hover{color:#fff}
.footer-col ul span{color:rgba(255,255,255,.58)}
.footer-social{display:flex;gap:.6rem;margin-top:1.25rem}
.footer-disclaimer{
  background:#f1f5f9;
  color:#64748b;
  text-align:center;padding:1.1rem 1.5rem;font-size:.71rem;
  line-height:1.7;border-top:1px solid #dde8f2
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;padding:1.4rem 1.5rem;font-size:.77rem;color:rgba(255,255,255,.42)
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;gap:2.25rem}}
@media(max-width:540px){.footer-grid{grid-template-columns:1fr}}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-wrap{position:fixed;bottom:1.75rem;right:1.75rem;z-index:999;display:flex;flex-direction:column;align-items:flex-end;gap:.6rem}
.wa-menu{
  display:flex;flex-direction:column;gap:.45rem;
  opacity:0;pointer-events:none;transform:translateY(10px);
  transition:opacity .25s,transform .25s
}
.wa-wrap.open .wa-menu{opacity:1;pointer-events:all;transform:translateY(0)}
.wa-menu-item{
  display:flex;align-items:center;gap:.6rem;
  background:#fff;border-radius:999px;
  padding:.5rem 1rem .5rem .65rem;
  box-shadow:0 2px 12px rgba(0,0,0,.13);
  text-decoration:none;white-space:nowrap;
  font-size:.82rem;font-weight:600;color:#111;
  transition:transform .18s,box-shadow .18s
}
.wa-menu-item:hover{transform:translateX(-3px);box-shadow:0 4px 18px rgba(0,0,0,.18)}
.wa-menu-item span.wa-dot{width:28px;height:28px;border-radius:50%;background:#25d366;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.wa-menu-item span.wa-dot svg{width:15px;height:15px;fill:#fff}
.wa-float{
  position:relative;
  width:56px;height:56px;border-radius:50%;background:#25d366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  cursor:pointer;border:none;
  transition:transform .22s,box-shadow .22s;flex-shrink:0
}
.wa-float:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(37,211,102,.55)}
.wa-float svg{width:28px;height:28px;fill:#fff;transition:transform .25s}
.wa-wrap.open .wa-float svg{transform:rotate(45deg)}
.wa-float-dot{
  position:absolute;top:2px;right:2px;width:13px;height:13px;
  background:#ef4444;border-radius:50%;border:2px solid #fff
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-d1{transition-delay:.1s}
.reveal-d2{transition-delay:.2s}
.reveal-d3{transition-delay:.3s}
.reveal-d4{transition-delay:.4s}

/* ── RESPONSIVE GLOBAL ──────────────────────────────────────── */
@media(max-width:960px){
  .why-grid,.services-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:580px){
  .why-grid,.services-grid,.blog-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr}
  .hero-trust{flex-direction:column;gap:0}
  .hero-trust-item+.hero-trust-item{border-left:none;border-top:1px solid var(--border)}
}

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;z-index:9999;
  background:#12314F;color:#fff;
  padding:1.1rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  box-shadow:0 -4px 20px rgba(0,0,0,.18);
  transform:translateY(100%);transition:transform .4s ease
}
.cookie-banner.show{transform:translateY(0)}
.cookie-banner p{margin:0;font-size:.85rem;color:rgba(255,255,255,.9);flex:1;min-width:200px}
.cookie-banner a{color:var(--sky);text-decoration:underline}
.cookie-btns{display:flex;gap:.65rem;flex-shrink:0}
.cookie-btn-ok{background:var(--sky);color:#fff;border:none;padding:.55rem 1.4rem;border-radius:var(--r-sm);font-weight:700;font-size:.85rem;cursor:pointer;transition:background .2s}
.cookie-btn-ok:hover{background:var(--sky-dark)}
.cookie-btn-info{background:transparent;color:rgba(255,255,255,.75);border:1px solid rgba(255,255,255,.3);padding:.55rem 1rem;border-radius:var(--r-sm);font-size:.85rem;cursor:pointer;transition:all .2s}
.cookie-btn-info:hover{background:rgba(255,255,255,.1)}

/* ── POPUP CONVERSIONE ──────────────────────────────────────── */
.popup-overlay{
  position:fixed;inset:0;z-index:10000;
  background:rgba(0,0,0,.55);backdrop-filter:blur(3px);
  display:flex;align-items:center;justify-content:center;padding:1rem;
  opacity:0;pointer-events:none;transition:opacity .35s
}
.popup-overlay.show{opacity:1;pointer-events:all}
.popup-box{
  background:#fff;border-radius:var(--r-xl);padding:2.5rem 2rem;
  max-width:480px;width:100%;text-align:center;position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  transform:translateY(30px);transition:transform .35s
}
.popup-overlay.show .popup-box{transform:translateY(0)}
.popup-close{
  position:absolute;top:1rem;right:1rem;
  background:var(--bg);border:none;border-radius:50%;
  width:32px;height:32px;font-size:1.1rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;color:var(--slate)
}
.popup-close:hover{background:var(--border)}
.popup-emoji{font-size:3rem;margin-bottom:.75rem}
.popup-box h3{font-size:1.35rem;margin-bottom:.5rem;color:var(--navy)}
.popup-box p{font-size:.9rem;color:var(--slate);margin-bottom:1.5rem}
.popup-btns{display:flex;flex-direction:column;gap:.65rem}

/* ── TELEFONO MOBILE ────────────────────────────────────────── */
@media(max-width:768px){
  .nav-tel{
    display:flex!important;
    position:fixed;bottom:5.5rem;left:1.75rem;z-index:998;
    background:#0B3458;color:#fff!important;
    padding:.65rem 1.1rem;border-radius:999px;
    font-size:.82rem;font-weight:700;
    box-shadow:0 4px 16px rgba(0,0,0,.25);
    text-decoration:none;white-space:nowrap
  }
}
