:root {
  --bg: #fdfbf7;
  --surface: #fff8ef;
  --surface-strong: #f4eee3;
  --primary: #2a6f75;
  --secondary: #eca72c;
  --cta: #d95a40;
  --cta-dark: #b94d36;
  --text: #2c303a;
  --muted: #616875;
  --line: rgba(44, 48, 58, 0.12);
  --shadow: 0 18px 45px rgba(44, 48, 58, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(236, 167, 44, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(42, 111, 117, 0.11), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.55;
  padding-bottom: 104px;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.topbar {
  background: var(--primary);
  color: var(--bg);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

.desktop-only { display: none; }

.topbar__inner,
.site-header,
.proof-bar__inner,
.story-section,
.steps-section,
.video-section,
.features-section,
.method-section,
.reviews-section,
.team-section,
.faq-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  width: 100%;
}

.marquee-track {
  display: flex;
  animation: marquee 16s linear infinite;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 4px;
}

.site-header__brand img {
  height: 42px;
  width: auto;
}

.site-header__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-header__meta span:first-child {
  color: var(--primary);
}

.hero {
  display: grid;
  gap: 16px;
  padding: 0 0 24px;
  width: 100%;
}

.hero__media {
  min-width: 0;
  margin: 0 -16px;
}

.hero__content {
  min-width: 0;
  padding: 0 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.media-stage {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.media-stage__viewport {
  aspect-ratio: 5 / 4;
}

.media-item {
  display: none;
  height: 100%;
}

.media-item.is-active {
  display: block;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.9);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(44, 48, 58, 0.1);
}

.media-nav--prev {
  left: 12px;
}

.media-nav--next {
  right: 12px;
}

.media-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  position: relative;
  z-index: 10;
  padding: 0;
  height: 24px;
}

.media-thumbs::-webkit-scrollbar,
.ugc-strip::-webkit-scrollbar {
  display: none;
}

.media-thumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  cursor: pointer;
}

.media-thumb img,
.media-thumb span {
  display: none;
}

.media-thumb.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--cta);
  border-color: var(--cta);
}

.eyebrow {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 12px;
  align-items: center;
}

.eyebrow__rating,
.eyebrow__badge,
.section-heading__eyebrow,
.problem-card__label,
.offer-card__label {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes pulseSubtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.eyebrow__badge {
  background: rgba(236, 167, 44, 0.15);
  color: #7a5407;
  animation: pulseSubtle 2.5s infinite ease-in-out;
  transform-origin: left center;
}
.eyebrow__badge--clickable {
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  padding: 6px 12px;
  transition: background .2s;
  min-width: 0;
  flex: 1;
  justify-content: center;
}
.eyebrow__badge--clickable:hover,
.eyebrow__badge--clickable:focus-visible {
  background: rgba(236, 167, 44, 0.28);
}

.eyebrow__rating,
.section-heading__eyebrow,
.problem-card__label,
.offer-card__label {
  background: rgba(42, 111, 117, 0.1);
  color: var(--primary);
}
a.eyebrow__rating {
  text-decoration: none;
  color: inherit;
  gap: 5px;
  padding: 6px 12px;
  font-size: 11px;
  flex: 1;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(42, 111, 117, 0.15);
}
.eyebrow__badge {
  border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 0 0 1px rgba(236, 167, 44, 0.2);
}
a.eyebrow__rating .rating-stars {
  font-size: 12px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  transform: translateY(-0.5px);
}
a.eyebrow__rating .rating-meta {
  display: inline-flex;
  align-items: center;
}
a.eyebrow__rating .rating-meta strong {
  font-size: 11px;
}
a.eyebrow__rating .rating-meta em {
  font-size: 9px;
}
h1,
h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-variant-numeric: lining-nums;
  line-height: 1.05;
}

h1 {
  font-size: clamp(34px, 9vw, 64px);
}

h2 {
  font-size: clamp(28px, 7vw, 48px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero__lead,
.section-heading p,
.problem-card p,
.step-card p,
.ugc-card p,
.feature-card p,
.review-card p,
.team-quotes p,
.faq-item__content p,
.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero__lead {
  margin-top: 14px;
  font-size: 18px;
}

.benefit-list,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 700;
}

.benefit-list li::before,
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cta);
  font-weight: 800;
}

.offer-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.98));
  border: 1px solid rgba(217, 90, 64, 0.15);
  box-shadow: var(--shadow);
}

.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(217, 90, 64, 0.1);
  color: var(--cta-dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}
.urgency-strip__icon {
  animation: pulse-icon 1s infinite;
}
@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pack-selector {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pack-card {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 12px 16px; /* Più padding in alto per respirare col ribbon */
  background: rgba(253, 251, 247, 0.82);
  text-align: left;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.pack-card.is-selected {
  border-color: var(--cta);
  background: rgba(217, 90, 64, 0.08);
  box-shadow: 0 4px 12px rgba(217, 90, 64, 0.12);
}

.pack-card__radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(44,48,58,0.2);
  background: transparent;
  position: relative;
  transition: all 0.2s;
}

.pack-card.is-selected .pack-card__radio {
  border-color: var(--cta);
  background: var(--cta);
}

.pack-card.is-selected .pack-card__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg);
}

.pack-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pack-card__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.pack-card__perks {
  list-style: none;
  padding: 0 0 0 34px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.pack-card[data-pack="single"] .pack-card__perks {
  margin-top: -10px;
}
.pack-card[data-pack="double"] .pack-card__perks {
  margin-top: 6px;
}
.pack-card__perks li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.pack-card__perks li small {
  opacity: 0.7;
}
.pack-card__perk--saving {
  color: #1b8e44 !important;
  font-weight: 700;
}

.pack-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pack-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.pack-card.is-selected .pack-card__title {
  color: var(--cta);
}

.pack-card__badge-discount {
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-light);
}

.pack-card__badge-discount.highlight {
  background: var(--cta);
  color: white;
  border-color: var(--cta);
}

.pack-card__pricebox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}

.pack-card__current {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}
.pack-card.is-selected .pack-card__current {
  color: var(--cta);
}

.pack-card__compare {
  font-size: 14.5px;
  text-decoration: line-through;
  color: var(--muted);
}

.pack-card__copy {
  display: block;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--muted);
}

.pack-card--best {
  border-color: rgba(236, 167, 44, 0.6);
  margin-top: 10px; /* Space for ribbon */
}

.pack-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(217, 90, 64, 0.3);
}

.offer-card__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.offer-card__facts span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0;
  background: none;
}

.offer-card__facts span .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(42, 111, 117, 0.06);
  border-radius: 50%;
  font-size: 13px;
  padding: 0;
  flex-shrink: 0;
}

.offer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-block__current {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.payment-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.payment-trust img {
  height: 20px;
  filter: grayscale(1);
  opacity: 0.8;
}
.payment-trust span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  margin-top: 8px;
  text-align: left;
}
.guarantee-box__icon {
  font-size: 24px;
}
.guarantee-box strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 800;
}
.guarantee-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
}

.cta--primary {
  background: var(--cta);
  color: var(--bg);
}

.cta--primary:hover,
.cta--primary:focus-visible {
  background: var(--cta-dark);
}

.cta--secondary {
  background: rgba(42, 111, 117, 0.08);
  color: var(--primary);
}

@keyframes megaPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 90, 64, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(217, 90, 64, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 90, 64, 0); }
}

.cta--pulse {
  animation: megaPulse 2s infinite ease-in-out;
}

.microcopy {
  margin-top: 12px;
  font-size: 13px;
}

.trust-strip {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip article,
.proof-bar__inner,
.problem-card,
.step-card,
.feature-card,
.review-card,
.faq-item,
.method-card,
.team-section,
.ugc-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.trust-strip article {
  padding: 14px 16px;
}

.proof-bar strong {
  display: block;
  color: var(--text);
}

.proof-bar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.proof-bar {
  padding: 18px 0 0;
}

.proof-bar__inner {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f4eee3;
}

.proof-bar__inner > div {
  text-align: center;
}

/* ── Trust grid compatta (ex trust-strip + proof-bar) ── */
/* ── Trust Strip (Marquee Premium Elegante) ── */
.trust-strip {
  overflow: hidden;
  background: var(--primary);
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  height: 42px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(42, 111, 117, 0.15);
}

.trust-strip:hover .trust-strip__track {
  animation-play-state: paused;
}

.trust-strip__track {
  display: flex;
  animation: trustScroll 36s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.trust-strip__content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.trust-strip__content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: inherit;
  margin: 0;
}

.trust-strip__content strong {
  display: inline;
  color: var(--secondary);
  font-weight: 800;
  margin: 0;
}

.trust-strip__content .trust-strip__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px; /* Renderà il bullet più piccolo e discreto */
  margin: 0;
  display: inline;
}

@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.story-section,
.steps-section,
.video-section,
.features-section,
.method-section,
.reviews-section,
.team-section,
.faq-section {
  padding: 60px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  margin-top: 14px;
}

.problem-solution,
.steps-grid,
.feature-grid,
.review-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.problem-card,
.step-card,
.feature-card,
.review-card,
.faq-item,
.method-card,
.team-section {
  padding: 20px;
}

.problem-card--solution {
  background: linear-gradient(180deg, rgba(42, 111, 117, 0.08), rgba(255, 255, 255, 0.82));
}

.problem-card p,
.step-card p,
.feature-card p,
.review-card p {
  margin-top: 10px;
}

.step-card__index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--secondary);
  color: var(--text);
  font-weight: 800;
}

.ugc-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78vw);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 22px;
}

.ugc-card {
  padding: 14px;
}

.ugc-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  object-fit: cover;
  background: #000;
}

.ugc-card p {
  margin-top: 12px;
}

.method-card,
.team-section {
  overflow: hidden;
  margin-top: 22px;
}

.method-card__media img,
.team-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-card__content,
.team-section__content {
  padding: 22px;
}

.review-card__stars {
  color: var(--secondary);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.review-card span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
  color: var(--primary);
}

.team-quotes {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.team-quotes article {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.team-quotes article:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

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

.faq-item {
  border-radius: 16px;
  background: rgba(253, 251, 247, 0.95);
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(42, 111, 117, 0.3);
}

.faq-item.is-open {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 12px 24px rgba(42, 111, 117, 0.06);
}

.faq-item__trigger {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-item.is-open .faq-item__trigger {
  color: var(--primary);
}

.faq-icon-topic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(236, 167, 44, 0.15); /* Senape light */
  border-radius: 10px;
  font-size: 18px;
  flex-shrink: 0;
  color: #B97B00; /* Colore per le icone SVG */
}

.faq-trigger-text {
  flex: 1;
  padding-right: 10px;
}

.faq-item__trigger::after {
  content: "▾";
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
  color: var(--cta);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s, color 0.3s;
  background: rgba(217, 90, 64, 0.12);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bounceChevron 2s ease-in-out infinite;
}

@keyframes bounceChevron {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.faq-item.is-open .faq-item__trigger::after {
  transform: rotate(-180deg);
  background: var(--cta);
  color: white;
  animation: none;
}

/* Hint "tocca per la risposta" sotto la domanda su mobile */
.faq-item__trigger .faq-trigger-text::after {
  content: "Tocca per la risposta";
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--cta);
  opacity: 0.7;
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.faq-item.is-open .faq-item__trigger .faq-trigger-text::after {
  display: none;
}
@media (min-width: 860px) {
  .faq-item__trigger .faq-trigger-text::after {
    display: none;
  }
}

/* Fluid CSS Grid Animation for Accordion */
.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 0 20px;
}

.faq-item.is-open .faq-item__content {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}

.faq-content-inner {
  overflow: hidden;
}

.expert-reply {
  background: rgba(42, 111, 117, 0.04);
  border-left: 3px solid var(--primary);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  margin-top: 4px;
}

.expert-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.expert-reply p {
  color: var(--text);
  line-height: 1.5;
  font-size: 14.5px;
  margin: 0;
}

.faq-cta-box {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: var(--bg);
  border-radius: 20px;
  border: 1px dashed rgba(217, 90, 64, 0.4);
}

.faq-cta-box p {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  font-size: 16px;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 13px 13px 17px;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 18px 40px rgba(44, 48, 58, 0.16), 0 0 14px rgba(236, 167, 44, 0.2);
  overflow: hidden;
}

/* Bordo statico elegante — rimosso il conic-gradient rotante (CRO: fiducia premium) */
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid rgba(27, 142, 68, 0.25);
  z-index: 0;
  pointer-events: none;
}

.sticky-cta::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 20px;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.sticky-cta__product {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.sticky-cta__thumb-btn {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  cursor: pointer;
}

.sticky-cta__thumb {
  border-radius: 8px;
  border: 1px solid rgba(44, 48, 58, 0.08);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sticky-cta__info strong,
.sticky-cta__info span {
  display: block;
}

.sticky-cta__info strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.sticky-cta__bonus {
  display: block;
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  margin-top: 1px;
}

.sticky-cta__pricing {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta__price-compare {
  font-size: 12px !important;
  color: var(--muted) !important;
  text-decoration: line-through;
}

.sticky-cta__price-current {
  font-size: 14px !important;
  font-weight: 800;
  color: var(--cta) !important;
}

.sticky-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-right: 4px;
  position: relative;
  z-index: 2;
}

.sticky-cta__urgency {
  font-size: 10px;
  font-weight: 800;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sticky-cta .cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(217, 90, 64, 0.25);
}

@media (min-width: 720px) {
  body {
    padding-bottom: 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
    gap: 28px;
    padding-top: 18px;
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
  }

  .hero__content {
    padding: 0;
  }

  .media-stage {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .topbar {
    padding: 10px 16px;
    font-size: 12px;
  }
  .desktop-only { display: inline-block; }
  .mobile-only { display: none; }
  
  .marquee-track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .mobile-marquee-clone, .desktop-hidden {
    display: none !important;
  }

  .site-header {
    padding: 18px 0 12px;
  }

  .site-header__brand img {
    width: min(186px, 48vw);
  }

  .media-stage__viewport {
    aspect-ratio: 5 / 4;
  }

  .media-thumbs {
    display: grid;
    margin-top: 0;
    height: auto;
    grid-auto-flow: column;
    grid-auto-columns: 82px;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 2px 2px;
  }

  .media-thumb {
    width: auto;
    height: auto;
    border-radius: 16px;
    border: 2px solid transparent;
    background: transparent;
  }

  .media-thumb img {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: cover;
  }

  .media-thumb span {
    display: block;
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(44, 48, 58, 0.82);
    color: var(--bg);
  }

  .media-thumb.is-active {
    background: transparent;
    border-color: var(--cta);
  }

  .pack-selector,
  .trust-strip,
  .proof-bar__inner,
  .steps-grid,
  .feature-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-solution {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-card,
  .team-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), 620px);
  }
}

@media (min-width: 980px) {
  .proof-bar__inner,
  .steps-grid,
  .feature-grid,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    display: none;
  }
}

/* Lightbox Modal per Accessibilità Mobile */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox-modal img {
  width: 100vw;
  height: 100%;
  object-fit: contain;
  touch-action: pan-x pan-y pinch-zoom; /* Abilita zoom hardware nativo */
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   ADDED — Fix workflow pagina perfetta (2026-04-07)
   Sezioni: vs, value-stack, placeholders, reviews v2,
            payment badges SVG, headline accent
   ═══════════════════════════════════════════════════════════ */

.h1-accent {
  display: block;
  font-size: clamp(22px, 6vw, 40px);
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.15;
}

/* ─── Payment badges SVG ─── */
.payment-trust__badges {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.payment-trust__badges svg {
  width: 40px;
  height: 26px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.payment-trust {
  align-items: center;
}
.payment-trust span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ─── Media placeholder box ─── */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  border: 2px dashed rgba(217, 90, 64, 0.45);
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(
    45deg,
    rgba(236, 167, 44, 0.06),
    rgba(236, 167, 44, 0.06) 10px,
    rgba(236, 167, 44, 0.12) 10px,
    rgba(236, 167, 44, 0.12) 20px
  );
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.media-placeholder__icon {
  font-size: 28px;
}
.media-placeholder strong {
  font-size: 13px;
  color: var(--cta-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.media-placeholder span {
  font-size: 12px;
  color: var(--muted);
}
.media-placeholder--inline {
  min-height: 140px;
  margin-bottom: 16px;
}

/* Video inline nelle problem-card (sostituiscono i placeholder GIF) */
.problem-card__video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 16px;
  background: #2c303a;
}

/* ─── VS Section (Noi vs Loro) ─── */
.vs-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 20px;
}
.vs-table {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 111, 117, 0.12);
}
.vs-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.vs-table__row:last-child {
  border-bottom: 0;
}
.vs-table__row--head {
  background: linear-gradient(180deg, rgba(42, 111, 117, 0.08), rgba(42, 111, 117, 0.02));
}
.vs-table__cell {
  padding: 14px 12px;
  font-size: 13px;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  word-break: break-word;
}
.vs-table__cell--label {
  font-weight: 700;
  color: var(--text);
  background: rgba(42, 111, 117, 0.04);
  border-right: 1px solid var(--line);
  font-size: 13px;
}
.vs-table__cell--us {
  background: rgba(42, 111, 117, 0.06);
  color: var(--primary);
  font-weight: 700;
  border-right: 1px solid var(--line);
  text-align: center;
  align-items: center;
}
.vs-table__cell--them {
  color: var(--muted);
  text-align: center;
  align-items: center;
  font-size: 12px;
}
.vs-table__row--head .vs-table__cell--us strong,
.vs-table__row--head .vs-table__cell--them strong {
  font-size: 14px;
  font-family: "Playfair Display", Georgia, serif;
}
.vs-table__row--head .vs-table__cell--us strong {
  white-space: nowrap;
}
.vs-table__row--head .vs-table__cell--us strong {
  color: var(--primary);
}
.vs-table__row--head .vs-table__cell--them strong {
  color: var(--text);
}
.vs-table__row--head .vs-table__cell span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}
.vs-yes {
  color: #1b8e44;
  font-size: 20px;
  font-weight: 900;
  display: block;
  margin-bottom: 2px;
}
.vs-no {
  color: #c0392b;
  font-size: 20px;
  font-weight: 900;
  display: block;
  margin-bottom: 2px;
}

/* ─── Value Stack Section ─── */
.value-stack-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 20px;
}
.value-stack {
  margin-top: 24px;
  background: linear-gradient(180deg, #fff 0%, rgba(236, 167, 44, 0.06) 100%);
  border: 2px solid rgba(236, 167, 44, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.value-stack__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.value-stack__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(253, 251, 247, 0.85);
  border: 1px solid var(--line);
}
.value-stack__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 111, 117, 0.08);
  border-radius: 50%;
}
.value-stack__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.value-stack__text strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
}
.value-stack__text span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}
.value-stack__price {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .value-stack__price {
    font-size: 12px;
  }
}
.value-stack__price--free {
  color: #1b8e44;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: right;
  max-width: 80px;
  line-height: 1.3;
}
.value-stack__price--free em {
  font-style: normal;
  font-weight: 900;
}
.value-stack__total {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px dashed rgba(217, 90, 64, 0.4);
}
.value-stack__total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 14px;
  color: var(--muted);
}
.value-stack__total-old {
  text-decoration: line-through;
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
}
.value-stack__total-line--final {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
}
.value-stack__total-new {
  font-size: 28px;
  font-weight: 900;
  color: var(--cta);
  font-family: "Playfair Display", Georgia, serif;
}
.value-stack__cta {
  width: 100%;
  margin-top: 18px;
}

/* ─── Reviews v2 ─── */
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 12px;
}
.reviews-summary__stars {
  color: #ecb026;
  font-size: 20px;
  letter-spacing: 2px;
}
.reviews-summary strong {
  font-size: 22px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
}
.reviews-summary span {
  font-size: 13px;
  color: var(--muted);
}
.review-card--featured {
  background: #fff;
  border: 1px solid rgba(42, 111, 117, 0.18);
  box-shadow: 0 8px 22px rgba(44, 48, 58, 0.06);
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(236, 167, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px dashed rgba(217, 90, 64, 0.35);
  flex-shrink: 0;
}
.review-card__footer > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-card__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.review-card__meta {
  font-size: 11px;
  color: var(--muted);
}
.review-card__stars {
  color: #ecb026;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.review-card__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.review-card__gallery img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  cursor: zoom-in;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-card__gallery img:hover,
.review-card__gallery img:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  outline: none;
}

/* Paginazione recensioni */
.review-card.is-hidden { display: none !important; }
.reviews-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.reviews-pagination__btn {
  background: transparent;
  border: 2px solid var(--color-primary, #2a6f75);
  color: var(--color-primary, #2a6f75);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.reviews-pagination__btn:hover,
.reviews-pagination__btn:focus-visible {
  background: var(--color-primary, #2a6f75);
  color: #fff;
  outline: none;
}
.reviews-pagination__btn:active { transform: scale(0.98); }
.reviews-pagination.is-done { display: none; }

/* ─── Desktop layout tweaks ─── */
@media (min-width: 860px) {
  .vs-section,
  .value-stack-section {
    padding: 64px 0 32px;
  }
  .vs-table__cell {
    padding: 18px 20px;
    font-size: 14px;
  }
  .value-stack {
    padding: 36px;
  }
}

/* ─── Site header rating (visual stars) ─── */
.site-header__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(236, 167, 44, 0.10);
  border: 1px solid rgba(236, 167, 44, 0.30);
  transition: background 0.2s ease;
}
.site-header__rating:hover {
  background: rgba(236, 167, 44, 0.18);
}
.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}
.rating-stars__bg {
  color: rgba(44, 48, 58, 0.18);
}
.rating-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ecb026;
  text-shadow: 0 1px 1px rgba(180, 120, 0, 0.25);
}
.rating-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.rating-meta strong {
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
}
.rating-meta em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ─── AI prompt blocks (placeholder) ─── */
.media-placeholder__prompt {
  width: 100%;
  margin-top: 8px;
  text-align: left;
  border-top: 1px dashed rgba(217, 90, 64, 0.35);
  padding-top: 10px;
}
.media-placeholder__prompt summary {
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  color: var(--cta-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  list-style: none;
  user-select: none;
  padding: 4px 0;
}
.media-placeholder__prompt summary::-webkit-details-marker {
  display: none;
}
.media-placeholder__prompt summary::before {
  content: "▸ ";
  display: inline;
}
.media-placeholder__prompt[open] summary::before {
  content: "▾ ";
}
.prompt-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.prompt-block strong {
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
}
.prompt-block code {
  display: block;
  background: rgba(44, 48, 58, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  user-select: all;
  cursor: text;
}

/* Avatar placeholder w/ inline prompt */
.review-card__avatar .avatar-prompt {
  position: relative;
}
.review-card__avatar .avatar-prompt summary {
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
}
.review-card__avatar .avatar-prompt summary::-webkit-details-marker {
  display: none;
}
.review-card__avatar .avatar-prompt[open] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
  background: #fff;
  border: 2px solid var(--cta);
  border-radius: 12px;
  padding: 16px;
  width: min(90vw, 420px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.review-card__avatar .avatar-prompt[open]::after {
  content: "Tap fuori per chiudere";
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* ── Bonus Banner SniffBall (sopra pack-selector) ───────────── */
.bonus-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #d95a40 0%, #b94d36 100%);
  color: #fff8ef;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(217, 90, 64, 0.28);
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-banner__icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.bonus-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
}
.bonus-banner__text strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.bonus-banner__product {
  color: #ffe4a8;
}
.bonus-banner__text span {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.92;
}
.bonus-banner__badge {
  flex-shrink: 0;
  background: #fff8ef;
  color: #b94d36;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

/* ── Value stack: highlight per SniffBall ───────────────────── */
.value-stack__list .value-stack__item--highlight {
  background: linear-gradient(135deg, rgba(217, 90, 64, 0.06) 0%, rgba(236, 167, 44, 0.08) 100%);
  border: 1.5px solid rgba(217, 90, 64, 0.28);
  border-radius: 14px;
  padding: 14px 14px;
  position: relative;
}
.value-stack__list .value-stack__item--highlight::before {
  content: "🎁 BONUS";
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--cta);
  color: #fff8ef;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(217, 90, 64, 0.3);
}

/* ── Sezione Metodo: 2 fasi ─────────────────────────────────── */
.method-card__intro {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 8px 0 18px;
}
.method-phases {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}
.method-phase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  position: relative;
}
.method-phase__label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(42, 111, 117, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.method-phase h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--text);
}
.method-phase p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (min-width: 720px) {
  .method-phases { grid-template-columns: 1fr 1fr; gap: 14px; }
  .method-phase h3 { font-size: 19px; }
}

/* ── SniffBall inline icon ── */
.sniffball-icon {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  object-fit: cover;
}
.sniffball-icon--lg {
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: transform .2s ease;
}
.sniffball-thumb-btn {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  animation: glowPulseGold 2s infinite ease-in-out;
}
.sniffball-thumb-btn:hover,
.sniffball-thumb-btn:focus-visible {
  animation: none;
}

@keyframes glowPulseGold {
  0%, 100% { box-shadow: 0 0 4px 2px rgba(236, 167, 44, 0.3); }
  50%      { box-shadow: 0 0 14px 6px rgba(236, 167, 44, 0.6); }
}
/* Clickable value-stack icon (inherits .value-stack__icon sizing) */
.value-stack__icon--clickable {
  cursor: pointer;
  border: none;
  padding: 0;
  transition: transform .2s ease;
  animation: glowPulse 2s infinite ease-in-out;
}
.value-stack__icon--clickable:hover,
.value-stack__icon--clickable:focus-visible {
  transform: scale(1.1);
  animation: none;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 4px 1px rgba(42, 111, 117, 0.2); }
  50%      { box-shadow: 0 0 12px 4px rgba(42, 111, 117, 0.45); }
}
.sniffball-thumb-btn:hover .sniffball-icon--lg,
.sniffball-thumb-btn:focus-visible .sniffball-icon--lg {
  transform: scale(1.12);
}

/* Clickable thumbnail in method-phase h3 */
.method-phase__thumb {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  vertical-align: middle;
  border-radius: 50%;
  animation: glowPulse 2s infinite ease-in-out;
}
.method-phase__thumb:hover,
.method-phase__thumb:focus-visible {
  animation: none;
}

/* ── SniffBall Gallery Popup ── */
.sb-gallery {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sbFadeIn .25s ease;
}
.sb-gallery[hidden] { display: none; }

@keyframes sbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sb-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  cursor: pointer;
}

.sb-gallery__container {
  position: relative;
  width: 90vw;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.3);
}

.sb-gallery__close {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  width: 36px; height: 36px;
  border: none;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: background .2s;
}
.sb-gallery__close:hover { background: #fff; }

.sb-gallery__track {
  display: flex;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.sb-gallery__slide {
  min-width: 100%;
  aspect-ratio: 1;
}
.sb-gallery__slide img,
.sb-gallery__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px 20px;
}

.sb-gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: rgba(42, 111, 117, 0.05); /* Sfondo leggero ottanio */
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 2px; /* Correzione ottica per le frecce testuali */
  cursor: pointer;
  color: var(--primary);
  transition: all .2s ease;
}
.sb-gallery__arrow:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.sb-gallery__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sb-gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(42, 111, 117, 0.2); /* Colore base semi-trasparente e visibile */
  cursor: pointer;
  padding: 0;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sb-gallery__dot:hover {
  background: rgba(42, 111, 117, 0.4);
}
.sb-gallery__dot.is-active {
  width: 28px; /* Effetto 'pill' premium per lo stato attivo */
  border-radius: 4px;
  background: var(--primary);
}

/* ── Process Layout (Timeline Elegante) ── */
.process-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 28px;
  padding-left: 20px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 30px;
  left: 38px;
  width: 2px;
  background: rgba(42, 111, 117, 0.15); /* Ottanio leggero */
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.process-step__marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg);
}

.process-step__content {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(44, 48, 58, 0.04);
  flex: 1;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.process-step__content:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 111, 117, 0.08);
  border-color: rgba(42, 111, 117, 0.3);
}

.process-step__content h3 {
  color: var(--primary);
  font-family: inherit;
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
}

.process-step__content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.process-video {
  width: 100%;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 48, 58, 0.12);
  border: 4px solid #fff;
  background: #fff;
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
}

.video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(44, 48, 58, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-badge::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #1b8e44;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(27, 142, 68, 0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(27, 142, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 142, 68, 0); }
}

@media (min-width: 860px) {
  .process-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .process-timeline {
    flex: 1;
    padding-left: 0;
  }
  .process-timeline::before {
    left: 19px;
  }
  .process-video {
    flex: 1;
  }
}

/* ── Redesign "Cosa lo rende diverso" ── */
.feature-grid--animated {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid--animated {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid--animated {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-grid--animated .feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(44, 48, 58, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-grid--animated .feature-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-grid--animated .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 111, 117, 0.08);
  border-color: rgba(42, 111, 117, 0.25);
}

.feature-grid--animated .feature-card:hover::after {
  opacity: 1;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(42, 111, 117, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.feature-grid--animated .feature-card:hover .feature-card__icon {
  transform: scale(1.08);
  background: var(--primary);
  color: #fff;
}

.feature-grid--animated .feature-card__text {
  flex: 1;
  min-width: 0;
}

.feature-grid--animated .feature-card__text h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--primary);
  line-height: 1.25;
}

.feature-grid--animated .feature-card__text p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
