/* ============================================================
   STUDIO DE PROSPERIS – CSS v3
   Stile: arioso, ordinato, ispirato a studiodonati.it
   Colori: Arancione #F5A623 | Blu Navy #1E3A6E
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #F5A623;
  --orange-dark: #d48c10;
  --orange-pale: #FFF8EC;
  --blue:        #1E3A6E;
  --blue-light:  #2c5aa0;
  --blue-pale:   #EEF3FA;
  --blue-dark:   #152d56;
  --gray-bg:     #F8F9FC;
  --gray-line:   #E4E8F0;
  --text:        #1a1a2a;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --white:       #ffffff;
  --shadow-sm:   0 2px 10px rgba(30,58,110,0.07);
  --shadow:      0 6px 28px rgba(30,58,110,0.10);
  --shadow-lg:   0 12px 48px rgba(30,58,110,0.14);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

/* ─── CONTAINER ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 12.5px;
  padding: 9px 0;
  letter-spacing: 0.1px;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.topbar span { display: flex; align-items: center; gap: 7px; }
.topbar a { color: rgba(255,255,255,0.88); }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); font-size: 11px; }
.topbar-social { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.topbar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%; font-size: 13px; color: white;
  transition: transform var(--transition);
}
.topbar-social a:nth-child(1) { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.topbar-social a:nth-child(2) { background: #25D366; }
.topbar-social a:hover { transform: scale(1.15); color: white; }

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  padding: 16px 0;
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logos { display: flex; align-items: center; gap: 16px; }
.logo-cdl { height: 52px; width: auto; object-fit: contain; }
.header-title { display: flex; flex-direction: column; line-height: 1.35; }
.studio-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.2px;
}
.studio-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; color: var(--orange); font-weight: 600;
  letter-spacing: 0.3px;
}

/* NAV */
nav { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 2px; }
.nav-links a {
  display: block; padding: 9px 14px;
  border-radius: 50px;
  font-weight: 600; font-size: 13.5px;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-pale);
  color: var(--blue);
}
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 22px;
  margin-left: 6px;
  font-weight: 700;
}
.nav-links a.nav-cta:hover { background: var(--orange-dark); color: var(--white); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 25px; height: 2.5px;
  background: var(--blue); border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 14.5px;
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.1px;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.38); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); border-radius: 50px; }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 55%, #2c5fa8 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 15% 55%, rgba(245,166,35,0.13) 0%, transparent 48%),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.05) 0%, transparent 38%);
}
.hero-bg-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='https://wooxstore.com/cdn/shop/files/the-elegante-sporter-9091829_5000x.jpg?v=1782435848 cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #f7be60, var(--orange));
  z-index: 3;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 32px 90px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.38);
  color: #f7c84a;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 5.2vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 17.5px);
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  margin: 0 auto 42px;
  line-height: 1.85;
}
.hero-sub strong { color: #f7c84a; font-weight: 700; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-logos-strip {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 20px 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-logo-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.hero-logo-item img {
  height: 54px; object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
.hero-logo-sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.20);
}
.up-micro {
  font-size: 9px; font-weight: 700;
  color: rgba(245,166,35,0.90);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--blue);
  border-bottom: 3px solid var(--orange);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 48px 32px;
  gap: 16px;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 8px 24px;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-plus {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.8px;
  text-align: center;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 64px;
  background: rgba(255,255,255,0.14);
}

/* ════════════════════════════════════════
   SECTIONS – layout comune
════════════════════════════════════════ */
.section          { padding: 120px 0; }
.section-problems { background: var(--white); }
.section-caf      { background: var(--gray-bg); border-top: 1px solid var(--gray-line); }
.section-patronato{ background: var(--white); }
.section-perche   { background: var(--blue); }
.section-casi     { background: var(--gray-bg); border-top: 1px solid var(--gray-line); }
.section-reviews  { background: var(--white); }
.section-contatti { background: var(--gray-bg); border-top: 1px solid var(--gray-line); }

.section-header   { text-align: center; margin-bottom: 72px; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-eyebrow.light {
  background: rgba(245,166,35,0.14);
  color: #f7c84a;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-perche .section-header h2 { color: var(--white); }
.underline-accent {
  width: 52px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 22px;
}
.section-desc {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.85;
}

/* Logo block sopra titolo sezione */
.section-logo-block {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  margin-bottom: 22px;
}
.section-logo {
  height: 68px; object-fit: contain;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

/* ════════════════════════════════════════
   SEZIONE PROBLEMA–SOLUZIONE
════════════════════════════════════════ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--orange);
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prob-icon {
  width: 60px; height: 60px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--orange);
  margin-bottom: 24px;
}
.problem-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--blue); margin-bottom: 14px;
  line-height: 1.4;
}
.problem-card p { font-size: 14.5px; color: var(--text-mid); margin-bottom: 22px; line-height: 1.8; }
.prob-arrow {
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-line);
}

/* BOX CHI SIAMO */
.chisiamo-box {
  display: flex; gap: 40px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 48px 52px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.chisiamo-avatar {
  width: 90px; height: 90px; flex-shrink: 0;
  background: rgba(245,166,35,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--orange);
  border: 2px solid rgba(245,166,35,0.35);
}
.chisiamo-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.chisiamo-text p {
  font-size: 15px; color: rgba(255,255,255,0.78);
  line-height: 1.85;
}
.chisiamo-text strong { color: #f7c84a; }
.chisiamo-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 22px;
}
.chisiamo-badges span {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.chisiamo-badges span i { color: var(--orange); }

/* ════════════════════════════════════════
   SERVICES GRID (CAF + Patronato)
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.service-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.caf-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-sm);
}
.caf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.patronato-card {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-sm);
}
.patronato-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-icon.orange { background: var(--orange-pale); color: var(--orange); }
.service-icon.blue   { background: var(--blue-pale);   color: var(--blue); }
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--blue); margin-bottom: 10px;
  line-height: 1.35;
}
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* CTA section */
.section-cta {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.section-cta p { font-size: 16px; color: var(--text-mid); }
.section-cta p strong { color: var(--blue); font-weight: 700; }

/* ════════════════════════════════════════
   PERCHÉ SCEGLIERCI
════════════════════════════════════════ */
.section-perche { position: relative; overflow: hidden; }
.section-perche::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 75%, rgba(245,166,35,0.08) 0%, transparent 45%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,0.03) 0%, transparent 38%);
}
.section-perche .container { position: relative; z-index: 1; }
.perche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.perche-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 44px 28px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.perche-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.10);
}
.perche-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), #f7be60);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(245,166,35,0.28);
}
.perche-item h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--white); font-size: 17px; font-weight: 700;
  margin-bottom: 12px;
}
.perche-item p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.80;
}

/* ════════════════════════════════════════
   CASI PRATICI
════════════════════════════════════════ */
.casi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.caso-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.caso-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.caso-header {
  padding: 26px 30px;
  display: flex; align-items: center; gap: 14px;
}
.caf-header    { background: var(--orange-pale); }
.patronato-header { background: var(--blue-pale); }
.caso-icon { font-size: 28px; }
.caf-header    .caso-icon { color: var(--orange); }
.patronato-header .caso-icon { color: var(--blue); }
.caso-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
}
.caf-header    .caso-tag { color: var(--orange); }
.patronato-header .caso-tag { color: var(--blue); }
.caso-body { padding: 30px; }
.caso-step { margin-bottom: 20px; }
.step-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 10px;
}
.step-label.problem  { background: #FEE2E2; color: #B91C1C; }
.step-label.solution { background: #DCFCE7; color: #15803D; }
.caso-step p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.caso-result {
  display: flex; align-items: center; gap: 10px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px; font-weight: 700; color: var(--orange);
  margin-top: 12px;
}
.caso-result i { font-size: 18px; }

/* ════════════════════════════════════════
   TESTIMONIANZE
════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  border-top: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute; top: 10px; right: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 72px; font-weight: 900;
  color: var(--orange); opacity: 0.12;
  line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }
.review-card > p { font-size: 14px; color: var(--text-mid); line-height: 1.80; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 3px; padding-top: 18px; border-top: 1px solid var(--gray-line); }
.review-name { font-size: 14px; font-weight: 700; color: var(--blue); }
.review-city { font-size: 12px; color: var(--text-light); }

/* ════════════════════════════════════════
   CONTATTI
════════════════════════════════════════ */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contatto-item {
  display: flex; align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gray-line);
}
.contatto-item:last-of-type { border-bottom: none; }
.contatti-info > .contatto-item:last-of-type { border-bottom: none; }
.contatto-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--blue);
  color: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wa-bg { background: #25D366 !important; }
.ig-bg { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888) !important; }
.contatto-item strong {
  display: block; color: var(--text-light);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.8px; font-weight: 700;
  margin-bottom: 4px;
}
.contatto-item span,
.contatto-item a { font-size: 15px; color: var(--text); font-weight: 500; }
.contatto-item a:hover { color: var(--orange); }
.wa-link { color: #128C7E !important; font-weight: 700; }
.wa-link:hover { color: #075E54 !important; }

/* Orari box */
.orari-box {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 28px 0;
}
.orari-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 9px;
}
.orari-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.orari-row.closed { border-bottom: none; padding-bottom: 0; opacity: 0.45; }
.orari-day { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.90); }
.orari-time { font-size: 14px; text-align: right; line-height: 1.7; color: rgba(255,255,255,0.80); font-weight: 500; }
.orari-closed { font-size: 14px; color: rgba(255,255,255,0.55); }
.orari-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  background: rgba(245,166,35,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 10px 0;
}
.orari-closed i { color: rgba(255,255,255,0.35); margin-right: 4px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; }

/* Form */
.contatti-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--blue); margin-bottom: 30px;
  display: flex; align-items: center; gap: 10px;
}
.form-title i { color: var(--orange); }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--text-mid); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color var(--transition), background var(--transition);
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.privacy-check { display: flex; align-items: flex-start; gap: 12px; }
.privacy-check input { width: auto; margin-top: 4px; flex-shrink: 0; }
.privacy-check label {
  font-size: 13px; text-transform: none;
  font-weight: 400; color: var(--text-light); letter-spacing: 0;
  line-height: 1.6;
}
.privacy-check a { color: var(--blue); text-decoration: underline; }
.form-note {
  font-size: 12px; color: var(--text-light);
  text-align: center; margin-top: 16px;
  display: flex; align-items: center;
  justify-content: center; gap: 5px;
}
.form-note i { color: var(--blue-light); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--blue-dark); }
.footer-top-wave { display: block; margin-bottom: -2px; line-height: 0; }
.footer-top-wave svg { width: 100%; height: 55px; }
.footer-body { background: var(--blue-dark); }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 64px 0 52px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--orange);
  font-size: 11px; letter-spacing: 1.5px;
  margin-bottom: 20px; text-transform: uppercase; font-weight: 700;
}
.footer-col p { font-size: 13.5px; margin-bottom: 10px; line-height: 1.75; color: rgba(255,255,255,0.72); }
.footer-col a { color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--orange); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13.5px; }
.footer-col i { color: var(--orange); margin-right: 7px; }
.footer-logo-cdl {
  height: 50px; object-fit: contain;
  background: white; border-radius: 8px;
  padding: 5px 10px; margin-bottom: 16px;
}
.footer-logos-row {
  display: flex; gap: 22px;
  flex-wrap: wrap; align-items: flex-start;
}
.footer-logo-item { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.footer-logo {
  height: 46px; object-fit: contain;
  background: white; border-radius: 7px;
  padding: 5px 10px; display: block;
}
.footer-up { font-size: 9px; color: var(--orange); font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 2.0; }
.footer-bottom a { color: rgba(255,255,255,0.52); }
.footer-bottom a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 17px; color: white;
  transition: transform var(--transition), opacity var(--transition);
}
.social-btn:hover { transform: scale(1.12); color: white; }
.social-btn.instagram { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.social-btn.whatsapp  { background: #25D366; }

/* ════════════════════════════════════════
   WHATSAPP FLOATING
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 9999; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: white;
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.10); color: white;
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: #25D366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0; }
}
.whatsapp-float i { position: relative; z-index: 1; }
.wa-tooltip {
  position: absolute; right: 72px;
  background: #075E54; color: white;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
  white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity var(--transition);
  font-family: 'Poppins', sans-serif;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ════════════════════════════════════════
   SCROLL REVEAL (injected by JS)
════════════════════════════════════════ */
/* Defined via JS */

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .perche-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section-header { margin-bottom: 52px; }
  .problems-grid  { grid-template-columns: 1fr; gap: 24px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .casi-grid      { grid-template-columns: 1fr; }
  .contatti-grid  { grid-template-columns: 1fr; gap: 44px; }
  .chisiamo-box   { flex-direction: column; text-align: center; padding: 40px 32px; }
  .chisiamo-avatar { width: 80px; height: 80px; font-size: 34px; }
  .chisiamo-badges { justify-content: center; }
  .stat-divider   { display: none; }
  .stats-inner    { gap: 24px; padding: 40px 24px; }
  .perche-grid    { gap: 20px; }
  .perche-item    { padding: 36px 22px; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  /* Nav mobile */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 80px 32px 40px;
    gap: 8px;
    z-index: 9998;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 18px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-line);
    border-radius: 8px;
  }
  .nav-links a.nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
  }
  .hamburger { display: flex; z-index: 9999; position: relative; }
  nav { position: static; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .services-grid  { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid   { grid-template-columns: 1fr; gap: 20px; }
  .perche-grid    { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 28px; }
  .topbar-inner   { flex-direction: column; gap: 6px; text-align: center; }
  .stats-inner    { flex-direction: column; align-items: center; gap: 28px; }
  .hero-logos-strip { gap: 18px; padding: 18px 24px; }
  .hero-logo-sep  { display: none; }
  .hero-content   { padding: 80px 20px 70px; }
  .contatti-form  { padding: 32px 24px; }
  .section-cta    { flex-direction: column; align-items: center; text-align: center; padding: 28px 24px; gap: 14px; }
  .orari-box      { padding: 26px 24px; }
  .chisiamo-box   { padding: 32px 24px; gap: 28px; }
}

@media (max-width: 420px) {
  .hero-btns  { flex-direction: column; align-items: center; }
  .btn        { width: 100%; justify-content: center; }
  .studio-name { font-size: 14px; }
  .contatti-form { padding: 24px 18px; }
}
