/* =========================================================
   LP BEAUTY — Studio di Estetica Avanzata
   Design system condiviso · Mobile-first · Premium luminoso
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Palette */
  --bg-white: #FFFFFF;
  --bg-soft: #F7F5F3;
  --bg-tortora: #F0EDEB;
  --text-primary: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-tertiary: #9A9A9A;
  /* Fucsia FISSO — usato solo dove deve restare invariato:
     header "Prenota ora", CTA principali della homepage, focus-visible. */
  --accent: #ED1566;
  --accent-hover: #D41258;
  --accent-soft: rgba(237, 21, 102, 0.07);
  --border: #E8E4E0;

  /* BRAND VARIABILE — sovrascritto dalle body.brand-* classes.
     Default: tortora caldo (homepage e pagine comuni). */
  --brand: #8C8279;
  --brand-hover: #6E655D;
  --brand-soft: rgba(140, 130, 121, 0.08);
  --brand-light: rgba(140, 130, 121, 0.04);

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spazi */
  --container: 1200px;
  --section-py: 120px;
  --section-py-mobile: 72px;

  /* Effetti */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.10);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --header-h: 80px;
}

/* ---------- BRAND PALETTES (overrides via <body class="brand-*">) ---------- */
body.brand-epil {
  --brand: #ED1566;
  --brand-hover: #D41258;
  --brand-soft: rgba(237, 21, 102, 0.07);
  --brand-light: rgba(237, 21, 102, 0.04);
}

body.brand-ceretta {
  --brand: #9E6E78;
  --brand-hover: #87596A;
  --brand-soft: rgba(184, 132, 142, 0.12);
  --brand-light: rgba(184, 132, 142, 0.05);
}

body.brand-body {
  --brand: #8BAEC2;
  --brand-hover: #7299AD;
  --brand-soft: rgba(139, 174, 194, 0.10);
  --brand-light: rgba(139, 174, 194, 0.05);
}

body.brand-glutei {
  --brand: #2AABA0;
  --brand-hover: #1F8C83;
  --brand-soft: rgba(42, 171, 160, 0.10);
  --brand-light: rgba(42, 171, 160, 0.05);
}

/* Sub-section overrides (per tecnologie.html dove convivono epil + body) */
.brand-epil {
  --brand: #ED1566;
  --brand-hover: #D41258;
  --brand-soft: rgba(237, 21, 102, 0.07);
  --brand-light: rgba(237, 21, 102, 0.04);
}

.brand-ceretta {
  --brand: #9E6E78;
  --brand-hover: #87596A;
  --brand-soft: rgba(184, 132, 142, 0.12);
  --brand-light: rgba(184, 132, 142, 0.05);
}

.brand-body {
  --brand: #8BAEC2;
  --brand-hover: #7299AD;
  --brand-soft: rgba(139, 174, 194, 0.10);
  --brand-light: rgba(139, 174, 194, 0.05);
}

.brand-glutei {
  --brand: #2AABA0;
  --brand-hover: #1F8C83;
  --brand-soft: rgba(42, 171, 160, 0.10);
  --brand-light: rgba(42, 171, 160, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--bg-tortora);
}

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

a:hover {
  color: var(--brand);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 3vw + 1rem, 2.625rem);
}

h3 {
  font-size: clamp(1.4rem, 1.5vw + 0.8rem, 1.75rem);
}

p {
  color: var(--text-secondary);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-block;
  margin-bottom: 18px;
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--text-tertiary);
  opacity: 0.18;
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-bottom: -20px;
  letter-spacing: -0.04em;
}

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

.section {
  padding: var(--section-py) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--tortora {
  background: var(--bg-tortora);
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  color: var(--text-tertiary);
}

.section-head h2 {
  margin-bottom: 20px;
}

.section-head p {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-py-mobile) 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

/* ---------- BOTTONI ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 25%, transparent);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.02);
}

.btn--small {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.btn .arrow {
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.link-arrow .arrow {
  transition: transform var(--transition);
}

.link-arrow:hover {
  color: var(--brand-hover);
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
  background: transparent;
}

.footer-brand .logo img {
  height: 72px;
}

@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-caret {
  font-size: 0.7em;
  opacity: 0.6;
  transition: transform var(--transition);
}

.has-submenu:hover .nav-caret {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.94rem;
  color: var(--text-primary);
}

.submenu a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.submenu a small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.header-cta {
  display: inline-flex;
  flex-shrink: 0;
}

/* ========== HAMBURGER BUTTON ========== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }


/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mobile-menu::before {
  content: '';
  display: block;
  flex-shrink: 0;
  height: 72px;
}

.mobile-menu-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
}

.mobile-menu-list > li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-list > li > a,
.mobile-menu-list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-list > li > button span {
  font-size: 1.2rem;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
  display: inline-block;
}

.mobile-menu-list > li > button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 16px;
}

.mobile-submenu.is-open {
  max-height: 300px;
  padding: 0 0 16px 16px;
}

.mobile-submenu a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-submenu a:active {
  color: var(--brand);
}

.mobile-menu-cta {
  flex-shrink: 0;
  padding: 16px 24px 32px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 24px;
}

@media (max-width: 1024px) {
  .nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* spazio per header fisso */
main {
  padding-top: var(--header-h);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FBF9F7 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content .eyebrow {
  color: var(--text-tertiary);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 540px;
}

.hero p:last-of-type {
  margin-bottom: 36px;
}

.hero p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}

.hero-badge strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero {
    padding: 48px 0 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image {
    order: -1;
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }
}

/* ---------- SEZIONE APPROCCIO (manifesto) ---------- */
.approach {
  background: var(--bg-white);
  padding: var(--section-py) 0;
}

.approach-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.approach-inner h2 {
  margin-bottom: 32px;
}

.approach-inner p {
  font-size: 1.08rem;
  color: var(--text-primary);
  line-height: 1.8;
}

.approach-inner p + p {
  margin-top: 18px;
}

.approach-inner p strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .approach {
    padding: var(--section-py-mobile) 0;
  }
  .approach-inner p {
    font-size: 1rem;
  }
}

/* ---------- STRIP SPECIALIZZAZIONI ---------- */
.specs {
  background: var(--bg-soft);
  padding: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.spec-card {
  padding: 56px 40px;
  background: var(--bg-soft);
  border-bottom: 3px solid var(--brand);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.spec-card + .spec-card {
  border-left: 1px solid var(--border);
}

.spec-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.spec-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 28px;
  height: 28px;
}

.spec-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.spec-card p {
  font-size: 0.96rem;
  margin-bottom: 24px;
  flex: 1;
}

@media (max-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .spec-card + .spec-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .spec-card {
    padding: 40px 24px;
  }
}

/* ---------- SEZIONE IMG/TEXT ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse .split-image {
  order: 2;
}

.split-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  margin-top: 12px;
  margin-bottom: 24px;
}

.split-content p + p {
  margin-top: 18px;
}

.split-content .btn {
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split--reverse .split-image {
    order: -1;
  }
  .split-image {
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }
}

/* ---------- PERCHÉ SCEGLIERCI ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.96rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 32px 28px;
  }
}

/* ---------- SERVIZI ---------- */
.services {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition);
}

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

.service-card--reverse .service-img {
  order: 2;
}

.service-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-content {
  padding: 16px 24px 16px 0;
}

.service-card--reverse .service-content {
  padding: 16px 0 16px 24px;
}

.service-content h3 {
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.service-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
}

.service-content p {
  margin-bottom: 24px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 6px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.offer-badge::before {
  content: '★';
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.offer-badge strong {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
  }
  .service-card--reverse .service-img {
    order: -1;
  }
  .service-content,
  .service-card--reverse .service-content {
    padding: 8px 16px 24px;
  }
  .service-content h3 {
    font-size: 1.5rem;
  }
  .service-img {
    aspect-ratio: 16 / 10;
  }
}

/* ---------- TESTIMONIAL ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  opacity: 0.4;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  font-size: 0.92rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonial-author::before {
  content: '— ';
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- CTA FINALE ---------- */
.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: var(--bg-soft);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 64px 24px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-tortora);
  padding: 80px 0 32px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.footer-list a:hover {
  color: var(--brand);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--brand);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.96rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 35%, transparent);
  transition: transform var(--transition), opacity var(--transition);
}

.sticky-cta:hover {
  color: #fff;
  background: var(--brand-hover);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
  body.menu-open .sticky-cta {
    opacity: 0;
    pointer-events: none;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PAGINE INTERNE — COMPONENTI CONDIVISI EXTRA
   (usati anche dalla landing Epilazione)
   ========================================================= */

/* ---------- Brandmark tipografico EpilExcellence® ---------- */
.epil-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  line-height: 1;
}

.epil-mark .epil-1 { color: var(--text-primary); }
.epil-mark .epil-2 { color: var(--brand); }
.epil-mark .epil-r {
  font-style: normal;
  font-size: 0.45em;
  vertical-align: super;
  color: var(--text-tertiary);
  margin-left: 2px;
}

.epil-mark--lg { font-size: clamp(2rem, 4vw, 2.8rem); }
.epil-mark--xl { font-size: clamp(2.4rem, 5vw, 3.4rem); }

/* ---------- Hero promo badge ---------- */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 28px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 25%, transparent);
}

.hero-promo .promo-icon { font-size: 1rem; }
.hero-promo strong { font-weight: 700; }

/* ---------- Container narrow + helpers ---------- */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Problem block (centrato) ---------- */
.problem-block {
  background: var(--bg-tortora);
  padding: var(--section-py) 0;
}

.problem-block .alert {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.problem-block h2 {
  margin-bottom: 28px;
}

.problem-block h2 small {
  display: block;
  font-size: 0.62em;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.problem-block p {
  font-size: 1.05rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .problem-block { padding: var(--section-py-mobile) 0; }
}

/* ---------- Reasons grid (cards numerate 4) ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.reason-card {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.reason-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
}

.reason-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.reason-card p {
  font-size: 0.96rem;
}

.reason-card p + p {
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .reason-card { padding: 32px 28px; }
}

.reasons-deep-dive {
  margin-top: 48px;
  text-align: center;
}

/* ---------- Tabella comparativa ---------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
}

.compare-table thead th {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
}

.compare-table thead th:first-child {
  background: #fff;
  color: transparent;
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.compare-table tbody td.cell-yes,
.compare-table tbody td.cell-no {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.compare-table .cell-yes { color: var(--brand); }
.compare-table .cell-no  { color: var(--text-tertiary); }

.compare-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Differenze (strip a 4) ---------- */
.differences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
}

.diff-icon svg { width: 26px; height: 26px; }

.diff-card h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}

@media (max-width: 1024px) { .differences { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .differences { grid-template-columns: 1fr; } }

/* ---------- Step numerati (3) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.step-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}

.step-card p {
  font-size: 1rem;
  color: var(--text-primary);
}

.steps-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) { .steps { grid-template-columns: 1fr; gap: 16px; } }

/* Step card "featured" — step con immagine a fianco (testo sx, immagine dx) */
.step-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 36px;
  align-items: center;
  padding: 28px;
}

.step-card--featured .step-card-body { padding: 8px 4px; }

.step-card--featured .step-card-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-card--featured .step-card-media img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .step-card--featured {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .step-card--featured .step-card-media img { max-width: 100%; }
}

/* ---------- Testimonial featured (con immagine) ---------- */
.testimonial-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.testimonial-feature .testimonial-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-feature .testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-feature .testimonial-quote {
  margin-bottom: 8px;
}

.testimonial-feature blockquote {
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-feature blockquote p + p { margin-top: 14px; }

.testimonial-feature .testimonial-author {
  display: block;
  margin-top: 20px;
  font-size: 0.96rem;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-style: normal;
}

.testimonial-feature .testimonial-author::before { content: '— '; }

@media (max-width: 1024px) {
  .testimonial-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }
  .testimonial-feature .testimonial-img {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }
}

/* ---------- Form section ---------- */
.form-section {
  background: var(--bg-soft);
  padding: var(--section-py) 0;
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.2vw + 0.8rem, 2rem);
}

.form-card .form-intro {
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row label .req { color: var(--brand); }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-row input:focus {
  outline: none;
  border-color: var(--brand);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--brand);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 22px;
}

.form-note a {
  color: var(--brand);
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-section { padding: var(--section-py-mobile) 0; }
  .form-card { padding: 36px 24px; }
}

/* ---------- Page hero variant (più alto, con badge) ---------- */
.hero--landing {
  padding-top: 60px;
  padding-bottom: 120px;
}

.hero--landing .hero-pre {
  margin-bottom: 18px;
}

.hero--landing .hero-pre .epil-mark {
  display: inline-block;
  margin-bottom: 6px;
}


.hero--landing .hero-foot-note {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-top: 16px;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .hero--landing { padding-top: 32px; padding-bottom: 72px; }
}

/* ---------- Block "guarantee" o "result" centrato ---------- */
.callout-block {
  padding: var(--section-py) 0;
  text-align: center;
}

.callout-block .container-narrow p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
}

.callout-block .container-narrow p + p { margin-top: 16px; }

.callout-block h2 {
  margin-bottom: 28px;
}

.callout-block h2 small {
  display: block;
  font-size: 0.55em;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-style: normal;
}

.callout-block .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.callout-block .footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .callout-block { padding: var(--section-py-mobile) 0; }
}

/* ---------- Image band (strip decorativa full-width) ---------- */
.image-band {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--bg-tortora);
  position: relative;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-band--tall { height: 460px; }

@media (max-width: 768px) {
  .image-band { height: 240px; }
  .image-band--tall { height: 300px; }
}

/* ---------- Risultati Prima/Dopo (gallery, immagini singole già montate) ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.result-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.result-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; }
}

/* ---------- Warning list (campanelli d'allarme) ---------- */
.warning-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.warning-list li {
  position: relative;
  padding: 16px 0 16px 48px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.warning-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  height: 30px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.warning-list li:last-child { border-bottom: 0; }

/* ---------- Benefits list (✓ + titolo + descrizione) ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.benefits-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg { width: 20px; height: 20px; }

.benefit-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  line-height: 1.45;
}

.benefit-item p {
  font-size: 0.96rem;
  color: var(--text-secondary);
}

.benefit-item--strong h4 { color: var(--brand); }

.benefits-note {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 6px;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-image { position: static; max-height: 480px; }
}

/* ---------- Blog CTA banner ---------- */
.blog-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.blog-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 2vw + 0.6rem, 1.9rem);
}

.blog-cta p {
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .blog-cta {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 24px;
    text-align: center;
  }
}

/* ---------- Risk grid (lista patogeni Ceretta Protetta) ---------- */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 32px 0 16px;
}

.risk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  font-size: 0.96rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}

.risk-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.source-note {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-style: italic;
  line-height: 1.5;
  margin-top: 12px;
  display: block;
}

/* ---------- Problem images (2 affiancate) ---------- */
.problem-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0 32px;
}

.problem-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .problem-images { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Statement (citazione enfatica) ---------- */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw + 0.8rem, 1.8rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--brand);
  text-align: center;
  max-width: 760px;
  margin: 40px auto;
  letter-spacing: -0.01em;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Big price display ---------- */
.price-display {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 36px 56px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-soft);
}

.price-now {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--brand);
  line-height: 1;
  font-weight: 600;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-tertiary);
  font-size: 1.3rem;
  margin-top: 8px;
}

.price-label {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}

/* ---------- Phase block (alternato img+testo con numero) ---------- */
.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.phase:last-child { margin-bottom: 0; }

.phase--reverse .phase-image { order: 2; }

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

.phase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-content .phase-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.phase-content h3 {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.9rem);
  margin-bottom: 18px;
}

.phase-content p {
  font-size: 1rem;
}

.phase-content p + p { margin-top: 14px; }

@media (max-width: 1024px) {
  .phase {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .phase--reverse .phase-image { order: -1; }
  .phase-image { aspect-ratio: 16 / 10; }
}

/* ---------- Form + summary (2 colonne) ---------- */
.form-with-summary {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.summary-card {
  background: var(--brand);
  color: #fff;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-soft);
}

.summary-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.summary-card p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.summary-price {
  background: rgba(255, 255, 255, 0.14);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
  text-align: center;
}

.summary-price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.summary-price small {
  font-size: 0.86rem;
  opacity: 0.9;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.summary-list li:first-child { border-top: 0; }

.summary-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .form-with-summary { grid-template-columns: 1fr; gap: 28px; }
  .summary-card { position: static; }
}

/* ---------- Body [R]Evolution brandmark ---------- */
.brevo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  line-height: 1;
}

.brevo-mark .rev-r {
  color: var(--brand);
  font-style: normal;
  font-weight: 600;
}

.brevo-mark--lg { font-size: clamp(2rem, 4vw, 2.8rem); }
.brevo-mark--xl { font-size: clamp(2.4rem, 5vw, 3.4rem); }

/* Inline highlight per il [R] dentro testi normali — prende il colore del brand
   della pagina corrente (azzurro su body-revolution.html, brand corrente altrove). */
.rev-r {
  color: var(--brand);
  font-weight: 600;
}

/* ---------- Benefits strip (6 voci, 3 col x 2 righe) ---------- */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-strip-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.benefit-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.benefit-strip-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 12px;
  margin-bottom: 18px;
}

.benefit-strip-icon svg { width: 22px; height: 22px; }

.benefit-strip-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.benefit-strip-item p {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) { .benefits-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .benefits-strip { grid-template-columns: 1fr; } }

/* ---------- Big statement (sezione testimoniale enfatica) ---------- */
.callout-block--big h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3.4rem);
  margin-bottom: 0;
}

.callout-block--big h2 em {
  color: var(--brand);
  font-style: italic;
}

.callout-block--big .container-narrow {
  max-width: 920px;
}

/* ---------- Risk cards (4 card con ✕) ---------- */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.risk-card {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.risk-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.2rem;
  font-weight: 700;
}

.risk-card h4 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-primary);
}

.risk-card p {
  font-size: 0.96rem;
}

@media (max-width: 768px) {
  .risks-grid { grid-template-columns: 1fr; gap: 16px; }
  .risk-card { padding: 28px 24px; }
}

.risks-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .risks-grid--3 { grid-template-columns: 1fr; } }

/* Variante success (icona verde) per feature-card */
.feature-card.is-success .feature-icon {
  background: rgba(47, 125, 79, 0.14);
  color: #2f7d4f;
}

/* ---------- 3 fasi del metodo (cards grandi numerate) ---------- */
.method-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.method-phase {
  position: relative;
  padding: 56px 36px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}

.method-phase:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.method-phase-num {
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--brand);
  opacity: 0.16;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method-phase h3 {
  position: relative;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.method-phase .phase-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: 22px;
  display: block;
}

.method-phase p {
  font-size: 0.96rem;
}

.method-note {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 6px;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.7;
  max-width: 980px;
}

@media (max-width: 1024px) {
  .method-phases { grid-template-columns: 1fr; gap: 18px; }
  .method-phase { padding: 48px 28px 32px; }
}

/* ---------- Offer card (Body Restart €97) ---------- */
.offer-card {
  max-width: 720px;
  margin: 32px auto 0;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--brand) 18%, transparent);
}

.offer-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw + 0.8rem, 2.6rem);
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.offer-card-include {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.offer-card .price-display {
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .offer-card { padding: 40px 24px; }
}

/* ---------- Per chi è (fit columns pro/contra) ---------- */
.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fit-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.fit-col--yes { border-top: 3px solid #2f7d4f; }
.fit-col--no  { border-top: 3px solid var(--brand); }

.fit-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.fit-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.fit-list li:last-child { border-bottom: 0; }

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.fit-list--yes li::before {
  content: '✓';
  background: rgba(47, 125, 79, 0.14);
  color: #2f7d4f;
}

.fit-list--no li::before {
  content: '✕';
  background: var(--brand-soft);
  color: var(--brand);
}

@media (max-width: 768px) {
  .fit-columns { grid-template-columns: 1fr; gap: 16px; }
  .fit-col { padding: 32px 24px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--brand);
  font-weight: 300;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { color: var(--brand); }

.faq-content {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ---------- Form select & textarea ---------- */
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239A9A9A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

/* ---------- Studio gallery (chi-siamo) ---------- */
.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.studio-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.studio-gallery img:nth-child(1) { grid-row: span 2; }

@media (max-width: 768px) {
  .studio-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .studio-gallery img:nth-child(1) { grid-row: auto; }
}

/* ---------- Person card (chi-siamo: split content extra info) ---------- */
.person-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 0.6rem, 2.6rem);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.person-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ---------- Contatti — grid form + info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-soft);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info-card > p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.contact-info-block {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.contact-info-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-info-block .label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-tertiary);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-info-block .value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

.contact-info-block .value a { color: var(--text-primary); }
.contact-info-block .value a:hover { color: var(--brand); }

/* WhatsApp CTA verde */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 28px;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}

.whatsapp-cta:hover {
  background: #1fb958;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-info-card { position: static; }
}

/* ---------- Map embed ---------- */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-soft);
  display: block;
}

@media (max-width: 768px) {
  .map-embed { aspect-ratio: 4 / 5; max-height: 480px; }
}

/* ---------- Pagina Grazie — header/footer minimi ---------- */
.minimal-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.minimal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.minimal-header .logo img { height: 56px; }

.minimal-header-link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.minimal-header-link:hover { color: var(--brand); }

.minimal-footer {
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border);
}

.thank-you {
  padding: 80px 24px 80px;
  text-align: center;
  min-height: calc(100vh - var(--header-h) - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  animation: thankPop 0.5s ease 0.1s both;
}

.thank-you-icon svg { width: 44px; height: 44px; }

@keyframes thankPop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you h1 {
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-lead {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 56px;
}

.thank-you-steps {
  max-width: 920px;
  margin: 0 auto 56px;
  width: 100%;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thank-you-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.thank-you-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.thank-you-social a:hover { color: var(--brand); }

.thank-you-home {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-tertiary);
}

.thank-you-home a {
  color: var(--brand);
  font-weight: 500;
}

/* =========================================================
   ELEMENTI A COLORE FISSO (sempre fucsia, non ereditano --brand)
   - Header "Prenota ora" su tutte le pagine
   - CTA principali della homepage (eccezione richiesta)
   - Brandmark EpilExcellence (.epil-mark)
   ========================================================= */

/* Header CTA: fucsia su qualsiasi pagina/brand */
.header .btn--primary {
  background: var(--accent);
  color: #fff;
}
.header .btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Modificatore esplicito per CTA da bloccare in fucsia (es. CTA homepage) */
.btn--primary.cta-primary-fixed {
  background: var(--accent);
  color: #fff;
}
.btn--primary.cta-primary-fixed:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent);
}

.btn--outline.cta-primary-fixed {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline.cta-primary-fixed:hover {
  background: var(--accent);
  color: #fff;
}

/* Brandmark EpilExcellence — la "Excellence" resta sempre fucsia
   (è un elemento del brand EpilExcellence, non eredita il --brand). */
.epil-mark .epil-2 { color: var(--accent); }

/* Numeri decorativi grandi (.section-number) — più visibili sui pagine
   con brand colorato grazie al cascade di --brand. */
.section-number { color: var(--brand); opacity: 0.18; }

/* ---------- Icona scudo riusabile (garanzia) ---------- */
.shield-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.shield-icon svg { width: 32px; height: 32px; }

/* ---------- Strip benefits: tinta brand soft (sostituisce bg-soft) ---------- */
.section--soft:has(.benefits-strip) {
  background: var(--brand-light);
}

/* ---------- Method phases: layout alternato con video verticali ---------- */
.method-phases--with-video {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.method-phase--with-video {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 56px 52px;
}

.method-phase--with-video > .method-phase-num {
  top: 18px;
  left: 36px;
  right: auto;
}

.method-phase--reverse > .method-phase-num {
  left: auto;
  right: 36px;
}

.method-phase-text {
  position: relative;
}

.method-phase-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.method-phase--reverse > .method-phase-text { order: 2; }
.method-phase--reverse > .method-phase-media { order: 1; }

.phase-video {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 9/16;
  display: block;
  box-shadow: var(--shadow-soft);
  background: var(--brand-light);
}

@media (max-width: 1024px) {
  .method-phase--with-video {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 28px 32px;
  }
  .method-phase--with-video > .method-phase-text { order: 1; }
  .method-phase--with-video > .method-phase-media { order: 2; }
  .method-phase--with-video > .method-phase-num,
  .method-phase--reverse > .method-phase-num {
    left: 28px;
    right: auto;
  }
  .phase-video { max-width: 360px; margin: 0 auto; }
}

/* ---------- Galleria prima/dopo (Body [R]Evolution) ---------- */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 32px;
}

.before-after-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.before-after-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.before-after-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ---------- Benefits result (6 ✓ items dopo le fasi) ---------- */
.benefits-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.benefit-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-result-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.benefit-result-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.benefit-result-item p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.5;
}

@media (max-width: 1024px) { .benefits-result-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .benefits-result-grid { grid-template-columns: 1fr; } }

/* ---------- Ticker (scroll orizzontale infinito) ---------- */
.ticker {
  background: var(--brand);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  white-space: nowrap;
  color: #fff;
}

.ticker-item > span:not(.ticker-dot) {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.ticker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Tech photos (4 immagini sotto le card tecnologie) ---------- */
.tech-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.tech-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-light);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.tech-photo:hover { transform: translateY(-3px); }

.tech-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) { .tech-photos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .tech-photos { grid-template-columns: 1fr; } }

/* ---------- Offer "posti limitati" note ---------- */
.offer-posti {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 20px 28px;
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: var(--radius);
  text-align: center;
}

.offer-posti p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
}

.offer-posti strong { font-style: normal; font-weight: 600; color: var(--brand); }

/* ---------- Experience steps (4 step "come funziona" dentro l'offerta) ---------- */
.experience-steps {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.experience-steps-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.experience-steps .step-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* ---------- Inline CTA (richiamo ripetuto fra sezioni) ---------- */
.inline-cta {
  padding: 64px 0;
  background: var(--brand-light);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inline-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .inline-cta { padding: 48px 0; }
}

/* ---------- Results videos (iframe YouTube nel testimonial) ---------- */
.results-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.result-video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.result-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) { .results-videos-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonial card: stelle ---------- */
.testimonial-card .testimonial-stars {
  color: var(--brand);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}/* =========================================================
   BRAND AMBIENT TINT — Patch per differenziazione cromatica
   Da aggiungere IN FONDO a style.css (dopo la riga 3491)
   
   Scopo: le pagine servizio (epilazione, ceretta, body, glutei)
   acquisiscono una "temperatura visiva" propria grazie a sfondi
   tintati con --brand-light e --brand-soft.
   
   Le pagine istituzionali (chi-siamo, contatti, tecnologie, grazie)
   restano inalterate perché non hanno body.brand-*.
   ========================================================= */


/* ---------- 1. HERO — gradiente tintato ----------
   Prima: gradiente fisso crema #FBF9F7 → #FFFFFF uguale per tutti.
   Dopo:  il gradiente parte da --brand-light, che ha opacità 4-5%
   quindi è appena percepibile ma immediatamente riconoscibile.
   L'effetto è una "luce ambientale" diversa per ogni servizio. */

body[class*="brand-"] .hero {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--brand) 6%, #FBF9F7) 0%,
      #FFFFFF 100%
    );
}


/* ---------- 2. SEZIONI ALTERNATE (section--soft) ----------
   Prima: tutte #F7F5F3 (crema neutro).
   Dopo:  sulle pagine brand, le sezioni alternate prendono una
   tinta appena percepibile del colore servizio.
   L'alternanza bianco/tinta sostituisce bianco/crema.
   
   Usiamo color-mix per garantire che il risultato sia sempre
   chiarissimo indipendentemente dal colore brand. */

body[class*="brand-"] .section--soft {
  background: color-mix(in srgb, var(--brand) 5%, #F9F7F5);
}


/* ---------- 3. CALLOUT-BLOCK — respiro cromatico ----------
   Prima: sfondo bianco puro, identico su tutte le pagine.
   Dopo:  bordo-top sottile nel colore brand + sfondo leggerissimo.
   Questi blocchi sono i momenti emotivi della narrazione
   ("Risultato Garantito", "Il problema non è il tuo corpo"),
   la tinta li rende memorabili senza appesantirli. */

body[class*="brand-"] .callout-block {
  background: color-mix(in srgb, var(--brand) 3%, #FFFFFF);
  border-top: 1px solid color-mix(in srgb, var(--brand) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 14%, transparent);
}

/* Il callout--big (statement enfatico) ha una tinta leggermente
   più forte per marcarne l'importanza narrativa */
body[class*="brand-"] .callout-block--big {
  background: color-mix(in srgb, var(--brand) 5%, #FFFFFF);
}


/* ---------- 4. PROBLEM-BLOCK — tinta brand su tortora ----------
   Prima: sfondo tortora fisso #F0EDEB.
   Dopo:  tortora "scaldato" dal colore brand.
   Presente solo su epilazione.html. */

body[class*="brand-"] .problem-block {
  background: color-mix(in srgb, var(--brand) 5%, #F0EDEB);
}


/* ---------- 5. FORM SECTION — punto di arrivo tintato ----------
   Prima: #F7F5F3 su tutte le pagine.
   Dopo:  tinta brand, così il form diventa visivamente "il punto
   di arrivo" della specifica pagina. Il bottone submit è già nel
   colore brand, ora il contesto lo sostiene. */

body[class*="brand-"] .form-section {
  background: color-mix(in srgb, var(--brand) 5%, #F9F7F5);
}


/* ---------- 6. HERO BADGE — rinforzo brand ----------
   Il badge sovrapposto all'immagine hero ("Prova gratuita",
   "Body Restart €97") prende un bordo-left nel colore brand
   per collegarlo visivamente alla CTA. */

body[class*="brand-"] .hero-badge {
  border-left: 3px solid var(--brand);
}


/* ---------- 7. OFFER CARD — ombra tintata ----------
   L'ombra colorata c'è già nel CSS base (color-mix con --brand),
   ma aggiungiamo anche un fondo leggerissimo per dare calore
   alla card offerta all'interno delle sezioni--soft tintate. */

body[class*="brand-"] .offer-card {
  background: color-mix(in srgb, var(--brand) 2%, #FFFFFF);
}


/* ---------- 8. INLINE-CTA — allineamento al brand ----------
   Queste CTA ripetute (presenti su body-revolution e glutei-pushup)
   prendono la stessa tinta delle section--soft per continuità. */

body[class*="brand-"] .inline-cta {
  background: color-mix(in srgb, var(--brand) 4%, #FFFFFF);
  border-top-color: color-mix(in srgb, var(--brand) 12%, transparent);
  border-bottom-color: color-mix(in srgb, var(--brand) 12%, transparent);
}


/* ---------- 9. STICKY CTA MOBILE — già corretto ----------
   La sticky CTA usa già var(--brand) come sfondo pieno.
   Nessuna modifica necessaria. */


/* ---------- 10. SUMMARY CARD (ceretta-protetta) ----------
   La summary card a fianco del form usa già --brand come bg pieno.
   Nessuna modifica necessaria — funziona già bene. */


/* ---------- ECCEZIONE: sezioni .brand-* inline (tecnologie.html) ----------
   Su tecnologie.html le sezioni epilazione e corpo hanno classi
   brand-epil e brand-body direttamente sulle <section>.
   La tinta si applica anche a queste, differenziando visivamente
   l'area laser dall'area corpo nella stessa pagina. */

section.brand-epil.section--soft {
  background: color-mix(in srgb, #ED1566 5%, #F9F7F5);
}

section.brand-body {
  background: color-mix(in srgb, #8BAEC2 4%, #FFFFFF);
}

/* ---------- Hero sub-brand logo (bounding box uniforme) ---------- */
.hero-logo {
  display: block;
  width: 280px;
  max-width: 100%;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
  background: transparent;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 220px;
    height: 72px;
  }
}

/* ---------- Video embed responsive 16:9 ---------- */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Badge garanzia (immagine centrata) ---------- */
.guarantee-badge-img {
  display: inline-block;
  width: 180px;
  height: auto;
  background: transparent;
}

@media (max-width: 768px) {
  .guarantee-badge-img {
    width: 140px;
  }
}

/* ---------- Testimonial slider ---------- */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 8px;
  box-sizing: border-box;
}

.testimonial-slide-inner {
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.testimonial-slide-inner .testimonial-quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--brand);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-slide-inner blockquote {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-slide-inner blockquote p + p { margin-top: 14px; }

.testimonial-slide-inner .testimonial-author {
  display: block;
  font-size: 0.96rem;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-style: normal;
}

.testimonial-slide-inner .testimonial-author::before { content: '— '; }

/* Navigazione: frecce + dots */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.testimonial-arrow svg { width: 20px; height: 20px; }

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonial-dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-slide-inner {
    padding: 32px 24px;
  }
}

/* ---------- Stats strip (autorevolezza) ---------- */
.stats-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .stats-row { gap: 24px; }
  .stat-item { flex: 0 0 calc(50% - 12px); }
  .stat-number { font-size: 1.5rem; }
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg { width: 28px; height: 28px; }

body.menu-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ---------- Partner tecnologici strip ---------- */
.tech-partners {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.tech-partners-label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.tech-partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.tech-partners-row img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.tech-partners-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .tech-partners-row { gap: 32px; }
  .tech-partners-row img { height: 28px; }
}

/* ---------- Thank you tip box ---------- */
.thank-you-tip {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  border-left: 3px solid var(--brand);
  text-align: left;
}

@media (max-width: 768px) {
  .thank-you-tip { padding: 20px; }
}

/* ===== SEZIONE TECNOLOGIE LASER (epilazione.html) ===== */
.section--tech-laser {
  background: var(--bg-soft);
}

.tech-laser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .tech-laser-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
}

.tech-laser-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tech-laser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tech-laser-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brand-light);
}

.tech-laser-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tech-laser-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tech-laser-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.tech-laser-card__brand {
  display: block;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-laser-card__content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex: 1;
}

.tech-laser-card__tag {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  align-self: flex-start;
}

.tech-laser-nota {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.tech-laser-cta {
  text-align: center;
  margin-top: 1.5rem;
}

