/* ==========================================================
   Excalibur Nutri-Fit - landing completa con form mail
   ========================================================== */

:root {
  --cream: #fbf4e8;
  --cream-2: #f5ead9;
  --paper: rgba(255, 252, 247, 0.78);
  --paper-solid: #fffaf3;
  --ink: #15110c;
  --ink-soft: #33291f;
  --muted: #74685e;
  --red: #9d1f2b;
  --red-2: #c63a33;
  --red-dark: #651015;
  --gold: #dfaa48;
  --gold-2: #f7d58a;
  --green: #1e6847;
  --line: rgba(21, 17, 12, 0.11);
  --line-light: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 22px 70px rgba(52, 34, 16, 0.12);
  --shadow-red: 0 24px 60px rgba(157, 31, 43, 0.28);
  --radius-xxl: 44px;
  --radius-xl: 32px;
  --container: 1180px;
  --focus: 0 0 0 4px rgba(157, 31, 43, 0.24);
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(247, 213, 138, 0.55), transparent 24rem),
    radial-gradient(circle at 100% 14%, rgba(157, 31, 43, 0.15), transparent 22rem),
    linear-gradient(180deg, #fffaf2 0%, #f5ead9 50%, #fffaf3 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(21, 17, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 17, 12, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.page-orb-one {
  width: 420px;
  height: 420px;
  top: 120px;
  left: -180px;
  background: rgba(223, 170, 72, 0.22);
}

.page-orb-two {
  width: 340px;
  height: 340px;
  right: -150px;
  bottom: 12%;
  background: rgba(157, 31, 43, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(21, 17, 12, 0.08);
  background: rgba(251, 244, 232, 0.72);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-2) 52%, var(--gold) 100%);
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
  box-shadow: 0 16px 36px rgba(157, 31, 43, 0.26);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.36), transparent 65%);
  transform: translateX(-70%) rotate(14deg);
  animation: shine 5.8s ease-in-out infinite;
}

.brand-text {
  display: grid;
  line-height: 1.03;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 40px rgba(52, 34, 16, 0.06);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(21, 17, 12, 0.72);
  font-size: 13px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(247, 213, 138, 0.34);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 15px 36px rgba(21, 17, 12, 0.14);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 15px 32px rgba(52, 34, 16, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-panel {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 10px;
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.mobile-panel a {
  display: block;
  padding: 15px 16px;
  border-radius: 18px;
  font-weight: 950;
}

.mobile-panel a:hover {
  background: rgba(247, 213, 138, 0.25);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 76px 0 66px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(157, 31, 43, 0.08) 44% 44.5%, transparent 44.5%),
    linear-gradient(128deg, transparent 0 58%, rgba(223, 170, 72, 0.16) 58% 58.4%, transparent 58.4%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(410px, 1.02fr);
  gap: 62px;
  align-items: center;
}

.hero-content {
  align-self: center;
  overflow: visible;
}

.campaign-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(157, 31, 43, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 36px rgba(52, 34, 16, 0.06);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(157, 31, 43, 0.38);
  animation: pulse 1.8s ease-out infinite;
}

.hero-overline {
  position: relative;
  width: fit-content;
  margin: 0 0 14px;
  padding-left: 58px;
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero-title-v3 {
  max-width: 680px;
  margin: 0;
  overflow: visible;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(56px, 7vw, 102px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-title-v3 .hero-word {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding-right: 0.04em;
  overflow: visible;
}

.hero-word-dark {
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-word-gradient {
  color: transparent;
  background: linear-gradient(110deg, #81121b 0%, var(--red) 42%, #c96e35 72%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-word-last {
  font-size: 0.82em;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.hero-message-card {
  max-width: 620px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(21, 17, 12, 0.09);
  border-left: 5px solid var(--red);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 50px rgba(52, 34, 16, 0.08);
  backdrop-filter: blur(18px);
}

.hero-message-card p {
  margin: 0;
  color: rgba(21, 17, 12, 0.78);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
}

.hero-message-card strong {
  color: var(--ink);
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  box-shadow: 0 30px 66px rgba(157, 31, 43, 0.34);
}

.btn-glass {
  border: 1px solid rgba(21, 17, 12, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(52, 34, 16, 0.07);
}

.btn-wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.proof-item {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 42px rgba(52, 34, 16, 0.08);
}

.proof-item::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -42px;
  bottom: -42px;
  border-radius: 999px;
  background: rgba(223, 170, 72, 0.2);
}

.proof-item span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.proof-item strong {
  display: block;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-item.featured {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(223, 170, 72, 0.5), transparent 44%),
    linear-gradient(135deg, var(--ink), #3b2415);
}

.proof-item.featured span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-stage {
  position: relative;
  min-height: 690px;
  perspective: 1000px;
  overflow: visible;
}

.stage-back-card {
  position: absolute;
  inset: 34px 0 20px 74px;
  border-radius: var(--radius-xxl);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(102, 16, 21, 0.96), rgba(157, 31, 43, 0.88) 48%, rgba(223, 170, 72, 0.92));
  transform: rotate(3.2deg);
  box-shadow: 0 32px 80px rgba(157, 31, 43, 0.16);
}

.hero-photo {
  position: absolute;
  inset: 0 34px 0 28px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xxl);
  background: #ddd;
  transform: rotate(-0.8deg);
  box-shadow: 0 38px 92px rgba(52, 34, 16, 0.22);
}

.hero-photo::before {
  content: "90 giorni";
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(62px, 7vw, 108px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(21, 17, 12, 0.58) 100%),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.22), transparent 24%);
  pointer-events: none;
}

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

.metric-card,
.round-badge {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 252, 247, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 52px rgba(52, 34, 16, 0.16);
}

.metric-card {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border-radius: 24px;
}

.metric-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-card strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.metric-card-top {
  left: 6px;
  top: 92px;
}

.metric-card-bottom {
  right: -4px;
  bottom: 108px;
}

.round-badge {
  right: 2px;
  top: 30px;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 999px;
  text-align: center;
  transform: rotate(8deg);
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.9), rgba(255, 250, 243, 0.8));
}

.round-badge span,
.round-badge small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.round-badge strong {
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 45px;
  line-height: 0.95;
}

.intro-strip {
  padding: 10px 0 42px;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 30%, rgba(223, 170, 72, 0.22), transparent 36%),
    linear-gradient(135deg, var(--ink), #2d1d14);
  color: #fff;
  box-shadow: 0 24px 70px rgba(21, 17, 12, 0.15);
}

.intro-strip p {
  margin: 0;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.intro-strip strong {
  max-width: 520px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.25;
}

.section {
  padding: 84px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.editorial-copy,
.editorial-panel,
.method-card,
.offer-content,
.result-card,
.final-cta {
  border: 1px solid rgba(21, 17, 12, 0.08);
  background: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.editorial-copy {
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-xxl);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(157, 31, 43, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-copy h2,
.section-heading h2,
.offer-content h2,
.results-header h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.editorial-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-xxl);
}

.editorial-panel p {
  margin: 0;
  color: rgba(21, 17, 12, 0.74);
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p,
.results-header p,
.final-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xxl);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 86px rgba(52, 34, 16, 0.14);
}

.method-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -95px;
  top: -95px;
  border-radius: 999px;
  background: rgba(223, 170, 72, 0.18);
}

.method-card-feature {
  background:
    radial-gradient(circle at 80% 0%, rgba(223, 170, 72, 0.32), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 240, 199, 0.54));
}

.card-number {
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(21, 17, 12, 0.08);
  font-family: "Anton", Impact, sans-serif;
  font-size: 110px;
  line-height: 0.8;
}

.method-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 84px;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 20px 42px rgba(21, 17, 12, 0.16);
  font-size: 30px;
}

.method-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.method-card p {
  position: relative;
  margin: 18px 0 0;
  color: var(--muted);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.offer-media {
  position: sticky;
  top: 112px;
  height: calc(100vh - 142px);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xxl);
  box-shadow: 0 36px 90px rgba(52, 34, 16, 0.18);
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(21, 17, 12, 0.5) 100%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 28%);
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-media-caption {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(18px);
}

.offer-media-caption span {
  display: block;
  color: var(--gold-2);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.offer-media-caption strong {
  display: block;
  max-width: 410px;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.offer-content {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xxl);
}

.offer-content > p {
  color: var(--muted);
}

.offer-price {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  margin: 30px 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(223, 170, 72, 0.48), transparent 38%),
    linear-gradient(135deg, var(--ink), #3c2415);
  color: #fff;
  box-shadow: 0 24px 56px rgba(21, 17, 12, 0.18);
}

.offer-price::after {
  content: "PROMO";
  position: absolute;
  right: -12px;
  top: 22px;
  color: rgba(255, 255, 255, 0.07);
  font-family: "Anton", Impact, sans-serif;
  font-size: 120px;
  line-height: 0.8;
  letter-spacing: -0.05em;
  transform: rotate(-8deg);
}

.offer-price span,
.offer-price small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-price span {
  font-size: 12px;
}

.offer-price strong {
  position: relative;
  z-index: 2;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(80px, 12vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.offer-price small {
  position: relative;
  z-index: 2;
  font-size: 11px;
}

.premium-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.premium-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(21, 17, 12, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.premium-list li > span {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.premium-list strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.premium-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.bonus-ribbon {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 26px 0 22px;
  padding: 18px;
  border: 1px solid rgba(223, 170, 72, 0.32);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 244, 207, 0.92), rgba(255, 255, 255, 0.72));
}

.bonus-ribbon span {
  font-size: 27px;
}

.bonus-ribbon p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.scarcity,
.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.results-section {
  overflow: hidden;
}

.results-header {
  max-width: 900px;
  margin-bottom: 24px;
}

.results-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  margin: 0 0 28px;
  color: rgba(21, 17, 12, 0.12);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

.results-marquee span {
  white-space: nowrap;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-xl);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 74px rgba(52, 34, 16, 0.13);
}

.result-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -56px;
  bottom: -56px;
  border-radius: 999px;
  background: rgba(157, 31, 43, 0.10);
}

.result-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 24px;
  background: rgba(247, 213, 138, 0.46);
  font-size: 30px;
}

.result-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.result-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta-section {
  padding: 48px 0 96px;
}

.final-cta {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xxl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 240, 199, 0.54)),
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=1600&q=88") center/cover;
  background-blend-mode: screen;
}

.final-cta-copy p strong {
  color: var(--ink);
  font-weight: 950;
}

.deadline-card {
  display: grid;
  gap: 5px;
  width: fit-content;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 22px 50px rgba(21, 17, 12, 0.18);
}

.deadline-card span,
.deadline-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.deadline-card strong {
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(52, 34, 16, 0.12);
}

.form-intro {
  padding: 18px;
  border: 1px solid rgba(157, 31, 43, 0.12);
  border-radius: 22px;
  background: rgba(255, 244, 207, 0.52);
}

.form-intro strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.form-intro p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: rgba(21, 17, 12, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(21, 17, 12, 0.13);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:hover,
.form-row textarea:hover,
.form-row select:hover {
  border-color: rgba(157, 31, 43, 0.3);
}

.form-row input,
.form-row select {
  height: 56px;
}

.form-row input {
  padding: 0 16px;
}

.form-row select {
  padding: 0 44px 0 16px;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(135deg, var(--red) 50%, transparent 50%),
    #fff;
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  appearance: none;
  cursor: pointer;
}

.form-row textarea {
  min-height: 122px;
  padding: 15px 16px;
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(30, 104, 71, 0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(21, 17, 12, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--red);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes shine {
  0%, 72%, 100% {
    transform: translateX(-80%) rotate(14deg);
  }
  84% {
    transform: translateX(90%) rotate(14deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 31, 43, 0.38);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(157, 31, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 31, 43, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-38%);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .editorial-grid,
  .offer-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-title-v3 {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 630px;
  }

  .offer-media {
    position: relative;
    top: auto;
    height: 560px;
    min-height: 0;
  }

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-title-v3 {
    max-width: 100%;
    font-size: clamp(48px, 13.4vw, 72px);
    line-height: 0.91;
  }

  .hero-word-last {
    font-size: 0.78em;
    line-height: 1;
  }

  .hero-message-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .method-grid,
  .results-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-photo {
    inset: 0 18px 0 0;
  }

  .stage-back-card {
    inset: 30px 4px 18px 34px;
  }

  .hero-photo::before {
    left: 22px;
    bottom: 28px;
    font-size: clamp(48px, 14vw, 74px);
  }

  .metric-card {
    padding: 14px;
  }

  .metric-card-top {
    top: 42px;
  }

  .metric-card-bottom {
    bottom: 50px;
  }

  .round-badge {
    width: 116px;
    height: 116px;
  }

  .round-badge strong {
    font-size: 37px;
  }

  .intro-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }

  .editorial-copy h2,
  .section-heading h2,
  .offer-content h2,
  .results-header h2,
  .final-cta h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .method-card {
    min-height: 340px;
  }

  .method-icon {
    margin-bottom: 70px;
  }

  .offer-media {
    height: 430px;
    border-radius: 34px;
  }

  .offer-media-caption span {
    font-size: 52px;
  }

  .offer-price strong {
    font-size: 92px;
  }

  .results-marquee {
    display: none;
  }

  .form-intro strong {
    font-size: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================
   v10 - modulo contatto spostato nella hero section
   ========================================================== */

.hero-grid {
  align-items: start;
}

.hero-stage {
  min-height: 0;
  display: grid;
  gap: 22px;
  perspective: none;
}

.hero-stage,
.hero-stage:hover {
  transform: none !important;
}

.hero-stage::before {
  content: "";
  display: block;
  min-height: 610px;
}

.hero-form-card {
  position: relative;
  z-index: 8;
  margin-top: 12px;
}

.hero-form-card .lead-form {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-form-card .form-intro {
  background: rgba(255, 244, 207, 0.68);
}

.final-recap-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(21, 17, 12, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 50px rgba(52, 34, 16, 0.09);
}

.final-recap-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.final-recap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero-stage::before {
    min-height: 560px;
  }

  .hero-form-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 740px) {
  .hero-stage {
    gap: 18px;
  }

  .hero-stage::before {
    min-height: 520px;
  }

  .hero-form-card {
    margin-top: 0;
  }

  .hero-form-card .lead-form {
    border-radius: 26px;
  }

  .final-recap-card strong {
    font-size: 24px;
  }
}


/* ==========================================================
   v11 - form al posto della foto nella hero
   ========================================================== */

.hero-stage-form-only {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto !important;
  gap: 18px;
  perspective: none;
  overflow: visible;
}

.hero-stage-form-only::before {
  display: none !important;
  content: none !important;
}

.hero-stage-form-only .round-badge {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 0 6px auto;
  transform: rotate(8deg);
  z-index: 5;
}

.hero-stage-form-only .hero-form-card {
  position: relative;
  z-index: 8;
  margin-top: 0;
}

.hero-stage-form-only .lead-form {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(52, 34, 16, 0.12);
}

.stage-back-card,
.hero-photo,
.metric-card {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-stage-form-only {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-stage-form-only .round-badge {
    margin-right: 0;
  }
}

@media (max-width: 740px) {
  .hero-stage-form-only {
    gap: 14px;
  }

  .hero-stage-form-only .round-badge {
    width: 116px;
    height: 116px;
  }
}
