/* ============================================================
   SOLLIEVA — La Salute del Sonno
   Stylesheet — Ispirato a Vispring / Savoir Beds
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --teal:        #5BBCBC;
  --teal-dark:   #3A9999;
  --teal-light:  #8DD5D5;
  --teal-pale:   #EAF6F6;
  --navy:        #1A3040;
  --navy-light:  #2C4A5E;
  --cream:       #FAF8F5;
  --cream-dark:  #F2EDE6;
  --gold:        #C9A870;
  --gold-light:  #E8D5AA;
  --text:        #2C3E50;
  --text-light:  #667080;
  --white:       #FFFFFF;
  --border:      #E8E2D9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);

  --transition:   0.25s ease;
  --container:    1180px;
}

/* ---------- RESET & BASE ---------- */
*, *::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);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION COMMON ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,188,188,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,28,44,0.70) 0%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}

.nav-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .85rem 0;
}

.nav-header.scrolled .logo-name,
.nav-header.scrolled .nav-links a {
  color: var(--navy);
}

.nav-header.scrolled .logo-tagline {
  color: var(--teal);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter var(--transition), opacity var(--transition);
  border-radius: 4px;
}

/* Scrolled: nav bianco → logo originale, nessun filtro */
.nav-header.scrolled .logo-img {
  filter: none;
}

.logo-img--footer {
  height: 38px;
  /* Mostra il logo nei colori originali su sfondo semi-trasparente */
  filter: none;
  opacity: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--teal-dark);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-header.scrolled .burger span { background: var(--navy); }

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,48,64,.78) 0%,
    rgba(26,48,64,.45) 60%,
    rgba(91,188,188,.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--teal-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .25rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.trust-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 7rem 0;
  background: var(--cream);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-body {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.02rem;
}

.intro-body strong { color: var(--navy); font-weight: 600; }

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.intro-image:hover img { transform: scale(1.03); }

/* ============================================================
   PRODOTTI
   ============================================================ */
.prodotti {
  padding: 7rem 0;
  background: var(--white);
}

.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* First 4 standard cards stay in a row; wide card spans full width */
@media (max-width: 1200px) {
  .prodotti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prodotto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.prodotto-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.prodotto-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.prodotto-card--wide .prodotto-img-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.prodotto-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.prodotto-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.prodotto-card:hover .prodotto-img-wrap img { transform: scale(1.04); }

.prodotto-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.prodotto-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prodotto-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.prodotto-body p {
  color: var(--text-light);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.prodotto-features {
  margin-bottom: 1.5rem;
  flex: 1;
}

.prodotto-features li {
  font-size: .875rem;
  color: var(--text);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.prodotto-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   COME FUNZIONA
   ============================================================ */
.come-funziona {
  padding: 7rem 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: .75rem;
  /* Painted on top of background */
  -webkit-text-stroke: 1px var(--teal-light);
  color: transparent;
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal);
  transition: all var(--transition);
}

.step:hover .step-icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.step p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  margin-top: 42px;
  flex-shrink: 0;
  opacity: .5;
}

/* ============================================================
   CHI SIAMO
   ============================================================ */
.chi-siamo {
  padding: 7rem 0;
  background: var(--white);
}

.chi-siamo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.chi-siamo-image {
  position: relative;
}

.chi-siamo-image > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.chi-siamo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  margin-top: .25rem;
  max-width: 90px;
  line-height: 1.3;
}

.chi-siamo-text .section-title { margin-bottom: 1.5rem; }

.chi-siamo-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.chi-siamo-text strong { color: var(--navy); font-weight: 600; }

.chi-siamo-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.value-icon {
  color: var(--teal);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .1rem;
}

.value-item span {
  font-size: .8rem;
  color: var(--text-light);
}

/* ============================================================
   PERCHÉ NOI
   ============================================================ */
.perche-noi {
  padding: 7rem 0;
  background: var(--navy);
}

.perche-noi .section-title { color: var(--white); }
.perche-noi .section-label { color: var(--teal-light); }

.vantaggi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vantaggio {
  padding: 2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.vantaggio:hover {
  background: rgba(91,188,188,.1);
  border-color: rgba(91,188,188,.3);
  transform: translateY(-3px);
}

.vantaggio-icon {
  width: 52px; height: 52px;
  background: rgba(91,188,188,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.vantaggio:hover .vantaggio-icon { background: rgba(91,188,188,.25); }

.vantaggio h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .65rem;
}

.vantaggio p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIANZE
   ============================================================ */
.testimonianze {
  padding: 7rem 0;
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--transition);
}

.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: .975rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testi-card--featured blockquote { color: rgba(255,255,255,.85); }

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testi-card--featured .testi-author { border-color: rgba(255,255,255,.15); }

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 600;
}

.testi-card--featured .testi-author strong { color: var(--white); }

.testi-author span {
  font-size: .78rem;
  color: var(--text-light);
}

.testi-card--featured .testi-author span { color: rgba(255,255,255,.5); }

/* ============================================================
   PRENOTA
   ============================================================ */
.prenota {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0e2030 100%);
  position: relative;
  overflow: hidden;
}

.prenota::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,188,188,.12), transparent 70%);
  pointer-events: none;
}

.prenota-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.prenota-garanzie {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.garanzia-item {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.garanzia-check {
  width: 22px; height: 22px;
  background: rgba(91,188,188,.2);
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-light);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form */
.prenota-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.prenota-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91,188,188,.15);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: .75rem;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--teal);
}

.form-check label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 0;
}

.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .75rem;
}

/* Success */
.form-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 64px; height: 64px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.form-success p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D1E2A;
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 8px 16px 8px 8px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--teal); }

.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(91,188,188,.2);
  border-color: var(--teal);
  color: var(--teal-light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .6rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .step-connector { display: none; }

  .vantaggi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro-inner,
  .chi-siamo-inner,
  .prenota-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chi-siamo-image { max-width: 480px; }
  .chi-siamo-badge { right: 0; }

  .prodotti-grid { grid-template-columns: 1fr 1fr; }
  .prodotto-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testi-card--featured { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform .35s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a { color: var(--navy); font-size: 1.05rem; }
  .nav-links .nav-cta { width: 100%; justify-content: center; }

  .burger { display: flex; z-index: 1001; }

  .nav-header.scrolled .logo-name { color: var(--navy); }

  .hero-title { font-size: 2.5rem; }

  .trust-inner { gap: 1.5rem; }
  .trust-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }

  .prodotti-grid { grid-template-columns: 1fr; }
  .prodotto-card--wide { grid-template-columns: 1fr; }

  .vantaggi-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .prenota-form-wrap { padding: 1.5rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp .6s ease both; animation-delay: .1s; }
.hero-title   { animation: fadeUp .6s ease both; animation-delay: .25s; }
.hero-subtitle { animation: fadeUp .6s ease both; animation-delay: .4s; }
.hero-actions { animation: fadeUp .6s ease both; animation-delay: .55s; }

/* Scroll-triggered fade (handled by JS IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
