/* ============================================
   AZZURRA Snc — Impresa di Pulizie
   Style Sheet — style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --azzurro-deep:    #0d3d6b;
  --azzurro-mid:     #1b6ca8;
  --azzurro-bright:  #2a9fd6;
  --azzurro-light:   #8ecae6;
  --azzurro-pale:    #d6eef9;
  --azzurro-ghost:   #f0f8fd;
  --white:           #ffffff;
  --text-dark:       #1a2634;
  --text-mid:        #3d5166;
  --text-light:      #7a95ab;
  --accent:          #c9a84c;
  --border:          #d0e8f5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 28px rgba(13,61,107,.10);
  --shadow-hover: 0 10px 44px rgba(13,61,107,.18);
  --transition: .32s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- UTILITY ---------- */
.container { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--azzurro-mid);
  background: var(--azzurro-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  color: var(--azzurro-deep);
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--azzurro-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--azzurro-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,108,168,.35);
}
.btn-outline {
  border-color: var(--azzurro-mid);
  color: var(--azzurro-mid);
  background: transparent;
}
.btn-outline:hover {
  background: var(--azzurro-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--azzurro-deep);
}
.btn-white:hover {
  background: var(--azzurro-pale);
  transform: translateY(-2px);
}
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background-color: #ffffff !important;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(13,61,107,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--azzurro-mid);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--azzurro-deep);
  letter-spacing: .06em;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: .02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--azzurro-mid);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--azzurro-mid); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--azzurro-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(145deg, var(--azzurro-deep) 0%, var(--azzurro-mid) 60%, var(--azzurro-bright) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 500px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--azzurro-ghost); }
.section-dark {
  background: linear-gradient(135deg, var(--azzurro-deep) 0%, #0f2d50 100%);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.7); }
.section-dark .section-tag { background: rgba(255,255,255,.12); color: var(--azzurro-light); }

/* ---------- HOME HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--azzurro-deep) 0%, var(--azzurro-mid) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,61,107,.96) 40%, rgba(13,61,107,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 60px 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--azzurro-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--azzurro-light);
}
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
}
.hero-stat-label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  z-index: 1;
  height: 100vh;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- STRENGTHS STRIP ---------- */
.strengths-strip {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 10;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.strength-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transition);
}
.strength-item:hover { background: var(--azzurro-ghost); }
.strength-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--azzurro-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.strength-icon svg { width: 22px; height: 22px; stroke: var(--azzurro-mid); fill: none; stroke-width: 1.8; }
.strength-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--azzurro-deep);
}
.strength-desc {
  font-size: .82rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--azzurro-light);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--azzurro-pale);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--azzurro-mid); fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--azzurro-deep);
  margin-bottom: 10px;
}
.service-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }
.service-card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--azzurro-mid);
  font-weight: 500;
}

/* ---------- PERCHÉ SCEGLIERCI ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-img-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--azzurro-mid);
}
.why-img-badge-text {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.3;
}
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point { display: flex; gap: 18px; }
.why-point-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--azzurro-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.why-point-title {
  font-weight: 500;
  color: var(--azzurro-deep);
  margin-bottom: 6px;
}
.why-point-text { font-size: .88rem; color: var(--text-mid); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--azzurro-mid) 0%, var(--azzurro-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
}
.cta-banner p { color: rgba(255,255,255,.75); margin-top: 10px; font-size: .93rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ---------- CHI SIAMO ---------- */
.chisiamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chisiamo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.chisiamo-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.chisiamo-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,61,107,.75) 0%, transparent 100%);
  padding: 40px 32px 32px;
}
.chisiamo-img-overlay p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  line-height: 1.4;
}
.chisiamo-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-chip {
  background: var(--azzurro-ghost);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.value-chip svg { width: 20px; height: 20px; stroke: var(--azzurro-mid); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.value-chip span { font-size: .88rem; font-weight: 500; color: var(--azzurro-deep); }

/* ---------- TEAM HIGHLIGHT ---------- */
.team-highlight {
  background: var(--azzurro-pale);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 60px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.team-avatar-stack { display: flex; flex-shrink: 0; }
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  overflow: hidden;
  margin-left: -14px;
}
.team-avatar:first-child { margin-left: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-highlight-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--azzurro-deep);
}
.team-highlight-text p { font-size: .88rem; color: var(--text-mid); margin-top: 6px; }

/* ---------- CONTATTI PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px; height: 50px;
  background: var(--azzurro-pale);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; stroke: var(--azzurro-mid); fill: none; stroke-width: 1.8; }
.contact-info-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-weight: 500;
  color: var(--azzurro-deep);
  font-size: .95rem;
}
.contact-info-value a:hover { color: var(--azzurro-mid); }

/* ---------- FORMS ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--azzurro-deep);
  margin-bottom: 6px;
}
.form-sub { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--azzurro-ghost);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azzurro-mid);
  box-shadow: 0 0 0 3px rgba(27,108,168,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; border: none; border-radius: 100px; background: var(--azzurro-mid); color: var(--white); font-family: var(--font-body); font-size: .95rem; font-weight: 500; letter-spacing: .04em; transition: var(--transition); }
.form-submit:hover { background: var(--azzurro-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,108,168,.3); }
.form-notice { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--azzurro-mid);
}
.form-success svg { width: 48px; height: 48px; stroke: var(--azzurro-mid); fill: none; stroke-width: 1.5; margin-inline: auto; margin-bottom: 12px; }
.form-success h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--azzurro-deep); }
.form-success p { font-size: .9rem; color: var(--text-mid); margin-top: 8px; }

/* ---------- PREVENTIVO PAGE ---------- */
.preventivo-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.preventivo-highlights { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.prev-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--text-mid);
}
.prev-highlight svg { width: 20px; height: 20px; stroke: var(--azzurro-mid); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---------- MAP PLACEHOLDER ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--azzurro-ghost);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: .9rem;
}
.map-wrap svg { width: 40px; height: 40px; stroke: var(--azzurro-light); fill: none; stroke-width: 1.5; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--azzurro-deep);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}
.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark svg { width: 32px; height: 32px; fill: var(--azzurro-light); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-top: 12px; max-width: 280px; }
.footer-heading {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azzurro-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--azzurro-light); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ---------- PAGE ACTIVE STATES ---------- */
.page-home     .nav-home,
.page-servizi  .nav-servizi,
.page-chisiamo .nav-chisiamo,
.page-contatti .nav-contatti,
.page-preventivo .nav-preventivo { color: var(--azzurro-mid) !important; }
.page-home     .nav-home::after,
.page-servizi  .nav-servizi::after,
.page-chisiamo .nav-chisiamo::after,
.page-contatti .nav-contatti::after,
.page-preventivo .nav-preventivo::after { width: 100% !important; }

/* ---------- MOBILE NAV ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--azzurro-ghost); color: var(--azzurro-mid); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- FADE IN ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 140px 0 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .why-grid, .chisiamo-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 32px; }
  .cta-banner-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .preventivo-intro { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .chisiamo-values { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .why-img-badge { right: 10px; }
}
@media (max-width: 480px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .cta-banner { padding: 32px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}