/* ============================================================
   GIMA · LANDING — Showroom Lead Magnet
   Cinematic editorial: solid black, oversized Bebas, orange accents
   ============================================================ */

@font-face { font-family: 'Bebas Neue'; src: url('fonts/BebasNeue-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Regular.ttf') format('truetype');  font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Medium.ttf') format('truetype');   font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter_18pt-Bold.ttf') format('truetype');     font-weight: 700; font-display: swap; }

:root {
  --orange: #F07D07;
  --orange-hover: #D86C00;
  --orange-soft: #FCE4CC;
  --black: #0D0D0D;
  --gray-900: #1A1A1A;
  --gray-850: #161616;
  --gray-800: #222;
  --gray-700: #2B2B2B;
  --gray-600: #4D4D4D;
  --gray-400: #999;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #fff;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1320px;
  --gutter: 32px;

  --ease: cubic-bezier(.2,0,0,1);
  --ease-out: cubic-bezier(0,0,.2,1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--orange); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================================
   TYPE
   ============================================================ */
.bebas { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .03em; line-height: .95; }
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .015em;
  font-size: clamp(64px, 9vw, 156px);
}
.h-xxl {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .02em;
  font-size: clamp(48px, 6.5vw, 104px);
}
.h-xl {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: .02em;
  font-size: clamp(40px, 4.6vw, 72px);
}
.h-l {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .02em;
  font-size: clamp(28px, 3vw, 44px);
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Eyebrow line decoration removed by design — keep the rule shape so any
   element opting back in (with .with-line) gets the original dash. */
.eyebrow::before { display: none; }
.eyebrow.with-line::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--orange);
  display: inline-block;
}
.lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
}
.lead.dark { color: var(--gray-600); }
.muted { color: rgba(255,255,255,.55); }
.muted-dark { color: var(--gray-600); }
.tabular { font-variant-numeric: tabular-nums; }

.accent { color: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--ease) 200ms, color var(--ease) 200ms, transform var(--ease) 200ms, border-color var(--ease) 200ms;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--ease) 240ms;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(13,13,13,.25);
}
.btn-ghost-dark:hover { border-color: var(--black); background: rgba(0,0,0,.04); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 22px 32px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--gray-700);
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.topbar .inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.topbar .inner .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--orange); }
.topbar .right { display: flex; gap: 18px; align-items: center; }
.topbar-contact {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 200ms var(--ease);
}
.topbar-contact svg { color: var(--orange); flex-shrink: 0; }
.topbar-sep {
  width: 1px; height: 12px;
  background: var(--gray-700);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-700);
  transition: padding var(--ease) 240ms;
}
.header .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.header .logo img { height: 34px; }
.header nav { display: flex; gap: 28px; }
.header nav a {
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--ease) 200ms;
}
.header nav a:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: stretch;
}
.hero .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
}
.hero .mark-watermark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 78%;
  max-width: 1100px;
  opacity: .035;
  pointer-events: none;
}
.hero .container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-left { display: flex; flex-direction: column; gap: 32px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.hero-eyebrow .dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(240,125,7,.6);
  animation: pulse-orange 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(240,125,7,.6); }
  70% { box-shadow: 0 0 0 10px rgba(240,125,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,125,7,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: .015em;
  /* Cap upper at 108px so "Con il tuo nome" fits one line in the left
     hero column at 1920+ instead of breaking awkwardly into 5 lines. */
  font-size: clamp(56px, 7.2vw, 108px);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  animation: rise 900ms var(--ease) backwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 80ms; }
.hero h1 .line:nth-child(2) span { animation-delay: 200ms; }
.hero h1 .line:nth-child(3) span { animation-delay: 320ms; }
@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero p.lead { animation: fadeUp 800ms var(--ease) 500ms backwards; }
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero .cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 800ms var(--ease) 620ms backwards;
}
.hero .micro {
  font-size: 12px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 800ms var(--ease) 720ms backwards;
}
.hero .micro .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }

.hero-stats {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-700);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeUp 800ms var(--ease) 800ms backwards;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: .03em;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* hero right — montage card stack */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.tile {
  position: relative;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 600ms var(--ease), border-color 400ms var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--orange); }
.tile-content {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.tile-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.tile-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 28px);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.tile-bg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(240,125,7,.18), transparent 60%),
    var(--gray-900);
}
.tile.t1 { grid-column: 1; grid-row: 1 / span 2; }
.tile.t2 { grid-column: 2; grid-row: 1; }
.tile.t3 { grid-column: 2; grid-row: 2; }

.tile-shape {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%; left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: .9;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.5));
  transition: transform 800ms var(--ease);
  will-change: transform;
}
.tile:hover .tile-shape { transform: translate3d(-50%, -50%, 0) scale(1.06); }

.tile-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  z-index: 3;
}
.tile-meta {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 3;
}

/* hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .bar {
  width: 1px; height: 32px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.scroll-cue .bar::after {
  content: ""; position: absolute; top: -32px; left: 0; right: 0;
  height: 32px; background: var(--orange);
  animation: scrollDot 1.8s infinite var(--ease);
}
@keyframes scrollDot {
  0% { top: -32px; }
  100% { top: 32px; }
}

/* ============================================================
   MARQUEE — partner activities
   ============================================================ */
.marquee {
  background: var(--black);
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
  overflow: hidden;
  padding: 0;
  position: relative;
  display: block;
}
.marquee-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--gray-700);
}
.marquee-label .dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(240,125,7,.6);
  animation: pulse-orange 1.8s infinite;
}
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(240,125,7,.6); }
  70% { box-shadow: 0 0 0 8px rgba(240,125,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,125,7,0); }
}
.marquee-viewport {
  overflow: hidden;
  position: relative;
}
.marquee-viewport::before,
.marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-viewport::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee-viewport::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
  padding: 22px 0;
  will-change: transform;
}
.m-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 0 36px;
  display: flex;
  align-items: center;
  transition: color 200ms var(--ease);
}
.m-logo:hover { color: var(--orange); }
/* Marquee separator: Lucide icon representing the activity that follows.
   Lucide replaces the <i data-lucide> with an <svg> that carries our class,
   so width/height/color must be set directly on .m-icon, not on a nested svg. */
.m-icon {
  width: 22px;
  height: 22px;
  margin: 0 18px;
  color: var(--orange);
  flex-shrink: 0;
  stroke-width: 1.6;
  align-self: center;
}
@media (max-width: 640px) {
  .marquee-label { padding: 12px 16px; font-size: 10px; letter-spacing: .18em; }
  .m-logo { font-size: 18px; padding: 0 18px; }
  .m-icon { width: 18px; height: 18px; margin: 0 12px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ADVANTAGES BAR — S2 (cards with visuals)
   ============================================================ */
.adv-bar {
  background: var(--white);
  color: var(--black);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}
.adv-head {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.adv-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: .02em;
  line-height: .9;
  text-transform: uppercase;
  max-width: 14ch;
}
.adv-title em { font-style: normal; color: var(--orange); }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.adv-cell {
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
  position: relative;
}
.adv-cell:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 24px 60px rgba(13,13,13,.08);
}
.adv-cell-feat { background: var(--black); color: var(--white); border-color: var(--black); }
.adv-cell-feat:hover { border-color: var(--orange); }

.adv-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: var(--gray-100);
  color: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.adv-cell-feat .adv-visual {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--orange);
  border-bottom-color: var(--gray-700);
}
.adv-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.adv-cell-feat .adv-visual::before {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
}
.adv-visual svg {
  width: 64%;
  height: 64%;
  position: relative;
  z-index: 1;
  color: var(--orange);
  transition: transform 600ms var(--ease);
}
.adv-cell:hover .adv-visual svg { transform: scale(1.08) rotate(-2deg); }
.adv-cell-feat .adv-visual svg { color: var(--orange); }

.adv-counter {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .85;
  letter-spacing: .015em;
  color: rgba(13,13,13,.12);
  z-index: 2;
}
.adv-cell-feat .adv-counter { color: rgba(255,255,255,.18); }
.adv-counter .plus {
  font-size: .55em;
  color: var(--orange);
  margin-left: 2px;
}

.adv-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.adv-body .num-badge {
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  align-items: center;
  gap: 10px;
}
.adv-body .num-badge::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--orange);
}
.adv-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: .98;
  color: inherit;
}
.adv-cell-feat .adv-body h3 { color: var(--white); }
.adv-body p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.5;
}
.adv-cell-feat .adv-body p { color: rgba(255,255,255,.75); }

.adv-checks {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-cell-feat .adv-checks { border-top-color: var(--gray-700); }
.adv-checks li {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.adv-cell-feat .adv-checks li { color: rgba(255,255,255,.9); }
.adv-checks li::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--orange);
  flex-shrink: 0;
  clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 25%, 80% 5%, 40% 65%);
}

.adv-cta {
  margin-top: 56px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--gray-200);
  gap: 32px; flex-wrap: wrap;
}
.adv-cta .label-text { color: var(--gray-600); font-size: 14px; max-width: 38ch; }

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

/* ============================================================
   PAS — S3 (sticky storytelling)
   ============================================================ */
.pas {
  background: var(--black);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.pas-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240,125,7,.08), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(240,125,7,.05), transparent 50%);
  pointer-events: none;
}
.pas .container { position: relative; }
.pas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.pas-left { position: sticky; top: 120px; }
.pas-left .eyebrow { color: var(--orange); margin-bottom: 24px; }
.pas-left h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pas-left h2 em { font-style: normal; color: var(--orange); }
.pas-right { padding-top: 8px; }
.pas-pitch p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 56ch;
}
.pas-pitch .quote {
  border-left: 2px solid var(--orange);
  padding: 4px 0 4px 28px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.pas-pitch .quote em {
  font-style: normal;
  color: var(--orange);
}

.pain-list {
  margin-top: 56px;
  display: grid;
  gap: 12px;
}
.pain-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gray-700);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
  position: relative;
  overflow: hidden;
}
.pain-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 400ms var(--ease);
}
.pain-item:hover {
  background: rgba(240,125,7,.06);
  border-color: rgba(240,125,7,.4);
  transform: translateX(4px);
}
.pain-item:hover::before { transform: scaleY(1); }
.pain-ico {
  width: 44px; height: 44px;
  border: 1px solid var(--gray-700);
  display: grid; place-items: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease), opacity 300ms var(--ease);
}
.pain-item:hover .pain-ico {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.pain-ico svg { width: 22px; height: 22px; }
.pain-copy { display: flex; flex-direction: column; gap: 4px; }
.pain-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.pain-sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.pain-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(240,125,7,.4);
  padding: 5px 10px;
  white-space: nowrap;
}

/* ============================================================
   STEPS — S4 (sticky / bold numbers)
   ============================================================ */
.steps {
  background: var(--white);
  color: var(--black);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.steps-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.steps-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.steps-head h2 em { font-style: normal; color: var(--orange); }
.steps-head .lead { color: var(--gray-600); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.step-cell {
  padding: 56px 40px;
  border-right: 1px solid var(--gray-200);
  position: relative;
  transition: background 400ms var(--ease);
  display: flex; flex-direction: column; gap: 24px;
}
.step-cell:last-child { border-right: 0; }
.step-cell:not(:first-child) { padding-left: 40px; }
.step-cell .step-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 9vw, 140px);
  line-height: .85;
  color: var(--gray-200);
  transition: color 600ms var(--ease);
  letter-spacing: 0;
}
.step-cell .step-num em {
  font-style: normal;
  color: var(--orange);
}
.step-cell:hover { background: #FAFAFA; }
.step-cell:hover .step-num { color: var(--orange); }
.step-cell h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.step-cell p {
  color: var(--gray-600);
  font-size: 15px;
  max-width: 38ch;
  line-height: 1.5;
}
.step-cell .step-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}

.steps-foot {
  margin-top: 56px;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.steps-foot .micro {
  display: flex; gap: 18px; align-items: center;
  color: var(--gray-600); font-size: 13px;
}
.steps-foot .micro .check {
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============================================================
   TAKEAWAY — S5 (orange section)
   ============================================================ */
.takeaway {
  background: var(--orange);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.takeaway::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.takeaway .mark-wm {
  position: absolute;
  right: -10%; top: 50%;
  width: 60%; opacity: .07;
  transform: translateY(-50%);
}
.takeaway .container { position: relative; }
.takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.takeaway-left .eyebrow { color: rgba(255,255,255,.85); }
.takeaway-left .eyebrow::before { background: rgba(255,255,255,.85); }
.company .eyebrow::before { background: rgba(255,255,255,.85); }
.takeaway h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 24px;
}
.takeaway-left p {
  margin-top: 28px;
  font-size: 17px;
  color: rgba(255,255,255,.9);
  max-width: 40ch;
}
.takeaway-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.25);
}
.take-item {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
/* Anchor wrapper — clicking anywhere in the card lands on #form. */
.take-item-link {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  color: inherit;
  text-decoration: none;
  transition: transform 400ms var(--ease);
  will-change: transform;
}
.take-item-link:hover { transform: translateX(12px); }
.take-visual {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  color: var(--white);
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), opacity 400ms var(--ease);
  flex-shrink: 0;
}
.take-item:hover .take-visual {
  background: var(--orange);
  color: var(--white);
  border-color: var(--white);
  transform: rotate(-3deg);
}
.take-visual svg { width: 56%; height: 56%; }
.take-item .copy h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.take-item .copy p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.take-item .arrow-lg {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center;
  color: var(--white);
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), opacity 400ms var(--ease);
}
.take-item:hover .arrow-lg {
  background: var(--white); color: var(--orange); border-color: var(--white);
  transform: rotate(-45deg);
}

.takeaway .btn-primary {
  background: var(--white);
  color: var(--orange);
}
.takeaway .btn-primary:hover { background: var(--black); color: var(--white); }
.takeaway .takeaway-cta {
  margin-top: 56px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.takeaway .takeaway-cta small { color: rgba(255,255,255,.85); font-size: 13px; }

/* ============================================================
   AUDIENCE — S6 chips
   ============================================================ */
.audience {
  background: var(--black);
  color: var(--white);
  padding: 96px 0;
  position: relative;
}
.aud-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.aud-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.aud-head h2 em { font-style: normal; color: var(--orange); }
.aud-carousel { position: relative; }
.aud-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.aud-track::-webkit-scrollbar { display: none; }
.aud-card {
  position: relative;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  padding: 32px 28px 64px;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease);
  cursor: pointer;
  overflow: hidden;
  min-height: 260px;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
}
.aud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,125,7,.12), transparent 70%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.aud-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.aud-card:hover::before { opacity: 1; }
.aud-ico {
  width: 56px; height: 56px;
  border: 1px solid var(--gray-700);
  display: grid; place-items: center;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative; z-index: 2;
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), opacity 400ms var(--ease);
}
.aud-card:hover .aud-ico {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  transform: rotate(-4deg);
}
.aud-ico svg { width: 28px; height: 28px; }
.aud-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative; z-index: 2;
}
.aud-card p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.45;
  position: relative; z-index: 2;
}
.aud-card .arrow-corner {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid var(--gray-700);
  display: grid; place-items: center;
  color: var(--gray-400);
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), opacity 400ms var(--ease);
  z-index: 2;
}
.aud-card:hover .arrow-corner {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.aud-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}
.aud-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--gray-700);
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), opacity 200ms var(--ease);
}
.aud-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }
.aud-dots { display: flex; gap: 8px; }
.aud-dot {
  width: 28px; height: 3px;
  background: var(--gray-700);
  cursor: pointer;
  transition: background 200ms var(--ease);
}
.aud-dot.active { background: var(--orange); }
@media (max-width: 1024px) {
  .aud-track { grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 640px) {
  .aud-track { grid-auto-columns: 85%; }
}

.not-for {
  margin-top: 32px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-left: 3px solid var(--orange);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.not-for h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
}
.not-for p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   WALL OF FAME — S7
   ============================================================ */
.wall {
  background: var(--gray-100);
  color: var(--black);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.wall-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.wall-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.wall-head h2 em { font-style: normal; color: var(--orange); }
.wall-head .lead { color: var(--gray-600); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), opacity 400ms var(--ease);
  position: relative;
  overflow: hidden;
}
.test-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.test-card .visual {
  aspect-ratio: 4/3;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.test-card .visual .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.3);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.test-card .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,.6));
}
.test-card .visual .vbadge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 5px 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.test-card .visual .vname {
  position: absolute;
  bottom: 16px; left: 20px; right: 20px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
}
.test-card .body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.test-card .quote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 500;
}
.test-card .quote::before { display: none; }
.test-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px; letter-spacing: .04em;
  color: var(--gray-600);
}
.test-card .meta .role { font-weight: 600; }
.test-card .meta .place { color: var(--gray-400); }

.wall-stat {
  margin-top: 64px;
  background: var(--black);
  color: var(--white);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wall-stat .big {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 128px);
  color: var(--orange);
  line-height: .85;
  letter-spacing: .02em;
}
.wall-stat .desc {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  max-width: 36ch;
}

/* ============================================================
   COMPANY — S8 (orange band, numbers)
   ============================================================ */
.company {
  background: var(--orange);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.company .mark-wm {
  position: absolute;
  left: -8%; bottom: -10%;
  width: 50%; opacity: .07;
  transform: rotate(0deg);
}
.company .container { position: relative; }
/* 2-col layout: company copy + stats on the left, MasterChef card on right */
.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}
.company-left { display: flex; flex-direction: column; gap: 28px; }
.company-left .eyebrow { color: rgba(255,255,255,.85); }
.company-left .eyebrow::before { background: rgba(255,255,255,.85); }
.company h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.company-left .lead { color: rgba(255,255,255,.9); }

/* Stats — 2x2 inside the narrower left column */
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
}
.num-cell {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.3);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 400ms var(--ease);
}
.num-cell:nth-child(2n) { border-right: 0; }
.num-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.3); }
.num-cell:hover { background: rgba(255,255,255,.06); }
.num-cell .big {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: .85;
  letter-spacing: .015em;
  color: var(--white);
}
.num-cell .lbl {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}

/* MasterChef showcase card — dark slab with orange glow, sits across
   from the company copy. Communicates the brand crossover that the
   client highlighted in the meeting (Gima fornitore di MasterChef 12). */
.company-right { display: flex; }
.mc-card {
  background: linear-gradient(160deg, #1a1a1a 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 30px 60px rgba(0,0,0,.25);
  width: 100%;
}
.mc-card::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,125,7,.28), transparent 70%);
  top: 35%; right: -80px;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
/* MC photo: stacked-image CSS-only slideshow.
   6 photos cross-fade through a 30s loop (5s each, 1s fade overlap).
   First image starts visible (opacity 1) so the card never paints empty. */
.mc-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050505;
}
.mc-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: mcSlideshow 30s linear infinite;
}
.mc-photo img:nth-child(1) { animation-delay:   0s; opacity: 1; }
.mc-photo img:nth-child(2) { animation-delay:   5s; }
.mc-photo img:nth-child(3) { animation-delay:  10s; }
.mc-photo img:nth-child(4) { animation-delay:  15s; }
.mc-photo img:nth-child(5) { animation-delay:  20s; }
.mc-photo img:nth-child(6) { animation-delay:  25s; }
@keyframes mcSlideshow {
  0%, 14%   { opacity: 1; }   /* fully visible for ~4.2s */
  17%, 97%  { opacity: 0; }   /* hidden for the rest of the cycle */
  100%      { opacity: 1; }   /* re-enter for the next loop */
}
/* Pause on hover so the user can study a frame */
.mc-card:hover .mc-photo img { animation-play-state: paused; }
.mc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Progress dots — 6 indicators that fill in sequence with the slideshow */
.mc-photo-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.mc-photo-dots span {
  width: 18px; height: 3px;
  background: rgba(255,255,255,.28);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.mc-photo-dots span::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  animation: mcDot 30s linear infinite;
}
.mc-photo-dots span:nth-child(1)::after { animation-delay:   0s; }
.mc-photo-dots span:nth-child(2)::after { animation-delay:   5s; }
.mc-photo-dots span:nth-child(3)::after { animation-delay:  10s; }
.mc-photo-dots span:nth-child(4)::after { animation-delay:  15s; }
.mc-photo-dots span:nth-child(5)::after { animation-delay:  20s; }
.mc-photo-dots span:nth-child(6)::after { animation-delay:  25s; }
@keyframes mcDot {
  0%       { transform: scaleX(0); }
  16.66%   { transform: scaleX(1); }
  17%, 100%{ transform: scaleX(0); }
}
.mc-card:hover .mc-photo-dots span::after { animation-play-state: paused; }
.mc-body {
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  z-index: 1;
}
.mc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  padding: 8px 14px;
  border: 1px solid rgba(240,125,7,.4);
  border-radius: 999px;
}
.mc-tag svg { width: 14px; height: 14px; stroke-width: 2; }
.mc-copy {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}
.mc-copy strong {
  color: #fff;
  font-weight: 600;
}
.mc-products {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mc-products li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.mc-products svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  stroke-width: 1.8;
  margin-top: 2px;
}

/* Mobile: stack cols vertically; numbers grid keeps 2x2 */
@media (max-width: 1024px) {
  .company-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .mc-body { padding: 24px 22px 28px; }
  .mc-photo { aspect-ratio: 4 / 3; }  /* less tall on stacked mobile layout */
}

/* ============================================================
   FAQ — S9
   ============================================================ */
.faq {
  background: var(--white);
  color: var(--black);
  padding: 96px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 24px;
}
.faq-left h2 em { font-style: normal; color: var(--orange); }
.faq-left p { margin-top: 24px; color: var(--gray-600); max-width: 36ch; }
.faq-list { border-top: 1px solid var(--gray-200); }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  cursor: pointer;
  transition: padding 300ms var(--ease);
}
.faq-item:hover { padding-left: 8px; }
.faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
}
.faq-q .qn {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  letter-spacing: .03em;
  margin-top: 2px;
}
.faq-q .qt {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--black);
}
.faq-q .toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-200);
  display: grid; place-items: center;
  color: var(--black);
  flex-shrink: 0;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease), opacity 300ms var(--ease);
}
.faq-item.open .toggle { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 450ms var(--ease), padding-top 300ms var(--ease), opacity 300ms var(--ease);
  padding-left: 44px;
  opacity: 0;
}
.faq-a > .faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-top: 16px;
  opacity: 1;
}
.faq-a p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}
.faq-a p strong { color: var(--black); font-weight: 700; }

/* ============================================================
   FORM — S10 (dark)
   ============================================================ */
.form-section {
  background: #0a0a0a;
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  /* Header is sticky (~72px). When CTAs scroll to #form, leave room so the
     section heading isn't hidden under the header bar. */
  scroll-margin-top: 80px;
}
.form-section .mark-wm {
  position: absolute;
  right: -15%; top: 0;
  width: 70%; opacity: .025;
  pointer-events: none;
}
.form-section .container { position: relative; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.form-left .eyebrow { color: var(--orange); }
.form-left h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 24px;
}
.form-left h2 em { font-style: normal; color: var(--orange); }
.form-left .lead { color: rgba(255,255,255,.75); margin-top: 28px; max-width: 40ch; }

.incentive {
  margin-top: 48px;
  scroll-margin-top: 80px;  /* clear the sticky header on #form anchored scrolls */
  background: linear-gradient(135deg, rgba(240,125,7,.18), rgba(240,125,7,.04));
  border: 1px solid rgba(240,125,7,.4);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.incentive::before {
  content: "GRATIS";
  position: absolute;
  right: 16px; top: 16px;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em;
  background: #0D0D0D;
  color: var(--white);
  padding: 5px 12px;
  transform: rotate(0deg);
}
.incentive .ico-gift {
  width: 40px; height: 40px;
  border: 1px solid var(--orange);
  display: grid; place-items: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.incentive h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.incentive .value {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--orange);
  letter-spacing: .04em;
  margin: 8px 0 12px;
}
.incentive p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.5;
}

.form-card {
  background: #131313;
  border: 1px solid var(--gray-700);
  padding: 40px;
  position: relative;
}
.form-card .pill {
  display: inline-flex;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(240,125,7,.12);
  border: 1px solid rgba(240,125,7,.4);
  padding: 6px 12px;
  margin-bottom: 28px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}
.form-card .sub {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-fields {
  display: grid;
  gap: 16px;
}
.field { position: relative; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,125,7,.18);
  background: #0a0a0a;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23F07D07' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input::placeholder { color: rgba(255,255,255,.3); }

/* Inline (facoltativo) hint next to a field label — replaces the old
   hardcoded inline style. Light scheme override in light-overrides.css. */
.field-optional {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .02em;
  font-weight: 400;
  text-transform: lowercase;
  margin-left: 4px;
}

/* GDPR marketing consent — checkbox row. Brief §3.1: Consenso marketing.
   Pre-checked by default; when unchecked submit button is disabled.
   The native <input> is hidden (visually); the .consent-box sibling
   renders the visual state via the adjacent-sibling selector. */
.field-consent {
  margin-top: 2px;
}
.consent-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  padding: 8px 11px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  transition: background 150ms ease, border-color 150ms ease;
}
.consent-row:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }

/* .consent-check wraps the hidden input + visual box so they share a
   positioning context (sibling selector requires them at the same level). */
.consent-check {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.consent-check input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.consent-box {
  display: block;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  position: relative;
  transition: background 120ms ease, border-color 120ms ease;
  pointer-events: none;
}
.consent-check input[type="checkbox"]:checked ~ .consent-box {
  background: var(--orange);
  border-color: var(--orange);
}
.consent-check input[type="checkbox"]:checked ~ .consent-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent-check input[type="checkbox"]:focus-visible ~ .consent-box {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.consent-text {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255,255,255,.6);
  letter-spacing: .005em;
}
.consent-text strong { color: rgba(255,255,255,.85); font-weight: 600; }
.consent-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* LM2 conditional fields — shown when user enters via Kit Estate CTA. */
.lm2-extra[hidden] { display: none !important; }
.lm2-extra {
  display: contents;
}

/* ============================================================
   CUSTOM DATEPICKER — no year picker, calendar grid, validated.
   Replaces native <input type="date">. Hidden input carries the
   form value. JS in index.html drives state.
   Trigger MUST match .field input / .field select dimensions
   (padding 14px 16px, font-size 15px) so adjacent inputs align.
   ============================================================ */
/* Parent gets z-index so the whole datepicker subtree paints above
   sibling .field elements (textarea + consent row below). When the
   popover is hidden this is invisible — only matters when open. */
.datepicker { position: relative; z-index: 50; }
.datepicker.is-open { z-index: 200; }
.datepicker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* Mirror .field input padding/font-size for height parity */
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: rgba(255,255,255,.3);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.datepicker-trigger:hover { border-color: rgba(255,255,255,.32); }
.datepicker-trigger:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,125,7,.18);
  background: #0a0a0a;
}
.datepicker-trigger.has-value { color: var(--white); }
.datepicker-icon { width: 16px; height: 16px; stroke-width: 1.8; flex-shrink: 0; color: var(--orange); }

.datepicker-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  /* High z-index + isolation on parent prevents bleed-through against
     stacking contexts created by sibling .incentive / .form-incentive */
  z-index: 100;
  width: 320px;
  max-width: calc(100vw - 32px);
  /* Fully opaque — no rgba/transparency. Previously the pop appeared
     translucent because of CSS stacking with the orange callout. */
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 12px 30px rgba(0,0,0,.35);
  padding: 16px;
}
.datepicker-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp-btn {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}
.dp-btn:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); }
.dp-btn:disabled { opacity: .25; cursor: not-allowed; }
.dp-month {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.datepicker-weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 4px 0;
}
.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-cell {
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.dp-cell.dp-blank { visibility: hidden; cursor: default; }
.dp-day:hover { background: rgba(240,125,7,.12); border-color: rgba(240,125,7,.4); color: var(--orange); }
.dp-disabled {
  color: rgba(255,255,255,.18);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.1);
}
.dp-disabled:hover { background: transparent; border-color: transparent; color: rgba(255,255,255,.18); }
.dp-selected {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
}
.dp-selected:hover { background: var(--orange); color: var(--white); }
.datepicker-foot {
  margin: 12px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .01em;
  text-align: center;
}

/* Form submit disabled state (consent off → submit disabled) */
.form-submit:disabled {
  opacity: .35;
  cursor: not-allowed;
  background: var(--gray-700, #4a4a4a) !important;
  color: rgba(255,255,255,.5) !important;
}
.form-submit:disabled:hover { background: var(--gray-700, #4a4a4a) !important; }

.form-incentive {
  margin: 28px 0;
  background: rgba(240,125,7,.08);
  border: 1px dashed rgba(240,125,7,.5);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
/* wow.css applies `.form-card > * { position: relative; z-index: 1; }` to
   ALL direct form-card children, which traps the datepicker popover's
   z-index (set inside .form-fields stacking context) below the orange
   .form-incentive callout sibling. Demote .form-incentive to z:0 so the
   .form-fields stacking context wins when the popover is open. */
.form-card > .form-incentive { z-index: 0; }
.form-incentive .ico {
  width: 36px; height: 36px;
  background: var(--orange);
  display: grid; place-items: center;
  color: var(--white);
}
.form-incentive .ico svg { width: 18px; height: 18px; }
.form-incentive .text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .03em;
  color: var(--white);
}
.form-incentive .text span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.form-submit {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  padding: 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 200ms var(--ease);
}
.form-submit:hover { background: var(--orange-hover); }
.form-fineprint {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.form-fineprint a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

/* Inline status message under the submit button (loading / success / error) */
.form-status { margin-top: 14px; font-size: 13px; line-height: 1.5; min-height: 1em; color: rgba(255,255,255,.7); }
.form-status:empty { display: none; }
.form-status[data-kind="loading"] { color: rgba(255,255,255,.7); }
.form-status[data-kind="success"] { color: #2ECC71; }
.form-status[data-kind="error"] { color: #FF6B6B; }
.form-submit:disabled { opacity: .55; cursor: progress; }

/* ============================================================
   LM2 — KIT ESTATE PRO
   ============================================================ */
.lm2 {
  background: var(--gray-850);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  border-top: 1px solid var(--gray-700);
  overflow: hidden;
}
.lm2 .container { position: relative; }
.lm2-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.lm2 .badge-urg {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(240,125,7,.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 8px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.lm2 .badge-urg .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseO 1.5s infinite;
}
@keyframes pulseO {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.lm2 h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.lm2 h2 em { font-style: normal; color: var(--orange); }
.lm2 .lm2-body {
  margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 50ch;
}
.lm2-stat {
  text-align: center;
  border-left: 1px solid var(--gray-700);
  padding-left: 32px;
}
.lm2-stat .num {
  font-family: var(--font-display);
  font-size: 88px;
  color: var(--orange);
  line-height: .85;
  letter-spacing: .02em;
}
.lm2-stat .lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
  border-top: 1px solid var(--gray-700);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color 200ms var(--ease);
}
.footer ul a:hover { color: var(--orange); }
.footer .brand img { height: 36px; margin-bottom: 18px; }
.footer .brand p { font-size: 14px; line-height: 1.55; max-width: 36ch; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-700);
  display: grid; place-items: center;
  color: var(--gray-400);
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease), border-color 250ms var(--ease), opacity 250ms var(--ease);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer .muted { color: var(--gray-500); }
.footer ul li { line-height: 1.4; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-700);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid var(--gray-700);
  padding: 12px 16px;
  z-index: 40;
  display: none;
  transform: translateY(100%);
  transition: transform 400ms var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; padding: 14px; }

/* ============================================================
   REVEAL ANIMS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; padding-bottom: 40px; }
  .hero-right { min-height: 440px; }
  .pas-grid, .form-grid, .faq-grid, .takeaway-grid { grid-template-columns: 1fr; gap: 48px; }
  .pas-left, .faq-left { position: static; }
  .steps-head, .aud-head, .wall-head, .company .head { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-cell { padding: 40px 24px !important; border-right: 0; border-bottom: 1px solid var(--gray-200); }
  /* Hide scroll-cue when hero stacks vertically — it crowds the photo
     tiles. Cue is a desktop affordance only. */
  .scroll-cue { display: none; }
  .step-cell:last-child { border-bottom: 0; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell { padding: 40px 24px !important; border-bottom: 1px solid rgba(255,255,255,.3); }
  .num-cell:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lm2-grid { grid-template-columns: 1fr; gap: 32px; }
  .lm2-stat { border-left: 0; border-top: 1px solid var(--gray-700); padding: 24px 0 0; text-align: left; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-cell { padding: 32px 0 !important; border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .adv-cell:last-child { border-bottom: 0; }
  .wall-stat { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .not-for { grid-template-columns: 1fr; gap: 16px; }
  .header nav { display: none; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .topbar .inner .pulse { font-size: 10px; }
  .topbar-contact { font-size: 11px; }
  .topbar-contact:not(:first-child),
  .topbar-sep { display: none; }
  .hero { min-height: auto; }
  .hero-right { min-height: 360px; grid-template-rows: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { grid-column: 1 / -1; }
  .pas, .steps, .takeaway, .audience, .wall, .company, .faq, .form-section, .lm2 { padding: 40px 0; }
  .form-card { padding: 28px 24px; }
  .field.row2 { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .marquee-item { font-size: 16px; gap: 32px; }
  .marquee-track { gap: 32px; }
}

/* ============================================================
   FLUIDITY / A11Y — global motion quality fixes
   ============================================================ */

/* GPU-promote frequently animated elements; clear when idle. */
.hero-right .tile,
.aud-card,
.adv-cell,
.pain-item,
.sticky-cta,
.faq-a,
.reveal,
.reveal-stagger > * { will-change: auto; }

.hero-right .tile:hover,
.aud-card:hover,
.adv-cell:hover { will-change: transform; }

/* Smooth font rendering + tap behavior */
* {
  -webkit-tap-highlight-color: transparent;
}
html { -webkit-text-size-adjust: 100%; }

/* Prevent iOS double-tap zoom on buttons / form-submit */
button, .btn, .aud-btn, .form-submit, .topbar-contact, .footer-social a, .faq-q {
  touch-action: manipulation;
}

/* Smooth scrolling but never on prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Honor reduced-motion: kill non-essential animations / long transitions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
}

/* Better tap target on mobile — keep CTAs ≥44px */
@media (max-width: 640px) {
  .btn { min-height: 44px; padding: 12px 18px; }
  .aud-btn { width: 44px; height: 44px; }
  .topbar { padding: 0; }
  .topbar .inner { padding: 8px var(--gutter); }
  /* Sticky CTA must clear iOS bottom safe area */
  .sticky-cta { padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  /* Smaller heroes don't crowd */
  .hero h1 { line-height: .92; }
  /* Audience carousel — full focus on one card */
  .aud-card { min-height: 240px; }

  /* Hero tiles — at <=640 the 2-col grid with t1 spanning 2 rows
     squeezes each photo to ~160px wide, swallowing the badge / tag
     overlay. Stack all three tiles in a single column with a defined
     aspect-ratio so the photos read at full screen width. */
  .hero-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 12px;
  }
  .hero-right .tile.t1,
  .hero-right .tile.t2,
  .hero-right .tile.t3 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  /* Pain card — at this width the icon | title+sub | status-badge grid
     squeezes the title row. Drop the icon column to a smaller chip and
     stack the status badge under the copy so it never fights for width
     with the title. */
  .pain-item {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "ico copy"
      "ico status";
    row-gap: 10px;
    column-gap: 16px;
    padding: 18px 20px;
  }
  .pain-item .pain-ico { grid-area: ico; }
  .pain-item .pain-copy { grid-area: copy; }
  .pain-item > :last-child { grid-area: status; justify-self: start; }

  /* Steps foot — three checks were forced into one row, wrapping the
     middle label across two lines. Allow them to flow naturally and
     shrink the gap. */
  .steps-foot { gap: 16px; }
  .steps-foot .micro {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  /* Topbar contact — stop the phone number wrapping by giving the chip
     a tighter font + margin on small screens. */
  .topbar-contact { font-size: 11px; gap: 6px; white-space: nowrap; }

  /* GRATIS badge inside the .incentive card — bigger / more readable.
     The full-screen orange surface deserves a bolder badge. */
  .incentive::before {
    font-size: 13px;
    padding: 7px 14px;
    letter-spacing: .16em;
  }

  /* Inline incentive strip inside form-card — bump headline so the
     "+ Impianto stampa in omaggio (50€)" line is comfortable to read on
     a 375-wide screen. */
  .form-incentive .text strong { font-size: 15px; line-height: 1.25; }
  .form-incentive { gap: 14px; padding: 14px 16px; }

  /* Step cards: scroll-driven active state — the card whose center is
     near the viewport center pops forward (matches desktop hover). */
  .step-cell.is-active {
    background: #fff;
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(13,13,13,.08), 0 8px 20px rgba(240,125,7,.10);
    transition: transform 500ms var(--ease), background 400ms var(--ease), box-shadow 500ms var(--ease);
  }
  .step-cell.is-active .step-num { color: var(--orange); }
}

/* ============================================================
   PHOTO REPLACEMENTS — hero tiles + wall testimonials
   Real client packaging photos replace SVG silhouette / gradient
   placeholders. Photos fill the canvas; a bottom-up dark gradient
   keeps the badge / name / quote text legible on top.
   ============================================================ */
.tile-bg.has-photo {
  background: var(--gray-900);
}
.tile-bg.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.18) 0%, transparent 35%, rgba(13,13,13,.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 800ms var(--ease);
  will-change: transform;
}
.tile:hover .tile-img { transform: scale(1.04); }

.test-card .visual.has-photo { background: var(--gray-900); }
.test-card .v-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 800ms var(--ease);
}
.test-card:hover .v-img { transform: scale(1.04); }

/* Header / footer logo — PNGs have been auto-cropped to remove the
   transparent padding so the canvas matches the logo content. */
.header .logo img { height: 32px; width: auto; display: block; }
.footer .brand img { height: 80px; width: auto; display: block; }

/* ============================================================
   SHOWROOM BAND — full-bleed photo strip showing the physical
   showroom at Nardò. Reused in steps + company sections so the
   landing always shows the place, not just client packaging.
   ============================================================ */
.showroom-band {
  position: relative;
  margin: 56px 0;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--gray-900);
}
.showroom-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  transition: transform 1200ms var(--ease);
  will-change: transform;
}
.showroom-band:hover img { transform: scale(1.03); }
.showroom-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.05) 0%, transparent 30%, rgba(13,13,13,.55) 100%);
  pointer-events: none;
}
.showroom-band figcaption {
  position: absolute;
  left: 24px; bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* "Dark" variant: orange company band → desaturate + warm tone so it
   doesn't fight the orange section background. */
.showroom-band--dark img {
  filter: saturate(.7) brightness(.85);
  object-position: center 15%;
}
.showroom-band--dark::after {
  background: linear-gradient(180deg, rgba(13,13,13,.18) 0%, rgba(13,13,13,.05) 50%, rgba(13,13,13,.45) 100%);
}
@media (max-width: 640px) {
  .showroom-band { aspect-ratio: 16/10; margin: 40px 0; }
  .showroom-band figcaption { left: 16px; bottom: 14px; font-size: 10px; }
}

/* LM2 — showroom photo as a transparent background layer (matches the
   adv3d treatment so the place glimpses through behind the urgency CTA). */
.lm2-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/showroom/GP-270326-4033.jpg');
  background-size: cover;
  background-position: center 50%;
  opacity: .14;
  filter: saturate(.35) contrast(1.05) brightness(.9);
  z-index: 0;
  pointer-events: none;
}
.lm2-bg-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, #0a0a0a 80%);
}
