@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  /* Palette Felici Insieme */
  --ink: #2C303A;
  --muted: #6b7280;
  --navy: #2A6F75;            /* Ottanio FI (era navy scuro) */
  --navy-2: #1f5258;          /* Ottanio scuro */
  --ice: #F4ECE0;             /* Panna chiaro (era ice celeste) */
  --orange: #D95A40;          /* Terracotta CTA FI (era arancio) */
  --orange-dark: #b34b35;     /* Terracotta scuro */
  --pink: #F4E1D2;            /* Terracotta chiara (era rosa) */
  --mustard: #ECA72C;         /* Senape FI per accenti */
  --line: #e5dfd4;
  --card: #FDFBF7;            /* Sfondo panna FI */
  --shadow: 0 14px 32px rgba(44, 48, 58, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #ede4d4;
}

body {
  margin: 0 auto;
  width: min(100%, 500px);
  min-height: 100dvh;
  padding-bottom: 92px;
  color: var(--ink);
  background: #FDFBF7;
  font-family: "Nunito Sans", Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 0 0 1px rgba(44, 48, 58, .06);
}

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

button,
input,
summary {
  font: inherit;
}

button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 7;
  background: #fff;
}

.sale-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: linear-gradient(180deg, #3a8088 0%, var(--navy) 100%);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .015em;
  color: #fff;
  text-align: center;
}

.sale-bar__pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sale-bar__discount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--mustard);
  letter-spacing: -.01em;
}

.sale-bar__after {
  font-weight: 600;
  opacity: .95;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.icon-btn,
.bag {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.icon-btn {
  gap: 5px;
  align-content: center;
}

.icon-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.bag::before {
  content: "";
  width: 17px;
  height: 20px;
  border: 2px solid #111;
  border-radius: 3px 3px 7px 7px;
  box-shadow: inset 0 8px 0 -6px #fff;
}

.bag::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 6px;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateY(-10px);
}

main > section {
  padding: 28px 20px;
}

.product-hero {
  padding: 0 0 18px;
}

.gallery {
  overflow: hidden;
}

.hero-img {
  aspect-ratio: 1 / 1;
  max-height: 500px;
  object-fit: contain;
  object-position: center top;
  background: #edf5ff;
}

.thumb-row {
  position: relative;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding: 8px 25px;
  scrollbar-width: none;
}

.thumb-row::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex: 0 0 103px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 13px;
  background: #fff;
}

.thumb img {
  width: 100%;
  height: 103px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-arrow {
  position: sticky;
  z-index: 2;
  top: 0;
  flex: 0 0 22px;
  align-self: center;
  width: 22px;
  height: 52px;
  border: 0;
  background: rgba(255,255,255,.85);
  color: #b8beca;
  font-size: 28px;
  line-height: 1;
}

.thumb-arrow-prev {
  left: -25px;
}

.thumb-arrow-next {
  right: -25px;
}

.thumb.active {
  border-color: var(--ink);
}

.product-copy {
  padding: 0 20px;
}

h1,
h2,
h3 {
  margin: 0;
  color: #080912;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 25px;
  line-height: 1.18;
  font-weight: 950;
}

h2 {
  font-size: clamp(30px, 7.8vw, 40px);
  font-weight: 950;
  text-align: center;
}

.rating {
  margin: 8px 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.rating span {
  color: #ffac16;
  letter-spacing: 1px;
}

.checks {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .01em;
}

.checks li::before,
.offer-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--ink);
  font-weight: 900;
}

.checks li {
  min-height: 28px;
}

.offer {
  padding-top: 12px;
}

.offer h2 {
  position: relative;
  margin: 8px 0 16px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .01em;
}

.offer h2::before,
.offer h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 118px);
  height: 1px;
  background: #edf1f7;
}

.offer h2::before { left: 0; }
.offer h2::after { right: 0; }

.offer-card,
.add-on {
  overflow: hidden;
  margin: 10px 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f6f6f6;
}

.offer-card.selected {
  border-color: var(--navy);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--navy);
}

.offer-card input,
.add-on input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.offer-card label,
.add-on label {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 18px 14px;
}

.offer-card img,
.add-on img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 0;
}

.offer-card strong,
.add-on strong {
  display: inline;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 950;
}

.offer-card em,
.add-on em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.25;
}

mark {
  display: inline-block;
  margin-left: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #ffa64b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  vertical-align: 1px;
}

.offer-card b,
.add-on b {
  text-align: right;
  font-size: 18px;
  line-height: 1.05;
  white-space: nowrap;
}

.offer-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.offer-card .offer-highlights {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 20px 17px 20px;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
}

.bonus-stack {
  margin: 0;
  padding: 9px 14px 11px;
  background: #e7eef7;
}

.bonus-stack div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 50px;
}

.bonus-stack img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bonus-stack span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.bonus-stack b {
  padding: 6px 9px;
  border-radius: 999px;
  background: #a9cdf4;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.bonus-stack small {
  color: rgba(255,255,255,.9);
  text-decoration: line-through;
}

.add-on {
  border-color: #dbe4ef;
  background: #f5f9ff;
}

.add-on .addon-main {
  grid-template-columns: 25px 54px minmax(0, 1fr) auto;
  padding-bottom: 4px;
}

.add-on img {
  width: 52px;
  height: 52px;
}

.add-on em {
  white-space: nowrap;
}

.fake-check {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: background .15s ease, border-color .15s ease;
}

.add-on input:checked ~ label .fake-check,
.add-on input:checked + label .fake-check {
  background: var(--navy);
  border-color: var(--navy);
}

.add-on input:checked ~ label .fake-check::after,
.add-on input:checked + label .fake-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.add-on:has(input:checked) {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
  background: #fff;
}

.select-label {
  display: block;
  padding: 0 18px 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.add-on select {
  width: 47%;
  min-height: 42px;
  margin: 0 0 10px 18px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
}

.cta,
.sticky-cta {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 66px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .03em;
  box-shadow: 0 7px 0 var(--orange-dark);
}

.cta:active,
.sticky-cta:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--orange-dark);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.list-payment__item {
  display: inline-flex;
  width: 38px;
  height: 24px;
  line-height: 0;
}

.payment-badges .icon {
  width: 38px;
  height: 24px;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.notice {
  margin: 0 20px 14px;
  padding: 11px 14px 13px;
  border-radius: 10px;
  background: var(--pink);
}

.notice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  letter-spacing: .03em;
}

.notice p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.notice p + p {
  margin-top: 2px;
}

.problem p,
.fear p,
.guarantee p,
.awkward p,
.review-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
}

.review-slider {
  position: relative;
  min-height: 128px;
  margin: 0 20px 18px;
  padding: 3px 0 31px;
  border-bottom: 1px solid var(--line);
}

.review-slide {
  display: none;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.review-slide.is-active {
  display: grid;
}

.review-slide img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .01em;
}

.review-slide p {
  margin: 8px 0 0;
  padding-top: 6px;
  border-top: 1px solid #edf0f4;
  color: #a0a0a0;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}

.review-slide p span {
  color: #ff9700;
}

.review-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.review-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #8d8d8d;
}

.review-dots button.is-active {
  background: #000;
}

.accordions {
  margin: 0 20px;
  padding-top: 0;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .01em;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "⌄";
  font-size: 18px;
  font-weight: 500;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.summary-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  object-fit: contain;
  vertical-align: -3px;
}

details p {
  margin: 0;
  padding: 0 6px 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.85;
  letter-spacing: .03em;
}

details p + p {
  padding-top: 5px;
}

.ugc-strip h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.video-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 0 8px;
}

.video-track {
  display: flex;
  gap: 14px;
  transition: transform .28s ease;
}

figure {
  position: relative;
  flex: 0 0 calc((100% - 14px) / 2);
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
}

figure img,
figure video {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 19, 60, .86);
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.video-play span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 24px;
  top: 19px;
  border-left: 16px solid rgba(255,255,255,.94);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-card.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.92);
}

.video-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(21,19,60,.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transform: translateY(-50%);
  border: 0;
  z-index: 4;
}

.video-nav-prev { left: 7px; }
.video-nav-next { right: 7px; }

.problem {
  text-align: center;
}

.problem h2 {
  font-size: clamp(30px, 7vw, 34px);
}

.problem p,
.fear p,
.awkward p {
  color: #242633;
  font-size: 23px;
}

.problem img,
.problem video,
.before-after img,
.fear img,
.guarantee img,
.awkward img {
  margin-top: 24px;
  border-radius: 8px;
}

.problem-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / .85;
  object-fit: cover;
  margin-top: 24px;
  border-radius: 8px;
}

.icon-strip-img {
  border-radius: 0;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.icon-grid li {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 88px;
  color: #152238;
  font-size: 15px;
  line-height: 1.1;
}

.icon-grid li:nth-child(4) {
  grid-column: 1 / 2;
}

.line-icon {
  width: 42px;
  height: 42px;
  border: 2px solid #152238;
  border-radius: 11px;
}

.line-icon.paw {
  border-radius: 50%;
  box-shadow: inset 10px -7px 0 -6px #152238, inset -10px -7px 0 -6px #152238;
}

.line-icon.home {
  transform: rotate(45deg);
  border-radius: 5px;
}

.line-icon.heart {
  border-radius: 50% 50% 10px 10px;
}

.line-icon.clipper {
  transform: rotate(-35deg);
}

.faq {
  position: relative;
  margin: 24px 0 0;
  padding: 48px 24px;
  background: #FDFBF7;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq::before,
.faq::after,
.guarantee::after {
  content: none;
}

.faq h2 {
  color: var(--ink);
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.15;
  text-align: center;
}

.faq details {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.faq details:last-of-type {
  border-bottom: 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
}

.faq summary::before {
  content: none;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.faq details[open] summary::after {
  content: "−";
  background: var(--orange);
}

.faq p {
  margin: 0 0 12px;
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.faq p:last-of-type {
  padding-bottom: 18px;
}

.faq p b {
  color: var(--ink);
  font-weight: 800;
}

.before-after,
.fear,
.guarantee,
.awkward,
.owner-results,
.reviews {
  text-align: center;
}

.before-after {
  padding-left: 0;
  padding-right: 0;
}

.before-after h2 {
  padding: 0 20px;
  font-size: 27px;
  line-height: 1.08;
}

.comparison-slider {
  position: relative;
  overflow: hidden;
  width: calc(100% - 40px);
  aspect-ratio: 1 / 1;
  margin: 18px auto 0;
  border-radius: 0;
  background: #fff;
  touch-action: none;
}

.comparison-image,
.comparison-slider img {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0;
  border-radius: 0;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0;
}

.comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--pos));
}

.comparison-label {
  position: absolute;
  top: 0;
  z-index: 3;
  min-width: 58px;
  padding: 6px 10px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .04em;
}

.comparison-label-before { left: 0; }
.comparison-label-after { right: 0; }

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 4px;
  background: linear-gradient(90deg, rgba(18,18,41,.18), #fff 42%, #fff 58%, rgba(18,18,41,.18));
  box-shadow: 0 0 0 1px rgba(18,18,41,.18), 0 0 12px rgba(0,0,0,.24);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(21,19,60,.48);
  box-shadow: 0 6px 20px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.35);
  transform: translate(-50%, -50%);
}

.comparison-divider span::before,
.comparison-divider span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.comparison-divider span::before {
  left: 12px;
  border-right: 8px solid #fff;
}

.comparison-divider span::after {
  right: 12px;
  border-left: 8px solid #fff;
}

.comparison-slider__input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.horizontal-ticker {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 16px 0 18px;
  background: #eaf2fd;
}

.horizontal-ticker__container {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.horizontal-ticker__image {
  flex: 0 0 133px;
  width: 133px;
  height: 42px;
}

.horizontal-ticker__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0;
  border-radius: 0;
  object-fit: contain;
}

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

.fear img,
.guarantee img,
.awkward img {
  box-shadow: var(--shadow);
}

.guarantee {
  position: relative;
  margin-top: 22px;
  margin-bottom: 42px;
  background: var(--navy);
  color: #fff;
}

.guarantee h2,
.guarantee p {
  color: #fff;
}

.owner-results {
  padding-top: 22px;
}

.metric {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 98px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.metric b {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    conic-gradient(from -24deg, #e7f1ff 0 calc(var(--value) * 1%), transparent 0 100%);
  color: var(--ink);
  text-align: center;
  isolation: isolate;
  line-height: 1;
}

.metric b::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(232,241,253,.5);
}

.metric b span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.metric > span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.benefit-ticker {
  position: relative;
  overflow: hidden;
  margin: 24px -20px;
  padding: 18px 0;
  background: var(--navy);
  color: #fff;
}

.benefit-ticker::before,
.benefit-ticker::after {
  content: none;
}

.benefit-ticker__container {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  animation: benefit-ticker-scroll 18s linear infinite;
  will-change: transform;
}

.benefit-ticker__item {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

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

.reviews h2 {
  margin-bottom: 12px;
}

.review-summary {
  display: block;
}

.review-summary .review-note {
  text-align: left;
}

.review-note span,
.review-card em {
  color: #ffac16;
  font-style: normal;
  letter-spacing: 1px;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 16px;
  margin-top: 20px;
  padding: 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.review-card[hidden] {
  display: none;
}

.review-card strong {
  display: block;
  font-size: 20px;
}

.review-card strong i {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a0a0f;
  color: #fff;
  font-size: 10px;
  font-style: normal;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  grid-column: 1;
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.45;
}

.review-card img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 112px;
  height: 112px;
  border-radius: 9px;
  object-fit: cover;
  cursor: zoom-in;
}

.more {
  min-height: 48px;
  margin-top: 32px;
  padding: 0 24px;
  border: 1px solid #d8dde7;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(7, 8, 18, .72);
}

.review-lightbox.is-open {
  display: grid;
}

.review-lightbox img {
  display: block;
  max-width: min(92vw, 460px);
  max-height: 82vh;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  object-fit: contain;
}

.review-lightbox__close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 81;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: rgba(21,19,60,.92);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}

footer {
  display: grid;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 132px;
}

footer a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: .08em;
}

footer small {
  display: block;
  text-align: center;
  color: rgba(255,255,255,.72);
}

.scroll-up {
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 9;
  display: none;
  width: min(468px, calc(100% - 32px));
  min-height: 62px;
  margin: 0;
  font-size: 24px;
  transform: translateX(-50%);
}

.sticky-cta.is-visible {
  display: grid;
}

@media (min-width: 760px) {
  body {
    width: 500px;
  }
}

@media (max-width: 380px) {
  .brand { font-size: 24px; }
  .checks li,
  .problem p,
  .fear p,
  .awkward p,
  .review-card p {
    font-size: 18px;
  }
  .offer-card label {
    grid-template-columns: 62px 1fr;
  }
  .offer-card b {
    grid-column: 2;
    text-align: left;
  }
  .review-card {
    grid-template-columns: 1fr 86px;
  }
  .review-card img {
    width: 86px;
    height: 86px;
  }
}

/* ============================================================
   Felici Insieme — Rebrand additions (2026-05-23)
   Eyebrow, How-it-works, Specs, FI typography overrides
   ============================================================ */

/* Tipografia FI: Playfair Display per H1/H2/H3 */
h1, h2, h3,
.product-copy h1,
.problem h2,
.fear h2,
.guarantee h2,
.how-it-works h2,
.specs h2,
.owner-results h2,
.reviews h2,
.before-after h2,
.ugc-strip h2,
.faq h2,
.accordions summary,
.offer h2,
.notice strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -.01em;
}

/* Eyebrow sopra H1 */
.eyebrow {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Come funziona in 3 passi ---------- */
.how-it-works {
  background: var(--card);
}

.how-it-works h2 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(44, 48, 58, .04);
}

.steps li > .step-num {
  grid-row: 1 / span 2;
}

.steps li > h3,
.steps li > p {
  grid-column: 2;
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: 0;
}

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

.how-img {
  margin: 8px auto 0;
  max-width: 280px;
  border-radius: 14px;
  overflow: hidden;
}

/* ---------- Scheda tecnica ---------- */
.specs {
  background: #fff;
}

.specs h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
}

.specs-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.specs-grid {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.specs-grid > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}

.specs-grid > div:last-child {
  border-bottom: 0;
}

.specs-grid dt {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.specs-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.specs-grid small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  opacity: .85;
}

.specs-note {
  padding: 12px 14px;
  margin: 0;
  background: var(--card);
  border-left: 3px solid var(--mustard);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Sale-bar reason why ---------- */
.sale-bar [data-countdown-date] {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(44, 48, 58, .35);
  text-underline-offset: 2px;
}

/* ============================================================
   Reviews intro unita (titolo + stelle + rating)
   ============================================================ */
.reviews {
  text-align: center;
}

.reviews h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
}

.reviews-subtitle {
  margin: 0 auto 22px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}

.reviews-stars {
  color: #ffac16;
  letter-spacing: 2px;
  font-size: 16px;
  margin-right: 4px;
}

.reviews-subtitle b {
  font-weight: 900;
  margin: 0 4px;
}

/* Reset cards review centratura sotto subtitle */
.reviews > .review-card {
  text-align: left;
}

/* ============================================================
   Footer Felici Insieme (stile KVS canonico)
   ============================================================ */
.real-footer {
  position: relative;
  background-color: var(--navy);
  color: #fff;
  padding: 3rem 1.25rem;
  font-size: 0.85rem;
  overflow: hidden;
  margin: 0;
}

.real-footer .container {
  max-width: 460px;
  margin: 0 auto;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
}

.footer-motto {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 800;
  margin: 1.5rem auto 0;
  max-width: 320px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: .02em;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.fl-col h5 {
  margin: 0 0 .75rem;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: .85rem;
  color: var(--mustard);
  letter-spacing: .06em;
  font-weight: 800;
}

.fl-col a {
  display: block;
  margin-bottom: .5rem;
  color: #e8e8e8;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}

.fl-col a:hover {
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: .78rem;
  color: #ccc;
  text-align: center;
  line-height: 1.5;
}

.footer-copy a {
  color: var(--mustard);
  text-decoration: none;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.real-footer .scroll-up {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
