/* ================================
   RESET BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #2e1f40;
  background: linear-gradient(180deg, #fff0f8 0%, #f3d9ff 100%);
  line-height: 1.6;
}

/* ================================
   LAYOUT BASE
================================ */
section {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 60px;
}

section h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}

/* ================================
   HEADER + MENU (STICKY, STABILE)
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
    180deg,
    rgba(255, 240, 248, 0.98),
    rgba(255, 240, 248, 0.92)
  );

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 64px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2e1f40;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.main-nav a:hover { color: #ec5fa8; }

/* ================================
   MAIN (spazio sotto header sticky)
================================ */
main {
  padding-top: 30px;
}

/* ================================
   HERO – FOTO GRANDE + TESTO SOTTO
================================ */
.hero {
  max-width: 1400px;
  margin: 40px auto 120px;
  padding: 0 60px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.15);
  display: block;
}

.hero-content {
  margin-top: 56px;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 200, 240, 0.35),
    transparent 70%
  );
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #5c4a70;
  max-width: 760px;
  margin: 0 auto 34px;
}

/* CTA */
.cta-primary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec5fa8, #9b6cff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* ================================
   HOME ABOUT (solo HOME: testo + foto)
================================ */
.home-about {
  max-width: 1200px;
  margin: 0 auto 140px;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.home-about p {
  font-size: 1.05rem;
  color: #5c4a70;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
  display: block;
}

/* ================================
   SERVIZI
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  margin-top: 40px;
}

.service {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 26px;
  padding: 32px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.55);
}

.service h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.service p { color: #5c4a70; }

.service.featured {
  background: rgba(255,255,255,0.55);
  box-shadow: 0 22px 48px rgba(0,0,0,0.15);
}

.service.featured h3 { color: #ec5fa8; }
.service:hover h3 { color: #ec5fa8; }

/* ================================
   PERCHÉ NOI
================================ */
.why-us { max-width: 900px; }

.why-us ul {
  margin-top: 30px;
  columns: 2;
  column-gap: 60px;
  padding-left: 20px;
}

.why-us li {
  margin-bottom: 12px;
  color: #5c4a70;
}

/* ================================
   RECENSIONI
================================ */
.reviews {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 60px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review {
  position: relative;
  background: rgba(255,255,255,0.55);
  border-radius: 28px;
  padding: 56px 30px 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.review:hover { transform: translateY(-6px); }

.review-avatar {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar.empty { display: none; }

.review-text {
  font-size: 1.05rem;
  color: #5c4a70;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: #ec5fa8;
  font-size: 0.95rem;
}

/* =========================
   BLOG HOME (CARD)
========================= */
.blog-home {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 60px;
}

.blog-home h2 {
  font-size: 2.2rem;
  margin-bottom: 26px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card{
  background: rgba(255,255,255,0.65);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: transform .25s ease;
}

.blog-card:hover { transform: translateY(-6px); }

.blog-thumb { position: relative; display: block; }

.blog-thumb img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #9b6cff, #ec5fa8);
}

.blog-body { padding: 18px 18px 16px; }

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-title a { color: #2e1f40; text-decoration: none; }
.blog-title a:hover { color: #ec5fa8; }

.blog-excerpt{
  color: #5c4a70;
  font-size: .98rem;
  margin-bottom: 14px;
}

.blog-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.blog-date { color: #6b4a99; font-size: .9rem; }
.blog-link { color: #9b6cff; font-weight: 700; text-decoration: none; }
.blog-link:hover { color: #ec5fa8; }

/* ================================
   CTA FINALE
================================ */
.final-cta {
  text-align: center;
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.35)
  );
  border-radius: 48px;
  margin: 0 auto 140px;
  max-width: 1100px;
}

.final-cta h2 { margin-bottom: 18px; }

.final-cta p {
  margin: 0 auto 34px;
  max-width: 600px;
  color: #5c4a70;
}

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  display: block;
}

@media (min-width: 1024px) {
  .whatsapp-float { width: 72px; height: 72px; }
  .whatsapp-float img { width: 38px; height: 38px; }
}

/* ================================
   FOOTER
================================ */
.site-footer {
  text-align: center;
  padding: 34px;
  font-size: 0.9rem;
  color: #6b4a99;
}

/* ==================================================
   CHI SIAMO – STORY (ISOLATA, NON ROMPE LA HOME)
   Usa solo: .chi-siamo-story .story-row .story-image .story-text
================================================== */

.chi-siamo-story {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 90px 60px 40px; /* spazio extra sotto header sticky */
}

.chi-siamo-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 90px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 130px;
}

.story-row.reverse .story-image { order: 2; }
.story-row.reverse .story-text  { order: 1; }

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.14);
  object-fit: cover;
}

.story-text h3 {
  font-size: 1.9rem;
  margin-bottom: 22px;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: #5c4a70;
}

.story-text em { color: #2e1f40; }

.story-text blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 4px solid #ec5fa8;
  font-style: italic;
  color: #2e1f40;
  font-weight: 600;
}

/* ================================
   RESPONSIVE MINIMO
================================ */
@media (max-width: 980px) {
  section { padding: 0 24px; }
  .hero { padding: 0 24px; }
  .header-inner { padding: 14px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }

  .home-about {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 24px;
  }

  .chi-siamo-story {
    padding: 80px 24px 20px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 80px;
  }

  .story-row.reverse .story-image,
  .story-row.reverse .story-text {
    order: initial;
  }

  .chi-siamo-title {
    font-size: 2.1rem;
    margin-bottom: 50px;
  }
}
/* SEO hidden block – solo per motori */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
/* ================================
   PERCHÉ SIAMO DIVERSI – PREMIUM
================================ */

.why-us {
  margin-top: 140px;
  padding: 80px 80px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.25)
  );
  border-radius: 56px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.why-us h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  position: relative;
}

.why-us h2::after {
  content: "✦ ✦ ✦";
  display: block;
  margin-top: 18px;
  font-size: 1.1rem;
  letter-spacing: 6px;
  color: #ec5fa8;
}

.why-us ul {
  list-style: none;
  columns: 2;
  column-gap: 80px;
  padding: 0;
}

.why-us li {
  break-inside: avoid;
  margin-bottom: 28px;
  padding-left: 34px;
  position: relative;
  font-size: 1.05rem;
  color: #5c4a70;
  line-height: 1.7;
}

.why-us li::before {
  content: "✧";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  color: #9b6cff;
}

/* Mobile */
@media (max-width: 980px) {
  .why-us {
    padding: 60px 26px;
    margin-top: 100px;
  }

  .why-us ul {
    columns: 1;
  }

  .why-us h2 {
    font-size: 2.1rem;
  }
}
/* ================================
   BLOCCHI DOPPI – CERCHI / LAVORI
   VERSIONE PREMIUM CENTRATA
================================ */

.dual-choice {
  max-width: 900px;
  margin: 140px auto;
  display: grid;
  gap: 80px;
}

.dual-choice > section {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.30)
  );
  border-radius: 48px;
  padding: 80px 70px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.dual-choice h2 {
  font-size: 2.4rem;
  margin-bottom: 26px;
}

.dual-choice h2::after {
  content: "✦";
  display: block;
  margin: 18px auto 0;
  color: #ec5fa8;
  font-size: 1.4rem;
}

.dual-choice p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: #5c4a70;
  line-height: 1.75;
}

.dual-choice .cta-primary {
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 980px) {
  .dual-choice {
    margin: 100px auto;
    padding: 0 20px;
  }

  .dual-choice > section {
    padding: 60px 28px;
  }

  .dual-choice h2 {
    font-size: 2rem;
  }
}
/* ==============================
   SEO EDITORIAL – TESTO DISCRETO
============================== */
.seo-editorial {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 60px;
  font-size: 0.95rem;
  color: #6b5a80;
  line-height: 1.6;
}

.seo-editorial p {
  margin: 0;
  text-align: center;
}
/* ================================
   IMMAGINE INTRO SERVIZI
   (dopo hero)
================================ */
.hero-image-only {
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 60px;
}

.hero-image-only img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.15);
  display: block;
}
/* ================================
   PER CHI È IL SERVIZIO
================================ */
.services-for {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 60px;
  text-align: center;
}

.services-for p {
  font-size: 1.05rem;
  color: #5c4a70;
  line-height: 1.75;
  margin-bottom: 14px;
}
/* ================================
   FRASE MANIFESTO SERVIZI
================================ */
.services-manifesto {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2e1f40;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ================================
   STORY DOPO IMMAGINE
================================ */
.services-story {
  max-width: 900px;
  margin: 0 auto 120px;
  padding: 0 60px;
  text-align: center;
}

.services-story p {
  font-size: 1.05rem;
  color: #5c4a70;
  line-height: 1.75;
  margin-bottom: 14px;
}
/* ================================
   ALLINEAMENTO PAGINE SERVIZIO
================================ */

/* Sezioni narrative centrali */
.services-for,
.services-story,
.final-cta {
  text-align: center;
}

/* Sezioni funzionali (elenchi) */
section h2 {
  text-align: center;
}

section ul {
  max-width: 720px;
  margin: 30px auto 0;
  padding: 0;
  list-style-position: inside;
  text-align: left;
}

/* Migliora la leggibilità dei paragrafi */
.services-story p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* ================================
   COME FUNZIONA – DESKTOP CARD
================================ */

.how-it-works-card {
  max-width: 900px;
  margin: 120px auto;
  padding: 60px;
  background: rgba(255,255,255,0.45);
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  text-align: center;
}

.how-it-works-card h2 {
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: left;
}

.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.how-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step strong {
  display: block;
  margin-bottom: 4px;
  color: #2e1f40;
}

.how-step p {
  margin: 0;
  color: #5c4a70;
  font-size: 0.95rem;
}

.how-whatsapp {
  display: inline-block;
  margin-top: 44px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(155,108,255,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

/* Effetto luce morbida */
.how-whatsapp::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(236,95,168,0.45), rgba(155,108,255,0.45));
  filter: blur(14px);
  opacity: 0.75;
  z-index: -1;
}

/* Hover elegante (desktop) */
.how-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(155,108,255,0.6);
}
.how-it-works {
  max-width: 900px;
  margin: 80px auto;
  padding: 60px;
  background: rgba(255,255,255,0.6);
  border-radius: 32px;
  text-align: left;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #fff;
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin: 0 0 6px;
}

.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.faq-step {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.faq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f08bc3, #b47bff);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ===============================
   FAQ – ALLINEAMENTO CORRETTO
================================ */

.faq-card {
  text-align: left;
}

.faq-card h2,
.faq-card .faq-intro {
  text-align: center;
}

.faq-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
}

.faq-step h3 {
  margin: 0 0 6px 0;
}

.faq-step p {
  margin: 0;
  line-height: 1.6;
}
/* ===============================
   DOG-SITTER – FOTO QUADRATA
================================ */

.dog-hero img {
  object-fit: contain;
  background: rgba(255,255,255,0.35);
}
/* ===============================
   DOG-SITTER – INTRO A DUE COLONNE
================================ */

.dog-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  margin: 60px auto;
  max-width: 1100px;
}

.dog-intro-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: left top;
  border-radius: 20px;
}


/* Mobile */
@media (max-width: 900px) {
  .dog-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .dog-intro-image {
    order: -1;
  }
}
/* ===============================
   TURISTINA – INTRO A DUE COLONNE
================================ */

.touristina-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  margin: 60px auto;
  max-width: 1100px;
}

.touristina-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.touristina-intro-image img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}




/* Mobile */
@media (max-width: 900px) {
  .touristina-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .touristina-intro-image {
    order: -1;
  }
}
/* ===============================
   EVENTI – INTRO A DUE COLONNE
================================ */

.eventi-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  margin: 60px auto;
  max-width: 1100px;
}

.eventi-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eventi-intro-image img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .eventi-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .eventi-intro-image {
    order: -1;
  }
}
/* ===============================
   BABYSITTING – INTRO A DUE COLONNE
================================ */

.babysitting-intro-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* testo leggermente più importante */
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 56px;
  margin: 60px auto;
  max-width: 1100px;
}

.babysitting-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.babysitting-intro-image img {
  max-width: 100%;
  max-height: 460px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .babysitting-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .babysitting-intro-image {
    order: -1;
  }
}
/* ===============================
   SERVIZI – INTRO A DUE COLONNE
================================ */

.servizi-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  margin: 60px auto;
  max-width: 1100px;
}

.servizi-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.servizi-intro-image img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .servizi-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .servizi-intro-image {
    order: -1;
  }
}
/* ===============================
   DIVENTA FATINA – DESKTOP
================================ */

.fatina-hero {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 40px;
}

.fatina-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.fatina-hero p {
  font-size: 1.1rem;
  color: #5c4a70;
}

/* Intro */
.fatina-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  max-width: 1100px;
  margin: 60px auto;
}

.fatina-intro-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* Filtri */
.fatina-filter {
  max-width: 900px;
  margin: 80px auto;
}

.fatina-filter h2 {
  margin-bottom: 24px;
}

.fatina-filter ul {
  list-style: disc;
  padding-left: 20px;
}

.fatina-filter.negative h2 {
  color: #b24b6a;
}

.fatina-filter.positive h2 {
  color: #6a4bb2;
}

/* Steps */
.fatina-steps {
  max-width: 900px;
  margin: 80px auto;
}

.fatina-steps ol {
  padding-left: 20px;
}

.fatina-steps li {
  margin-bottom: 20px;
}

/* CTA */
.fatina-cta {
  text-align: center;
  margin: 80px 0;
}

/* Mobile */
@media (max-width: 900px) {
  .fatina-intro-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
/* ===============================
   FATINA – CARD EDITORIALI
================================ */

.fatina-card {
  background: rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 48px;
  max-width: 900px;
  margin: 80px auto;
}

.fatina-card h2 {
  margin-bottom: 24px;
}

.fatina-card ul,
.fatina-card ol {
  margin-top: 16px;
}

.fatina-card li {
  margin-bottom: 10px;
}
/* ===============================
   LISTE FATINA – NUMERATE
================================ */

.fatina-card ol {
  counter-reset: fatina;
  list-style: none;
  padding-left: 0;
}

.fatina-card ol li {
  counter-increment: fatina;
  position: relative;
  padding-left: 42px;
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.fatina-card ol li::before {
  content: counter(fatina);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #b45a8a; /* rosa elegante */
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover sobrio */
.fatina-card ol li:hover {
  color: #d96fa6;
}
.hero-simple {
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-simple h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-simple p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #5c4a70;
}

.card {
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px;
  background: rgba(255,255,255,0.6);
  border-radius: 40px;
}

.card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.card-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: contain;
}

.list-selective {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.list-selective li {
  counter-increment: step;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 17px;
  transition: color 0.3s ease;
}

.list-selective li::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d48adf;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-weight: bold;
}

.list-selective li:hover {
  color: #ec5fa8;
}

.title-negative {
  color: #b64b6b;
}

.title-positive {
  color: #7a5bd4;
}

.steps .step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.center {
  text-align: center;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: white;
  text-decoration: none;
}
/* ===============================
   NUMERAZIONE COLORATA LISTE FATINA
   (come "Come funziona")
================================ */

/* reset stile lista */
.fatina-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: fatina-counter;
}

/* singola voce */
.fatina-card ul li {
  counter-increment: fatina-counter;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* cerchio numerato */
.fatina-card ul li::before {
  content: counter(fatina-counter);
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d86acb, #a66cff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(168, 108, 255, 0.35);
}
/* ===============================
   FAQ – DIVENTA FATINA
================================ */

.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 48px;
  background: rgba(255,255,255,0.6);
  border-radius: 32px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item + .faq-item {
  margin-top: 24px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  line-height: 1.6;
  color: #4a3c5f;
}
/* ===============================
   NUMERAZIONE FAQ
================================ */

.faq-section {
  counter-reset: faq-counter;
}

.faq-item {
  counter-increment: faq-counter;
  position: relative;
  padding-left: 48px;
}

.faq-item::before {
  content: counter(faq-counter);
  position: absolute;
  left: 0;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d86acb, #a66cff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(168, 108, 255, 0.35);
}

/* ===============================
   ARTICOLO DESKTOP – FIX CENTRATURA
================================ */

.desktop-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.desktop-article{
  width: 100%;
  max-width: 760px;

  /* centro visivo */
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  border-radius: 28px;

  padding: 48px 56px;
}
.page-content{
  display: flex;
  justify-content: center;
}

.content-section{
  width: 100%;
  display: flex;
  justify-content: center;
}

.content-card{
  max-width: 900px;
  width: 100%;
  padding: 56px 64px;
}

.article-cta{
  text-align: center;
  margin-top: 48px;
}

.article-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
/* ==================================================
   FIX DEFINITIVO HERO ARTICOLI BLOG DESKTOP
================================================== */

.desktop-article-page .hero-photo{
  width: 100%;
  margin: 32px 0;
}

.desktop-article-page .hero-photo img{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  border-radius: 18px;
}
/* ==================================================
   CTA ARTICOLO BLOG – DEFINITIVA
================================================== */

.desktop-article-page .article-cta{
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.desktop-article-page .article-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.desktop-article-page .article-cta-buttons .cta-main{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #fff !important;

  font-weight: 500;
  font-size: 0.95rem;

  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);

  transition: transform .25s ease;
}

.desktop-article-page .article-cta-buttons .cta-main:hover{
  transform: translateY(-2px);
}
/* ==================================================
   BLOG DESKTOP – LAYOUT CON SIDEBAR
================================================== */

.blog-layout{
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
}

.blog-main{
  min-width: 0;
}

.blog-sidebar{
  position: relative;
}

.sidebar-box{
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 24px;
}

.sidebar-box h3{
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.sidebar-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li{
  margin-bottom: 14px;
}

.sidebar-list a{
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color .2s ease;
}

.sidebar-list a:hover{
  color: var(--accent-1);
}

/* NASCONDE SIDEBAR SU MOBILE */
@media (max-width: 900px){
  .blog-layout{
    grid-template-columns: 1fr;
  }

  .blog-sidebar{
    display: none;
  }
}
/* ===============================
   FORM CONTATTI – ALLINEAMENTO DESKTOP
   (stesso stile del mobile)
================================ */

.fatina-card .contact-form {
  display: block;
}

.fatina-card .contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.fatina-card .contact-form label {
  display: block;
  font-weight: 500;
}

.fatina-card .contact-form input,
.fatina-card .contact-form textarea {
  width: 100%;
}
/* ===============================
   CONTATTI – CARD PIÙ INTIMA (DESKTOP)
================================ */

.fatina-card {
  max-width: 680px;
}
/* ==================================================
   CONVENZIONI – STORY
   Stesso layout di "Chi siamo", riutilizzato
================================================== */

.convenzioni-story {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 90px 60px 40px;
}

/* Riutilizziamo le stesse classi interne */
.convenzioni-story .story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 130px;
}

.convenzioni-story .story-row.reverse .story-image { order: 2; }
.convenzioni-story .story-row.reverse .story-text  { order: 1; }

.convenzioni-story .story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.14);
  object-fit: cover;
}

.convenzioni-story .story-text h3 {
  font-size: 1.9rem;
  margin-bottom: 22px;
}

.convenzioni-story .story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: #5c4a70;
}

.convenzioni-story .story-text em {
  color: #2e1f40;
}

.convenzioni-story .story-text blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 4px solid #ec5fa8;
  font-style: italic;
  color: #2e1f40;
  font-weight: 600;
}

/* ==================================================
   CONVENZIONI – CARD CONTENITORE
================================================== */

.convenzioni-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 36px;
  padding: 80px 80px;
  margin-bottom: 120px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

/* ==================================================
   CONVENZIONI – NUMERETTI COLORATI
   (usati dentro .convenzioni-story)
================================================== */

.convenzioni-story .numbered-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 20px;
}

.convenzioni-story .numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5c4a70;
}

.convenzioni-story .number-badge {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec5fa8, #9b6cff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  flex-shrink: 0;
  transform: translateY(2px);
}
/* =========================
   FIX CTA – PAGINA CONVENZIONI (DESKTOP)
========================= */

.cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.cta-wrapper .cta-main {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 20 !important;
}
.cta-spacing {
  margin-top: 28px; /* prima visivamente erano ~24 */
}
/* SEO invisibile – NON deve essere visibile */
.ai-seo-block {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* ==================================================
   ANIMAZIONI DESKTOP – FIRMA ELEGANTE (SAFE SEO)
================================================== */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay leggero (stagger elegante) */
.reveal.delay-1 { animation-delay: 0.12s; }
.reveal.delay-2 { animation-delay: 0.22s; }
.reveal.delay-3 { animation-delay: 0.32s; }

/* Accessibilità: se l’utente ha ridotto le animazioni */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}











