:root {
  --bg: #0A0A0B;
  --white: #F4F2ED;
  --muted: #A8A39A;
  --accent: #F2C230;
  --accent-soft: rgba(242,194,48,0.10);
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.09);
  --display: "Anton", sans-serif;
  --body: "DM Sans", -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: only dark;
  background: var(--bg);
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
html.is-ios,
html.is-ios body {
  height: 100%;
  overflow: hidden;
}
html.is-ios body {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 0;
}
html.is-ios .ios-page-scroll {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: auto;
}
html.is-ios body.menu-open .ios-page-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ===== SFONDO: blob organici + griglia + vignetta ===== */
.bg-fx { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: var(--bg); }
#bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,194,48,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,194,48,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}
.bg-bottom {
  position: absolute; left: -25%; right: -25%; bottom: -32vh; height: 65vh;
  background: radial-gradient(50% 55% at 50% 50%, rgba(242,194,48,0.13), transparent 70%);
  animation: bottomDrift 16s ease-in-out infinite alternate;
}
@keyframes bottomDrift {
  from { transform: translateX(-7%) scale(1); opacity: .8; }
  to   { transform: translateX(7%) scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .bg-bottom { animation: none; } }
.bg-fx::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 88% 78% at 50% 34%, rgba(10,10,11,0.45) 0%, rgba(10,10,11,0.94) 100%);
}
nav, header, section, footer, .marquee { position: relative; z-index: 1; }

/* ===== NAVBAR a pillola fluttuante ===== */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  display: flex; align-items: center; gap: 18px;
  background: rgba(20,20,22,0.62);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px rgba(255,255,255,0.10), 0 8px 32px rgba(0,0,0,0.35);
  border-radius: 100px;
  padding: 8px 10px 8px 8px;
  white-space: nowrap;
  max-width: calc(100vw - 24px);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 15px; }
.nav-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: 50% 50%; background: #000; border: 1px solid rgba(242,194,48,0.5); }
.nav-menu { display: flex; gap: 4px; list-style: none; margin: 0 0 0 14px; padding: 0; }
.nav-menu a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 100px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-cta {
  background: var(--accent); color: #0A0A0B !important;
  padding: 9px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  filter: drop-shadow(0 0 12px rgba(242,194,48,0.35));
}
/* hamburger */
.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background .15s;
}
.nav-burger:hover { background: rgba(255,255,255,0.09); }
.nav-burger span { display: block; width: 17px; height: 2px; background: var(--white); margin: 0 auto; border-radius: 2px; transition: transform .25s, opacity .2s; }
@media (max-width: 880px) { .nav-menu { display: none; } .navbar { gap: 10px; } .nav-cta { display: none; } }
@media (max-width: 520px) {
  .navbar { left: 12px; right: 12px; transform: none; width: auto; max-width: none; justify-content: space-between; }
  .nav-brand { font-size: 14px; gap: 8px; }
  .nav-brand img { width: 30px; height: 30px; }
}

/* ===== MENU OVERLAY (hamburger) ===== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(8,8,9,0.86);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  padding: 24px;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-close {
  position: absolute; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05);
  color: var(--white); font-size: 22px; cursor: pointer; line-height: 1;
}
.menu-list { list-style: none; margin: 0; padding: 0; text-align: center; display: grid; gap: 6px; width: 100%; max-width: 440px; }
.menu-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-decoration: none; color: var(--white);
  font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  padding: 12px 18px; border-radius: 14px;
  transition: background .15s, color .15s;
}
.menu-list a:hover { background: rgba(242,194,48,0.10); color: var(--accent); }
.menu-list a .m-sub { font-family: var(--body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.menu-list a.soon { color: var(--muted); pointer-events: none; }
.menu-list a.soon .m-sub { color: var(--accent); }
.menu-list .m-div { height: 1px; background: rgba(255,255,255,0.10); margin: 10px 0; }
.menu-social { margin-top: 26px; display: flex; gap: 20px; font-size: 14px; color: var(--muted); }
.menu-social a { text-decoration: none; }
.menu-social a:hover { color: var(--white); }
body.menu-open { overflow: hidden; }

/* ===== BOTTONI ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform .15s ease;
  cursor: pointer; border: none; font-family: var(--body);
}
.btn:hover { transform: scale(1.03); }
.btn-primary { background: var(--accent); color: #0A0A0B; filter: drop-shadow(0 0 16px rgba(242,194,48,0.35)); }
.btn-primary.arrow::after { content: "→"; font-weight: 400; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.16); }
.btn-block { justify-content: center; width: 100%; }

/* ===== HERO (home) ===== */
.hero {
  min-height: max(100vh, 780px);
  display: flex; align-items: center;
  padding: 130px 0 60px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 40px; align-items: center; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(242,194,48,0.35);
  background: rgba(242,194,48,0.07);
  color: var(--accent);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; border-radius: 16px;
  margin-bottom: 26px;
}
.hero-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.hero-title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.4rem, 7.2vw, 5.6rem); line-height: 0.98; letter-spacing: 0.005em; margin: 0 0 18px;
}
.hero-title span {
  display: block;
  background: linear-gradient(135deg, #fff, #cfccc2);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.6));
}
.hero-tagline { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; min-height: 1.6em; margin: 0 0 14px; color: var(--white); }
.typing-cursor { color: var(--accent); font-weight: 300; animation: blink 1s step-end infinite; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.hero-desc { color: var(--muted); font-size: 17px; max-width: 46ch; margin: 0 0 30px; }
.hero-desc strong { color: var(--white); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats {
  display: inline-flex; align-items: center; gap: 22px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 14px 22px; flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--display); font-weight: 400; font-size: 24px; letter-spacing: 0.02em; color: var(--accent); line-height: 1.1; }
.hero-stats small { color: var(--muted); font-size: 12.5px; }
.hero-stats .sep { width: 1px; height: 34px; background: rgba(255,255,255,0.10); }

/* Foto hero */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.photo-wrap { position: relative; width: 100%; max-width: 460px; }
.photo-halo { position: absolute; inset: -22%; background: radial-gradient(56% 56% at 50% 48%, rgba(10,10,11,0.9) 26%, transparent 72%); }
.photo-wrap > img {
  position: relative;
  width: 100%; height: 560px; object-fit: cover; object-position: 50% 10%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent),
                      linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent),
              linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent);
  mask-composite: intersect;
}
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,18,19,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); white-space: nowrap;
}
.float-chip i { font-style: normal; }
.chip-1 { top: 8%; left: -14%; animation: float1 5.5s ease-in-out infinite; }
.chip-2 { top: 26%; right: -16%; animation: float2 6.3s ease-in-out infinite; }
.chip-3 { bottom: 26%; left: -18%; animation: float3 5.1s ease-in-out infinite; }
.chip-4 { bottom: 8%; right: -10%; animation: float4 6.8s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translateY(-10px); } }
@keyframes float2 { 50% { transform: translateY(9px); } }
@keyframes float3 { 50% { transform: translateY(-8px); } }
@keyframes float4 { 50% { transform: translateY(11px); } }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 26px; }
  .chip-1 { left: -4%; } .chip-3 { left: -6%; }
  .chip-2 { right: -6%; } .chip-4 { right: -2%; }
}
@media (max-width: 560px) { .float-chip { font-size: 12px; padding: 8px 12px; } }

/* ===== PAGE HERO (sottopagine) ===== */
.page-hero { padding: 150px 0 40px; }
.page-hero .hero-badge { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.0; letter-spacing: 0.005em; margin: 0 0 18px;
}
.page-hero h1 .highlight { color: var(--accent); }
.page-hero .lead { font-size: 18px; color: var(--muted); max-width: 56ch; margin: 0 0 30px; }
.page-hero .lead strong { color: var(--white); }
.page-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ===== MARQUEE ===== */
.marquee { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); overflow: hidden; padding: 20px 0; background: rgba(255,255,255,0.02); }
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: scrollX 30s linear infinite;
  font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap;
}
.marquee-track span { color: var(--white); opacity: .9; }
.marquee-track span em { font-style: normal; color: var(--accent); margin-right: 56px; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SEZIONI ===== */
section { padding: 92px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.section-tag::before { content: ""; width: 24px; height: 2px; background: var(--accent); }
.section-title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height: 1.02; letter-spacing: 0.005em; margin: 0 0 16px;
}
.section-title .highlight { color: var(--accent); }
.section-sub { color: var(--muted); max-width: 62ch; margin: 0 0 48px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-grid img { border-radius: 22px; border: 1px solid var(--card-border); }
.about-grid p { color: var(--muted); }
.about-grid strong { color: var(--white); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
/* home "chi sono": su smartphone la foto si nasconde (c'è già la hero sopra) */
@media (max-width: 860px) { #chi-sono.about-grid > img, #chi-sono .about-grid > img { display: none; } }

/* DOCENZA IN HOME */
.home-docenza { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.home-docenza-copy p { max-width: 650px; color: var(--muted); }
.home-docenza-copy strong { color: var(--white); }
.home-docenza-copy .btn { margin-top: 12px; }
.home-docenza-photo { margin: 0; overflow: hidden; border: 1px solid var(--card-border); border-radius: 22px; aspect-ratio: 4 / 5; background: #101011; }
.home-docenza-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 42%; transition: transform .35s ease; }
.home-docenza-photo:hover img { transform: scale(1.025); }
@media (max-width: 860px) {
  .home-docenza { grid-template-columns: 1fr; gap: 30px; }
  .home-docenza-photo { aspect-ratio: 4 / 5; }
}

/* CARDS */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 30px 26px; transition: transform .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(242,194,48,0.4); }
.card .num { font-family: var(--display); font-size: 17px; letter-spacing: 0.04em; color: var(--accent); display: block; margin-bottom: 16px; }
.card h3 { font-size: 18.5px; font-weight: 700; margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } .cards-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cards-4 { grid-template-columns: 1fr; } }

/* CHECK LIST */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; color: var(--muted); align-items: flex-start; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.check-list li strong { color: var(--white); }
.check-list.x li::before { content: "✕"; color: #D96A5B; }
.check-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 40px; }
@media (max-width: 720px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* RISULTATI */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.result-item .frame { border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; background: #101011; border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; }
.result-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transition: transform .3s ease; }
.result-item:hover img { transform: scale(1.04); }
.result-caption { font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 9px; text-transform: uppercase; letter-spacing: 0.05em; }
.result-caption em { font-style: normal; color: var(--accent); }
@media (max-width: 860px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }

/* TESTIMONIANZE */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 30px; }
.testi-stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; font-size: 14px; }
.testi-quote { font-size: 15.5px; line-height: 1.55; margin: 0 0 18px; }
.testi-name { font-size: 13px; color: var(--muted); font-weight: 600; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-scroll-hint { display: none; }
@media (max-width: 860px) {
  .testi-grid.testi-carousel-mobile { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 1px 12px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(242,194,48,.5) transparent; }
  .testi-carousel-mobile .testi-card { flex: 0 0 min(82vw, 340px); scroll-snap-align: start; }
  .testi-carousel-mobile::-webkit-scrollbar { height: 5px; }
  .testi-carousel-mobile::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 10px; }
  .testi-carousel-mobile::-webkit-scrollbar-thumb { background: rgba(242,194,48,.45); border-radius: 10px; }
  .testi-scroll-hint { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: 12px; }
  .testi-scroll-hint::after { content: "→"; color: var(--accent); }
}

/* PRODOTTI / VALUE LADDER */
.products { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.product-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 34px; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s;
}
.product-card:hover { transform: translateY(-5px); }
.product-card.featured { background: linear-gradient(150deg, rgba(242,194,48,0.12), var(--card) 55%); border-color: rgba(242,194,48,0.55); }
.product-card.soon { opacity: 0.85; }
.product-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 14px; }
.product-card h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em; font-size: 24px; margin: 0 0 10px; }
.product-card p { color: var(--muted); font-size: 15px; flex-grow: 1; margin-top: 0; }
.product-price { font-family: var(--display); font-size: 24px; letter-spacing: 0.02em; margin: 14px 0; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 15px; margin-right: 8px; font-family: var(--body); }
@media (max-width: 900px) { .products { grid-template-columns: 1fr; } }
.event-banner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 28px 32px; margin-top: 16px;
}
.event-banner.soon { border-style: dashed; }
.event-banner h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 22px; letter-spacing: 0.02em; margin: 0 0 4px; }
.event-banner p { margin: 0; color: var(--muted); font-size: 14px; }
.badge-soon { display: inline-block; background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(242,194,48,0.4); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }

/* OFFER BOX (pagine prodotto) */
.offer { display: grid; grid-template-columns: 1fr; gap: 8px; }
.offer .price-line { font-family: var(--display); font-weight: 400; font-size: 44px; letter-spacing: 0.02em; margin: 4px 0 2px; }
.offer .price-line .old { font-family: var(--body); text-decoration: line-through; color: var(--muted); font-size: 22px; margin-right: 12px; }
.offer .price-note { color: var(--accent); font-size: 13.5px; font-weight: 700; margin-bottom: 20px; }

/* COVER MOCK (ebook/guida) */
.cover-mock {
  aspect-ratio: 3/4; border-radius: 20px; border: 1px solid rgba(242,194,48,0.5);
  background: linear-gradient(160deg, #241d0a, #131313);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; max-width: 400px; margin: 0 auto;
}
.cover-mock .cm-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px; }
.cover-mock .cm-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 34px; line-height: 1.02; letter-spacing: 0.01em; }
.cover-mock .cm-sub { color: var(--muted); font-size: 14px; margin-top: 14px; }

/* VIDEO */
.video-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); background: #000; max-width: 760px; margin: 0 auto; }
.video-wrap video { width: 100%; display: block; }

/* TIMELINE (workshop) */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.timeline .slot { background: var(--card); border: 1px solid var(--card-border); border-radius: 18px; padding: 28px 24px; }
.timeline .slot .time { font-family: var(--display); color: var(--accent); font-size: 15px; letter-spacing: 0.03em; display: block; margin-bottom: 12px; }
.timeline .slot h3 { font-size: 18px; margin: 0 0 12px; }
.timeline .slot ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14.5px; display: grid; gap: 6px; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr; } }

/* FORM */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
.form-grid label { font-size: 13px; font-weight: 700; color: var(--muted); display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.input {
  width: 100%; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 15px 16px; color: var(--white); font-family: var(--body); font-size: 15px;
}
.input:focus { border-color: var(--accent); outline: none; }
textarea.input { min-height: 140px; resize: vertical; }
.form-hp { position: absolute; left: -9999px; }

/* CTA FINALE */
.final-cta {
  background: linear-gradient(150deg, rgba(242,194,48,0.14), var(--card) 60%);
  border: 1px solid rgba(242,194,48,0.5); border-radius: 26px; padding: 64px 48px; text-align: center;
}
.final-cta h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: 0.01em; line-height: 1.05; margin: 0 0 14px; }
.final-cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 32px; }
@media (max-width: 700px) { .final-cta { padding: 44px 24px; } }

/* FOOTER */
footer { border-top: 1px solid var(--card-border); padding: 40px 0 46px; font-size: 13px; color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--white); }
@media (max-width: 700px) {
  footer { padding: 28px 0 max(24px, env(safe-area-inset-bottom)); }
}

/* REVEAL */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) forwards; }
.reveal-now { animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) both; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in, .reveal-now, .float-chip, .marquee-track { animation: none !important; opacity: 1 !important; }
}

/* ================= REVISIONE 2 (agosto) ================= */

/* --- HERO MOBILE: foto subito sotto il nome, foto grande nascosta --- */
.hero-portrait { display: none; }
@media (max-width: 980px) {
  .hero-visual { display: none; }
  .hero-portrait { display: block; position: relative; width: 100%; max-width: 440px; margin: 4px auto 24px; }
  .hero-portrait img {
    width: 100%; height: 300px; object-fit: cover; object-position: 50% 10%;
    -webkit-mask-image: radial-gradient(125% 100% at 50% 32%, #000 52%, transparent 100%);
    mask-image: radial-gradient(125% 100% at 50% 32%, #000 52%, transparent 100%);
  }
  .hero { min-height: 0; padding-top: 108px; }
}
@media (max-width: 560px) { .hero-portrait img { height: 248px; } }

/* --- HERO STATS: sempre su una riga su smartphone --- */
@media (max-width: 560px) {
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 16px 10px; width: 100%; }
  .hero-stats .sep { display: none; }
  .hero-stats .stat { align-items: flex-start; }
  .hero-stats b { font-size: 24px; }
  .hero-stats small { font-size: 11.8px; line-height: 1.22; }
}

/* --- TESTIMONIANZE stile "Recensione Google" --- */
.gcard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.gcard-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #F2C230, #b8891e); color: #0A0A0B; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gcard-meta { flex: 1; min-width: 0; }
.gcard-name { font-weight: 700; font-size: 15px; }
.gcard-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.gcard-sub .stars { color: var(--accent); letter-spacing: 1px; }
.gcard-g { width: 20px; height: 20px; flex-shrink: 0; }
.gcard .testi-quote { font-size: 15px; opacity: .95; }

/* --- CHECK LIST: allineamento più pulito --- */
.check-list li { line-height: 1.5; }
.check-list.two-col { row-gap: 16px; }
@media (max-width: 860px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* --- BUY BOX: prezzo + pulsante in fondo alle pagine prodotto --- */
.buy-box { background: linear-gradient(150deg, rgba(242,194,48,0.13), var(--card) 60%); border: 1px solid rgba(242,194,48,0.45); border-radius: 22px; padding: 40px 34px; text-align: center; max-width: 640px; margin: 0 auto; }
.buy-box .price-line { font-family: var(--display); font-weight: 400; font-size: 48px; letter-spacing: .02em; margin: 0 0 4px; }
.buy-box .price-line .old { font-family: var(--body); text-decoration: line-through; color: var(--muted); font-size: 22px; margin-right: 12px; }
.buy-box .price-note { color: var(--accent); font-size: 13.5px; font-weight: 700; margin-bottom: 24px; }

/* ================= REVISIONE 3 (agosto) ================= */

/* --- COPERTINE PRODOTTO (libricini scontornati che "galleggiano") --- */
.product-cover {
  background: transparent; border: none; margin-bottom: 18px; height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.product-cover img { max-width: 82%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 14px 26px rgba(0,0,0,0.55)); }
.product-media {
  background: transparent; border: none; max-width: 360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.product-media img { width: 100%; display: block; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.6)); }

/* --- CHECK LIST a due colonne allineate (no "tetris") --- */
.check-list li {
  display: grid; grid-template-columns: 22px minmax(140px, 200px) 1fr;
  column-gap: 14px; align-items: start; line-height: 1.5;
}
.check-list li::before { margin-top: 0; }
.ck-term { font-weight: 700; color: var(--white); }
.ck-desc { color: var(--muted); }
.ck-full { grid-column: 2 / 4; color: var(--muted); }
.check-list.x li { grid-template-columns: 22px 1fr; }
.check-list.x .ck-full { grid-column: 2 / 3; }
@media (max-width: 560px) {
  .check-list li { grid-template-columns: 20px 118px 1fr; column-gap: 10px; }
}

/* --- HERO MOBILE stile Matteo: foto circolare con chip, sopra il nome --- */
@media (max-width: 980px) {
  .hero-portrait { display: none !important; }        /* via la foto orizzontale */
  .hero { min-height: 0; padding-top: 114px; padding-bottom: 30px; }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-visual { display: flex !important; order: -1; min-height: 0; margin: 14px auto 10px; width: 100%; }
  .photo-wrap { width: min(230px, 58vw); max-width: none; }
  .photo-halo { inset: -10%; }
  .hero-badge { margin-bottom: 14px; }
  .hero-title { margin-bottom: 10px; }
  .hero-tagline { min-height: 1.3em; margin-bottom: 10px; }
  .hero-desc { margin-bottom: 20px; }
  .photo-wrap > img {
    height: auto; aspect-ratio: 1 / 1; border-radius: 50%;
    border: 2px solid rgba(242,194,48,0.55);
    -webkit-mask-image: none; mask-image: none; object-position: 50% 12%;
  }
  /* anello orbitale */
  .photo-wrap::after {
    content: ""; position: absolute; inset: -14px; border-radius: 50%;
    border: 1px dashed rgba(242,194,48,0.35); pointer-events: none;
  }
  .float-chip { font-size: 11.5px; padding: 7px 12px; }
  /* SOLO ai lati (mai in alto: lì c'è il viso). Verificate: nessuna sul viso. */
  .chip-1 { top: 30%; left: -34%; right: auto; bottom: auto; }   /* Coach Estetico: sinistra mid */
  .chip-2 { bottom: 14%; left: -30%; top: auto; right: auto; }   /* Mental Coach: sinistra basso */
  .chip-3 { top: 24%; right: -32%; bottom: auto; left: auto; }   /* Biomeccanica: destra mid */
  .chip-4 { bottom: 10%; right: -28%; top: auto; left: auto; }   /* Prep Gara: destra basso */
  .hero-content { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .photo-wrap { width: min(212px, 56vw); }
  .float-chip { font-size: 10.5px; padding: 6px 11px; }
}

/* ================= REVISIONE 4 ================= */
/* Immagini prodotto: desktop leggermente più grande, mobile giusto (non gigante) */
.product-media { max-width: 410px; }
@media (max-width: 980px) {
  .product-media { max-width: 340px; }
  .product-cover { height: 200px; }
}
@media (max-width: 560px) {
  .product-media { max-width: 288px; }
  .product-cover { height: 180px; }
  .product-cover img { max-width: 70%; }
}
/* Workshop: meno spazio sopra il video + poster nero (niente volto) */
.video-wrap { background: #000; }
.video-wrap video { background: #000; }

/* Recensione singola (Emanuele): nascosta su desktop per avere 3x3 pulito,
   mostrata su mobile dove le card sono in colonna singola */
.hide-desktop { display: none; }
@media (max-width: 860px) { .hide-desktop { display: block; } }

/* Banner "in arrivo": pulsante sempre allineato a destra (no wrap se testo lungo) */
.event-banner > div { flex: 1 1 340px; }
.event-banner > .btn { flex-shrink: 0; }

/* ================= REVISIONE 5 — SALES PAGES ================= */
/* Frase-manifesto grande */
.big-statement { max-width: 940px; margin: 0 auto; text-align: center; }
.big-statement h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 2.9rem); line-height: 1.07; letter-spacing: .01em; margin: 0; }
.big-statement .highlight { color: var(--accent); }
.big-statement p { color: var(--muted); font-size: 17px; max-width: 62ch; margin: 22px auto 0; }

/* Lista "dolori" */
.pain-list { display: grid; gap: 14px; max-width: 780px; margin: 0; padding: 0; }
.pain-list li { list-style: none; background: var(--card); border: 1px solid var(--card-border); border-left: 3px solid var(--accent); border-radius: 14px; padding: 18px 22px; color: var(--white); font-size: 16.5px; font-style: italic; }

/* A chi è / NON è */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-col { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 30px 28px; }
.fit-col.yes { border-color: rgba(242,194,48,0.42); background: linear-gradient(160deg, rgba(242,194,48,0.08), var(--card) 60%); }
.fit-col h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 20px; letter-spacing: .02em; margin: 0 0 20px; }
.fit-col.yes h3 { color: var(--accent); }
.fit-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.fit-col li { position: relative; padding-left: 30px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.fit-col.yes li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 800; }
.fit-col.no li::before { content: "✕"; position: absolute; left: 0; top: -1px; color: #8a8078; font-weight: 800; }

/* FAQ accordion */
.faq { max-width: 840px; display: grid; gap: 12px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 0 22px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 400; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Credenziali (numeri autorità) */
.cred-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cred-row .cred { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 26px 18px; text-align: center; }
.cred-row .cred b { font-family: var(--display); font-weight: 400; font-size: clamp(1.8rem,3.6vw,2.5rem); color: var(--accent); display: block; line-height: 1; }
.cred-row .cred small { color: var(--muted); font-size: 13px; display: block; margin-top: 9px; line-height: 1.35; }

/* Box bonus / garanzia / rassicurazione */
.assure { display: flex; gap: 18px; align-items: flex-start; background: linear-gradient(150deg, rgba(242,194,48,0.11), var(--card) 60%); border: 1px solid rgba(242,194,48,0.38); border-radius: 20px; padding: 28px 30px; max-width: 860px; margin: 0 auto; }
.assure .ico { font-size: 30px; line-height: 1; flex-shrink: 0; }
.assure h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 19px; letter-spacing: .02em; margin: 0 0 8px; }
.assure p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.assure strong { color: var(--white); }

/* Price tiers (workshop) */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 820px; margin: 0 auto; }
.tier { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 12px 12px; text-align: center; min-height: 74px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.tier.done { opacity: .5; }
.tier.live { border-color: rgba(242,194,48,0.5); background: linear-gradient(160deg, rgba(242,194,48,0.12), var(--card) 60%); }
.tier b { font-family: var(--display); font-weight: 400; font-size: 21px; color: var(--white); line-height: 1; letter-spacing: .02em; }
.tier.live b { color: var(--accent); }
.tier small { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; line-height: 1.25; }
.tier.done small { color: #7c766d; }

/* Trust line sotto i CTA */
.trust-line { color: var(--muted); font-size: 13px; margin-top: 16px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.trust-line span::before { content: "✓ "; color: var(--accent); }

@media (max-width: 860px) {
  .fit-grid { grid-template-columns: 1fr; }
  .cred-row { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .assure { flex-direction: column; gap: 12px; }
}

/* Logo nel footer */
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { width: 26px; height: 26px; border-radius: 50%; background: #000; border: 1px solid rgba(242,194,48,0.4); flex-shrink: 0; }

/* ================= REVISIONE 6 — Muro WhatsApp ================= */
.wa-wall { column-count: 3; column-gap: 16px; margin-top: 44px; }
.wa-item { break-inside: avoid; margin: 0 0 16px; border-radius: 14px; overflow: hidden; border: 1px solid var(--card-border); box-shadow: 0 8px 22px rgba(0,0,0,0.35); background: #ece5dd; }
.wa-item img { width: 100%; display: block; }
.wa-note { color: var(--muted); font-size: 13px; margin-top: 26px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.wa-note b { color: #25D366; }
@media (max-width: 900px) { .wa-wall { column-count: 2; } }
@media (max-width: 560px) { .wa-wall { column-count: 1; max-width: 300px; margin-left: auto; margin-right: auto; } }

/* ================= REVISIONE 7 — Hero prodotto (immagine nel primo impatto mobile) ================= */
.hero-prod { display: grid; grid-template-columns: 0.9fr 1.1fr; column-gap: 56px; row-gap: 22px; align-items: center; }
.hero-prod .hp-text { grid-column: 1; grid-row: 1; align-self: end; }
.hero-prod .hp-cta  { grid-column: 1; grid-row: 2; align-self: start; }
.hero-prod .product-media { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
@media (max-width: 980px) {
  .hero-prod { display: flex; flex-direction: column; row-gap: 0; }
  .hero-prod .hp-text { order: 1; }
  .hero-prod .product-media { order: 2; margin: 26px auto 18px; max-width: 240px; }
  .hero-prod .hp-cta { order: 3; }
  .page-hero { padding-top: 104px; }        /* recupera lo spazio vuoto in alto su mobile */
  .hero-prod .hp-text h1 { margin-bottom: 0; }
  .hero-prod .hp-cta .lead { margin-top: 14px; }
}
@media (max-width: 560px) {
  .hero-prod .product-media { max-width: 220px; margin: 22px auto 16px; }
}

/* ================= REVISIONE 8 ================= */
/* Fix: immagine hero prodotto centrata su mobile */
@media (max-width: 980px) {
  .hero-prod { align-items: center; }
  .hero-prod .hp-text, .hero-prod .hp-cta { align-self: stretch; width: 100%; }
  .hero-prod .product-media { align-self: center; }
}

/* Sezione Strumenti proprietari (coaching) */
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.tool-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 32px 30px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.tool-phone { width: 228px; border-radius: 30px; border: 6px solid #17171b; box-shadow: 0 20px 50px rgba(0,0,0,.55); overflow: hidden; background: #000; }
.tool-phone img { width: 100%; display: block; }
.tool-phone.soon { aspect-ratio: 680 / 1354; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #151515, #0c0c0d); }
.tool-soon { text-align: center; display: grid; gap: 8px; padding: 20px; }
.tool-soon span { font-size: 42px; }
.tool-soon b { color: var(--white); font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .03em; font-size: 18px; }
.tool-soon small { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.tool-body { text-align: center; }
.tool-tag { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 10px; }
.tool-body h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 20px; letter-spacing: .02em; margin: 0 0 10px; line-height: 1.12; }
.tool-body p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }
.tool-quote { text-align: center; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.2rem, 2.5vw, 1.75rem); color: var(--white); letter-spacing: .01em; max-width: 740px; margin: 50px auto 34px; line-height: 1.18; }
.tool-quote .highlight { color: var(--accent); }
@media (max-width: 820px) { .tool-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* Pill "In arrivo" accanto al tag strumento */
.soon-pill { display: inline-block; margin-left: 6px; background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(242,194,48,0.4); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 2px 7px; border-radius: 100px; vertical-align: middle; }

/* Schermo nutrizione ricostruito on-brand (dentro .tool-phone) */
.nutri-screen { aspect-ratio: 680 / 1354; background: radial-gradient(120% 80% at 50% 0%, #17150e 0%, #0c0c0d 60%); display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; gap: 0; }
.nutri-screen .ns-logo { width: 40px; height: 40px; align-self: flex-start; margin-bottom: auto; }
.nutri-screen .ns-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.nutri-screen .ns-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.nutri-screen .ns-pill { margin-top: 12px; border: 1px solid rgba(242,194,48,0.5); color: var(--accent); border-radius: 100px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; padding: 6px 14px; }
.nutri-screen .ns-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 8vw, 40px); line-height: .95; letter-spacing: .01em; color: var(--white); margin: 18px 0 8px; }
.nutri-screen .ns-title span { color: var(--accent); }
.nutri-screen .ns-sub { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.nutri-screen .ns-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.nutri-screen .ns-c { border: 1px solid var(--card-border); border-radius: 12px; padding: 14px 4px 10px; display: grid; gap: 8px; justify-items: center; background: rgba(255,255,255,0.02); }
.nutri-screen .ns-c svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.nutri-screen .ns-c small { color: var(--white); font-size: 11px; }
.nutri-screen .ns-btn { margin-top: 16px; width: 100%; border: 1px solid rgba(242,194,48,0.55); color: var(--accent); border-radius: 12px; padding: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 4px; }

/* Foto sezione "Cos'è" (coaching): figura con didascalia + meno vuoto sopra su mobile */
.cose-figure { position: relative; margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--card-border); }
.cose-figure img { width: 100%; display: block; }
.cose-figure figcaption { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(10,10,11,0.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--card-border); color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 8px 13px; border-radius: 100px; }
.cose-figure figcaption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(242,194,48,0.7); }
@media (max-width: 860px) {
  #cose { padding-top: 34px; }
  .cose-figure img { max-height: 380px; object-fit: cover; object-position: 50% 28%; }
}

/* Sottotitolo prodotto (titolo scritto della guida sotto l'hook) */
.prod-subtitle { margin: 14px 0 0; color: var(--white); font-family: var(--body); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 15px; line-height: 1.3; opacity: .92; }
.prod-subtitle::before { content: "— "; color: var(--accent); }

/* ================= REVISIONE 9 — Atleti / autorità ================= */
.auth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.auth-item { position: relative; margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 3 / 4; background: #101011; }
.auth-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.auth-item:hover img { transform: scale(1.05); }
.auth-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 12px; font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .02em; background: linear-gradient(to top, rgba(0,0,0,.78), transparent); }
.auth-item figcaption em { font-style: normal; color: var(--accent); }
@media (max-width: 860px) { .auth-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================= REVISIONE 10 — Carosello atleti + feature ================= */
.hscroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 40px; padding-bottom: 12px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(242,194,48,.5) transparent; }
.hscroll-shell { position: relative; margin-top: 40px; }
.hscroll-shell .hscroll { margin-top: 0; }
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.hscroll::-webkit-scrollbar-thumb { background: rgba(242,194,48,.45); border-radius: 10px; }
.hscroll .auth-item { flex: 0 0 auto; width: 190px; scroll-snap-align: start; aspect-ratio: 3 / 4; }
.hscroll-hint { color: var(--muted); font-size: 12px; margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.hscroll-hint::after { content: "→"; color: var(--accent); }
.hscroll-arrow { display: none; position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; transform: translateY(-50%); border: 1px solid rgba(242,194,48,.65); border-radius: 50%; background: rgba(10,10,11,.82); color: var(--accent); font-size: 30px; line-height: 1; cursor: pointer; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.hscroll-arrow:hover { background: rgba(242,194,48,.16); transform: translateY(-50%) scale(1.06); }
.hscroll-arrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.hscroll-arrow:disabled { opacity: 0; pointer-events: none; }
.hscroll-prev { left: 8px; }
.hscroll-next { right: 8px; }
@media (min-width: 861px) { .hscroll-arrow { display: grid; } }
@media (max-width: 560px) { .hscroll .auth-item { width: 150px; } }

/* Feature image (foto posing coach) */
.feature-img { position: relative; margin: 40px 0 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--card-border); max-height: 560px; }
.feature-img img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; object-position: 50% 30%; display: block; }
.feature-img figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 24px 22px; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.feature-img figcaption b { display: block; font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1.1rem,3vw,1.6rem); color: #fff; }
.feature-img figcaption span { color: var(--muted); font-size: 14px; }
@media (min-width: 861px) {
  .feature-img { height: clamp(500px, 42vw, 620px); max-height: 620px; }
  .feature-img img { height: 100%; max-height: none; object-position: 50% 62%; }
}

/* Foto delle docenze, dedicate alla pagina Workshop */
.docenze-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.docenza-card { margin: 0; overflow: hidden; border: 1px solid var(--card-border); border-radius: 20px; background: #101011; aspect-ratio: 4 / 3; }
.docenza-card.docenza-wide { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.docenza-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.docenza-card:hover img { transform: scale(1.025); }
.docenza-portrait img { object-position: 50% 43%; }
@media (max-width: 700px) {
  .docenze-grid { grid-template-columns: 1fr; }
  .docenza-card.docenza-wide { grid-column: auto; aspect-ratio: 16 / 10; }
  .docenza-card.docenza-portrait { aspect-ratio: 4 / 5; }
}

/* ---------- Banner consenso cookie ---------- */
.cc-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  background: rgba(16,16,18,0.97);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  padding-bottom: env(safe-area-inset-bottom);
}
.cc-banner.is-visibile { opacity: 1; transform: translateY(0); }
.cc-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.cc-testo strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .4px;
  color: var(--white);
  margin-bottom: 4px;
}
.cc-testo p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.cc-testo a { color: var(--accent); text-decoration: underline; }
.cc-azioni { display: flex; gap: 10px; flex-shrink: 0; }
.cc-btn {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.cc-rifiuta {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--card-border);
}
.cc-rifiuta:hover { color: var(--white); border-color: rgba(255,255,255,0.28); }
.cc-accetta {
  background: var(--accent);
  color: #0A0A0B;
  border: 1px solid var(--accent);
}
.cc-accetta:hover { background: #ffd44d; border-color: #ffd44d; }
.cc-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 720px) {
  .cc-banner { left: 8px; right: 8px; bottom: 8px; border-radius: 14px; }
  .cc-inner { flex-direction: column; align-items: stretch; gap: 11px; padding: 14px; }
  .cc-testo strong { font-size: 15px; margin-bottom: 3px; }
  .cc-testo p { font-size: 12.5px; line-height: 1.45; }
  .cc-azioni { flex-direction: row; }
  .cc-btn { flex: 1; padding: 11px 12px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-banner { transition: opacity .01ms; transform: none; }
}

/* Etichette obbligatorio/facoltativo nel modulo contatti */
.req, .opt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: 1px;
}
.req { color: var(--accent); background: var(--accent-soft); }
.opt { color: var(--muted); background: rgba(255,255,255,0.05); }

/* Consenso newsletter nel modulo contatti */
.form-consenso { grid-column: 1 / -1; }
.consenso-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consenso-label span {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.consenso-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 1px 0 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.consenso-label:hover span { color: var(--white); }
.form-consenso[hidden] { display: none; }
