/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rosa-scuro:  #6FAED1;
  --oro:         #6FAED1;
  --beige:       #DCEBF3;
  --rosa-chiaro: #A9D2E6;
  --nero:        #2E5263;
  --bianco:      #FFFFFF;
  --off-white:   #EEF6FB;
  --grigio-testo: #5E8398;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --transition: 0.2s ease;

  --max-width:   1100px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bianco);
  color: var(--nero);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-gap);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 12px;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 56px;
  color: var(--nero);
}

.accent { color: var(--rosa-scuro); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 18px 32px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn--primary {
  background: var(--rosa-scuro);
  color: var(--bianco);
  box-shadow: 0 8px 24px rgba(217, 123, 147, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 123, 147, 0.45);
}

.btn--secondary {
  background: transparent;
  border: 2px solid var(--oro);
  color: var(--oro);
}

.btn--secondary:hover { opacity: 0.8; transform: translateY(-2px); }

.btn--sm  { padding: 12px 24px; font-size: 0.85rem; }
.btn--lg  { padding: 20px 44px; font-size: 1rem; }
.btn--full { width: 100%; }

/* =============================================
   STICKY HEADER
   ============================================= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bianco);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  height: 60px;
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nero);
  transition: color var(--transition);
}

.nav__phone:hover { color: var(--rosa-scuro); }
.nav__phone svg { flex-shrink: 0; }

.nav__whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a7a3e;
  background: #e8f8ee;
  border-radius: 999px;
  padding: 8px 16px;
  transition: background var(--transition);
}

.nav__whatsapp:hover { background: #d4f0de; }
.nav__whatsapp svg { flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--bianco);
  padding-block: 72px 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(249,203,214,0.55) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: var(--rosa-chiaro);
  color: var(--rosa-scuro);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  width: fit-content;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--nero);
}

.hero__headline a { color: inherit; }

.hero__pre-headline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oro);
}

.headline-hl {
  color: var(--rosa-scuro);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.headline-hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rosa-scuro);
  border-radius: 4px;
  opacity: 0.3;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--grigio-testo);
  line-height: 1.65;
  max-width: 560px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nero);
}

.trust-item::before {
  content: '✓';
  color: var(--rosa-scuro);
  font-weight: 800;
}

/* Lisa mini-card */
.hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.hero__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rosa-chiaro);
  background: var(--rosa-chiaro);
  flex-shrink: 0;
}

.hero__author-name {
  font-size: 0.85rem;
  color: var(--grigio-testo);
}

.hero__author-name strong { color: var(--nero); display: block; }

.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(217,123,147,0.2);
}

.hero__image img { width: 100%; object-fit: cover; }

/* =============================================
   BANDA GARANZIA
   ============================================= */
.banda-garanzia {
  background: var(--oro);
  color: var(--bianco);
  text-align: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* =============================================
   VIDEO TESTIMONIANZE
   ============================================= */
.videos {
  background: var(--off-white);
}

.videos__carousel {
  position: relative;
  overflow: hidden;
}

.videos__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.videos__track::-webkit-scrollbar { display: none; }

.video-wrap {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nero);
  cursor: pointer;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  transition: opacity 0.3s ease;
}

.video-poster__play {
  width: 72px;
  height: 72px;
  background: var(--rosa-scuro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(217,123,147,0.6);
  animation: pulse-play 2s ease-out infinite;
  transition: transform 0.2s ease;
}

.video-poster__play svg { margin-left: 5px; }

.video-poster:hover .video-poster__play { transform: scale(1.1); }

@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0 rgba(217,123,147,0.6); }
  60%  { box-shadow: 0 0 0 18px rgba(217,123,147,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,123,147,0); }
}

.video-poster.hidden { opacity: 0; pointer-events: none; }

.videos__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.videos__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosa-chiaro);
  cursor: pointer;
  transition: background var(--transition);
}

.videos__dots span.active { background: var(--rosa-scuro); }

/* =============================================
   PRICING + FORM (sezione 5)
   ============================================= */
.pricing-form {
  background: var(--rosa-chiaro);
}

.pricing-box {
  background: var(--bianco);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(217,123,147,0.15);
  padding: 48px 40px;
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
}

.pricing-box .section__title {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-display del {
  color: #999;
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-display .price-main {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--rosa-scuro);
  line-height: 1;
}

.badge-oro {
  display: inline-block;
  background: var(--oro);
  color: var(--bianco);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-top: 4px;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

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

.contact__form input,
.contact__form select {
  background: var(--off-white);
  border: 1.5px solid #e0d6cc;
  border-radius: var(--radius);
  padding: 0 18px;
  height: 56px;
  color: var(--nero);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.contact__form input:focus,
.contact__form select:focus {
  outline: 2px solid var(--oro);
  outline-offset: 1px;
  border-color: var(--oro);
}

.contact__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8974A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--grigio-testo);
  line-height: 1.5;
}

.privacy-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--rosa-scuro);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}
.privacy-label input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='2,8 6,12 14,4' fill='none' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-intro {
  font-size: 1rem;
  color: var(--grigio-testo);
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.5;
}

.form-intro strong { color: var(--rosa-scuro); }

.form-microcopy {
  font-size: 0.82rem;
  color: var(--grigio-testo);
  text-align: center;
  margin-top: 8px;
}

/* Radio pill group (Si/No) */
.radio-inline-group {
  border: none;
  padding: 0;
}

.radio-inline-group legend {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nero);
  margin-bottom: 10px;
  display: block;
  text-align: left;
}

.radio-inline-wrap {
  display: flex;
  gap: 10px;
}

.radio-pill {
  flex: 1;
  cursor: pointer;
}

.radio-pill input[type="radio"] {
  display: none;
}

.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #e0d6cc;
  background: var(--off-white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grigio-testo);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.radio-pill input:checked + span {
  border-color: var(--rosa-scuro);
  background: var(--rosa-chiaro);
  color: var(--rosa-scuro);
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--nero);
}

.form-success.visible { display: block; }
.form-success p { font-size: 1.1rem; margin-top: 12px; }

/* =============================================
   GALLERY PRIMA/DOPO
   ============================================= */
.gallery {
  background: var(--off-white);
}

.gallery__carousel {
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--rosa-chiaro);
}

.gallery-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.gallery-card__badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oro);
  color: var(--bianco);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gallery__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosa-chiaro);
  cursor: pointer;
  transition: background var(--transition);
}

.gallery__dots span.active { background: var(--oro); }

.gallery__arrows {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.gallery__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--oro);
  background: transparent;
  color: var(--oro);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.gallery__arrow:hover { background: var(--oro); color: var(--bianco); }

/* =============================================
   COME FUNZIONA — Timeline 4 step
   ============================================= */
.steps {
  background: var(--bianco);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--oro), var(--rosa-scuro));
}

.timeline-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step__num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rosa-chiaro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rosa-scuro);
  border: 3px solid var(--bianco);
  box-shadow: 0 0 0 2px var(--oro);
  z-index: 1;
}

.timeline-step__icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.timeline-step__body {
  padding-top: 16px;
}

.timeline-step__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 600;
  color: var(--nero);
  margin-bottom: 8px;
}

.timeline-step__body p {
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1.7;
}

/* =============================================
   4 PILASTRI
   ============================================= */
.pillars {
  background: var(--off-white);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pillar-card {
  background: var(--bianco);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar-card:hover {
  box-shadow: 0 12px 32px rgba(217,123,147,0.15);
  transform: translateY(-2px);
}

.pillar-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184,151,74,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.pillar-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--nero);
}

.pillar-card p {
  color: var(--grigio-testo);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar-card__result {
  display: inline-block;
  background: var(--rosa-chiaro);
  color: var(--rosa-scuro);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: auto;
}

.pillars__cta { text-align: center; }

/* =============================================
   GARANZIA SCRITTA
   ============================================= */
.garanzia {
  background: rgba(229, 200, 140, 0.25);
  text-align: center;
}

.garanzia__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.garanzia__sigillo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.garanzia__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--nero);
  line-height: 1.2;
}

.garanzia__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  width: 100%;
}

.garanzia__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.garanzia__point-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.garanzia__point p {
  color: var(--grigio-testo);
  font-size: 0.97rem;
  line-height: 1.6;
}

.garanzia__point strong { color: var(--nero); }

/* =============================================
   CHI È LISA GORLA
   ============================================= */
.bio {
  background: var(--bianco);
}

.bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.bio__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(217,123,147,0.18);
}

.bio__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--nero);
}

.bio__subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--oro);
}

.bio__text p {
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1.75;
}

.bio__text p strong { color: var(--nero); }

.bio__quote {
  background: var(--rosa-chiaro);
  border-left: 4px solid var(--rosa-scuro);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--nero);
  line-height: 1.6;
}

.bio__stats {
  display: flex;
  gap: 32px;
}

.bio__stat {
  text-align: center;
}

.bio__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--oro);
  display: block;
}

.bio__stat-label {
  font-size: 0.82rem;
  color: var(--grigio-testo);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq {
  background: var(--off-white);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item input[type="checkbox"] {
  display: none;
}

.faq__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bianco);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--nero);
  transition: background var(--transition);
  user-select: none;
}

.faq__label:hover { background: #fff5f7; }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rosa-scuro);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--bianco);
  border-radius: 0 0 var(--radius) var(--radius);
  padding-inline: 24px;
}

.faq__body p {
  color: var(--grigio-testo);
  font-size: 0.97rem;
  line-height: 1.75;
  padding-bottom: 20px;
}

.faq__item input:checked ~ .faq__label { border-radius: var(--radius) var(--radius) 0 0; }
.faq__item input:checked ~ .faq__label .faq__icon { transform: rotate(45deg); }
.faq__item input:checked ~ .faq__body { max-height: 400px; }

/* =============================================
   CTA FINALE
   ============================================= */
.cta-finale {
  background: var(--rosa-chiaro);
}

/* =============================================
   DOVE SIAMO
   ============================================= */
.dove-siamo {
  background: var(--bianco);
}

.dove-siamo__address {
  text-align: center;
  margin-bottom: 16px;
}

.dove-siamo__address a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--nero);
  transition: color var(--transition);
}

.dove-siamo__address a:hover { color: var(--rosa-scuro); }

.dove-siamo__sub {
  text-align: center;
  color: var(--grigio-testo);
  margin-bottom: 32px;
  font-size: 1rem;
}

.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
}

.map-placeholder {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f0ebe4;
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--grigio-testo);
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--oro);
  color: var(--bianco);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
}

.map-open-btn:hover { opacity: 0.85; }

.map-iframe-wrap {
  display: none;
  height: 380px;
}

.map-iframe-wrap.active { display: block; }

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.dove-siamo__orari {
  margin-top: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 480px;
  margin-inline: auto;
}

.dove-siamo__orari h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nero);
  margin-bottom: 12px;
  text-align: center;
}

.orari-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e8e0d5;
  font-size: 0.95rem;
  color: var(--grigio-testo);
}

.orari-row:last-child { border-bottom: none; }
.orari-row span:first-child { font-weight: 600; color: var(--nero); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--nero);
  color: var(--bianco);
  padding-block: 56px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer__copy {
  font-size: 0.9rem;
  color: #aaa;
}

.footer__address {
  font-size: 0.9rem;
  color: var(--beige);
  transition: opacity var(--transition);
}

.footer__address:hover { opacity: 0.75; }

.footer__piva {
  font-size: 0.85rem;
  color: #777;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
}

/* =============================================
   STICKY BOTTOM BAR (solo mobile)
   ============================================= */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bianco);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  z-index: 300;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-bar.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-bar__inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin-inline: auto;
}

.sticky-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--oro);
  text-decoration: none;
  border: 2px solid var(--oro);
  border-radius: 999px;
  padding: 0 20px;
  height: 48px;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.sticky-bar__call:active {
  background: var(--oro);
  color: var(--bianco);
}

.sticky-bar__book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: var(--rosa-scuro);
  color: var(--bianco);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  height: 48px;
  box-shadow: 0 6px 18px rgba(217,123,147,0.35);
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sticky-bar__book:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(217,123,147,0.3);
}

/* =============================================
   SEZIONI ESISTENTI (specialista, includes)
   ============================================= */
.includes {
  background: var(--rosa-chiaro);
}

.includes .section__title { margin-bottom: 40px; }

.includes__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}

.includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bianco);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--grigio-testo);
}

.includes__list li strong { color: var(--nero); }

.includes__icon {
  color: var(--oro);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA repeat (usata per sezione 9) */
.cta-repeat {
  background: var(--off-white);
  text-align: center;
}

.cta-repeat h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--nero);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.price-old {
  font-size: 1.6rem;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--rosa-scuro);
  line-height: 1;
}

/* Specialist */
.specialist {
  background: var(--bianco);
  border-top: 1px solid var(--rosa-chiaro);
}

.specialist__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.specialist__image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(217,123,147,0.2);
}

.specialist__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.specialist__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--nero);
}

.specialist__text p {
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1.75;
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--grigio-testo);
  font-size: 0.97rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oro);
  font-weight: 800;
}

/* =============================================
   RESPONSIVE — Tablet (max 900px)
   ============================================= */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .hero__author { justify-content: center; }

  .video-wrap { flex: 0 0 220px; }

  .specialist__inner { grid-template-columns: 1fr; }
  .specialist__image { max-width: 440px; margin-inline: auto; }

  .bio__inner { grid-template-columns: 1fr; }
  .bio__image { max-width: 320px; margin-inline: auto; }

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

  .gallery__arrows { display: flex; }
}

/* =============================================
   RESPONSIVE — Mobile (max 640px)
   ============================================= */
@media (max-width: 640px) {
  :root { --section-gap: 56px; }

  .nav { padding-inline: 16px; }

  .hero { padding-block: 56px 64px; }

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

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

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

  .pricing-box { padding: 32px 20px; }

  .bio__stats { gap: 16px; flex-wrap: wrap; justify-content: center; }

  .video-wrap { flex: 0 0 200px; }

  .gallery-card { flex: 0 0 280px; }

  .sticky-bar { display: block; }

  body { padding-bottom: 80px; }

  .gallery__arrows { display: flex; }
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 250;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.wa-btn__label { line-height: 1; }

@media (max-width: 640px) {
  .wa-btn {
    bottom: calc(80px + 12px);
    right: 16px;
    padding: 12px;
  }
  .wa-btn__label { display: none; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--oro);
  outline-offset: 3px;
}
