/* =========================================================
   STRATEGIC PROFITS — Landing Page
   Sistema di design derivato dall'Area Membri SP
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === BRAND PRIMARIO === */
  --purple: #6B46C1;
  --purple-2: #7C5DD0;
  --purple-bright: #8B5CF6;
  --purple-soft: rgba(139,92,246,0.18);
  --purple-bg: rgba(139,92,246,0.08);

  /* === BRAND SECONDARIO === */
  --sp-green: #8EC540;
  --sp-green-2: #A8D456;
  --sp-green-dark: #6FA02A;
  --sp-green-soft: rgba(142,197,64,0.20);
  --sp-green-bg: rgba(142,197,64,0.08);

  /* === FUNZIONALI === */
  --red: #EF4444;
  --orange: #F59E0B;
  --blue: #3B82F6;

  /* === DENSITÀ TIPOGRAFICA (compatta default, allineata al prototipo) === */
  --fs-base: 15px;
  --fs-body: 1rem;
  --fs-lead: 1.1rem;
  --fs-h6: 1rem;
  --fs-h5: 1.125rem;
  --fs-h4: 1.375rem;
  --fs-h3: 1.875rem;
  --fs-h2: 2.5rem;
  --fs-h1: 3.5rem;
  --fs-mega: 6rem;

  --space-section: clamp(64px, 9vw, 128px);
  --space-block: clamp(32px, 5vw, 64px);
  --gap-card: 24px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1480px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.32);

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

/* === DENSITÀ COMODA === */
:root[data-density="comfy"] {
  --fs-base: 16px;
  --fs-h1: 4rem;
  --fs-h2: 2.875rem;
  --fs-h3: 2.125rem;
  --fs-h4: 1.5rem;
  --space-section: clamp(96px, 12vw, 168px);
  --space-block: clamp(48px, 7vw, 88px);
}

/* === TEMA SCURO (default) === */
:root[data-theme="dark"], :root:not([data-theme]) {
  --bg: #100d15;
  --bg-2: #16131d;
  --bg-3: #1d132e;
  --panel: #1a1422;
  --panel-2: #211a2c;
  --panel-3: #251a39;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --border-soft: rgba(255,255,255,0.04);
  --text: #FFFFFF;
  --text-2: #D4CFE0;
  --text-3: #8A85A0;
  --text-mute: #6b6678;
  --hero-glow-1: rgba(139,92,246,0.35);
  --hero-glow-2: rgba(142,197,64,0.18);
  --grid-line: rgba(255,255,255,0.04);
  --logo-bar-bg: rgba(255,255,255,0.04);
  --quote-mark: rgba(139,92,246,0.18);
  color-scheme: dark;
}

/* === TEMA CHIARO === */
:root[data-theme="light"] {
  --bg: #f6f4f9;
  --bg-2: #ffffff;
  --bg-3: #efeaf5;
  --panel: #ffffff;
  --panel-2: #faf8fc;
  --panel-3: #f2edf7;
  --border: rgba(20,16,30,0.10);
  --border-strong: rgba(20,16,30,0.20);
  --border-soft: rgba(20,16,30,0.05);
  --text: #15111c;
  --text-2: #4a4458;
  --text-3: #7a748a;
  --text-mute: #9c97a8;
  --hero-glow-1: rgba(139,92,246,0.18);
  --hero-glow-2: rgba(142,197,64,0.12);
  --grid-line: rgba(20,16,30,0.04);
  --logo-bar-bg: rgba(20,16,30,0.03);
  --quote-mark: rgba(139,92,246,0.12);
  color-scheme: light;
}

/* === ACCENT TOGGLE ===
   --acc è il colore "principale" usato per CTA, link, glow */
:root[data-accent="purple"], :root:not([data-accent]) {
  --acc: var(--purple-bright);
  --acc-2: var(--purple);
  --acc-soft: var(--purple-soft);
  --acc-bg: var(--purple-bg);
  --acc-contrast: #ffffff;
  --acc-alt: var(--sp-green);
  --acc-alt-soft: var(--sp-green-soft);
}
:root[data-accent="green"] {
  --acc: var(--sp-green);
  --acc-2: var(--sp-green-dark);
  --acc-soft: var(--sp-green-soft);
  --acc-bg: var(--sp-green-bg);
  --acc-contrast: #0e1f02;
  --acc-alt: var(--purple-bright);
  --acc-alt-soft: var(--purple-soft);
}
:root[data-accent="both"] {
  --acc: var(--purple-bright);
  --acc-2: var(--purple);
  --acc-soft: var(--purple-soft);
  --acc-bg: var(--purple-bg);
  --acc-contrast: #ffffff;
  --acc-alt: var(--sp-green);
  --acc-alt-soft: var(--sp-green-soft);
}

/* === BASE === */
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { min-height: 100vh; }
@media (max-width: 768px) { body { padding-bottom: 80px; } }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--acc); color: var(--acc-contrast); }

/* Heading vocab */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: 1.08; }
h3 { font-size: var(--fs-h3); line-height: 1.1; }
h4 { font-size: var(--fs-h4); line-height: 1.2; }

p { text-wrap: pretty; }
.lead { font-size: var(--fs-lead); color: var(--text-2); line-height: 1.6; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; position: relative; }
.section-compact { padding: var(--space-block) 0; position: relative; }
.section-divider { border-top: 1px solid var(--border-soft); }

/* === TOP NAV === */
.topbar {
  position: sticky; top: 0; z-index: 80;
  background: rgba(22, 20, 26, 0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
:root[data-theme="light"] .topbar { background: rgba(255,255,255,0.78); }
.topbar-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

/* SP Logo — clone dal prototipo */
.sp-logo {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.sp-logo-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.sp-logo-icon svg { width: 100%; height: 100%; display: block; }
.sp-logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
  letter-spacing: -0.005em;
  font-weight: 700;
}
.sp-logo-text .top { font-size: 13px; color: var(--text); }
.sp-logo-text .bot { font-size: 13px; color: var(--purple-bright); }
.sp-logo-beta {
  font-size: 9px; font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--sp-green-soft);
  color: var(--sp-green);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.top-actions { display: flex; align-items: center; gap: 4px; }
.top-link {
  font-size: 13px; color: var(--text-2);
  padding: 8px 12px; border-radius: 8px;
  transition: color .18s var(--ease), background .18s var(--ease);
  font-weight: 500;
}
.top-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
:root[data-theme="light"] .top-link:hover { background: rgba(0,0,0,0.04); }
.top-actions .btn { margin-left: 8px; padding: 10px 18px; font-size: 13px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform .15s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-lg {
  padding: 18px 32px; font-size: 1.05rem; border-radius: 14px;
}
.btn-xl {
  padding: 22px 40px; font-size: 1.15rem; border-radius: 16px; font-weight: 700;
}
.btn-primary {
  background: var(--acc); color: var(--acc-contrast);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 32px -8px var(--acc-soft);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 20px 40px -10px var(--acc-soft);
  background: var(--acc-2);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--panel-2); border-color: var(--acc); }

.btn-green {
  background: var(--sp-green); color: #0e1f02;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 32px -8px var(--sp-green-soft);
}
.btn-green:hover { transform: translateY(-2px); background: var(--sp-green-2); }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
}

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.cta-row.center { justify-content: center; }
.cta-meta { font-size: 0.85rem; color: var(--text-3); }

/* === PILL / KICKER === */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--acc-bg);
  color: var(--acc);
  border: 1px solid var(--acc-soft);
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 12px var(--acc);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* === HERO === */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow-1) 0%, transparent 65%);
  top: -10%; left: 50%; transform: translateX(-50%);
  filter: blur(40px);
}
.hero-glow-2 {
  position: absolute; pointer-events: none;
  width: 40vw; height: 40vw; max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow-2) 0%, transparent 65%);
  bottom: -20%; right: -10%;
  filter: blur(40px);
}

.hero-eyebrow {
  font-size: 0.9rem; color: var(--text-2);
  font-weight: 500;
  max-width: 720px;
}
.hero-eyebrow strong { color: var(--text); font-weight: 700; }

.hero-headline {
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-top: 20px;
  max-width: 980px;
  text-wrap: balance;
}
[data-hero="bold"] .hero-headline { margin-left: auto; margin-right: auto; }
.hero-headline .accent { color: var(--acc); }
.hero-headline .accent-alt { color: var(--acc-alt); }
.hero-headline .gradient {
  background: linear-gradient(135deg, var(--acc), var(--acc-alt));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.55;
}

.hero-cta-row {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* Hero variant: BOLD (text-centric, full) */
[data-hero="bold"] .hero {
  text-align: center;
}
[data-hero="bold"] .hero-inner { display: flex; flex-direction: column; align-items: center; }
[data-hero="bold"] .hero-cta-row { justify-content: center; }
[data-hero="bold"] .hero-finally {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
}
[data-hero="bold"] .hero-finally .underline-acc {
  position: relative;
  display: inline-block;
}
[data-hero="bold"] .hero-finally .underline-acc::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 8px; border-radius: 4px;
  background: var(--acc);
  opacity: 0.28;
}

/* Hero variant: SPLIT (text + visual right) */
[data-hero="split"] .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
[data-hero="split"] .hero-headline { font-size: clamp(2rem, 4vw, 3.6rem); }
[data-hero="split"] .hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
[data-hero="split"] .hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, var(--acc-soft) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mockup {
  position: relative; height: 100%;
  display: grid; grid-template-rows: auto 1fr auto; gap: 16px;
  border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 20px;
  overflow: hidden;
}
.hero-mockup-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-mute); opacity: .4; }
.hero-mockup-dot:nth-child(1) { background: #ff5f57; opacity: .9; }
.hero-mockup-dot:nth-child(2) { background: #febc2e; opacity: .9; }
.hero-mockup-dot:nth-child(3) { background: #28c840; opacity: .9; }
.hero-mockup-title { margin-left: 8px; font-size: 0.8rem; color: var(--text-3); font-weight: 600; }
.hero-mockup-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  align-content: start;
}
.hero-mockup-tile {
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.hero-mockup-tile:nth-child(2) { background: linear-gradient(135deg, #14532d, var(--sp-green)); }
.hero-mockup-tile:nth-child(3) { background: linear-gradient(135deg, #1e3a8a, #312e81); }
.hero-mockup-tile:nth-child(4) { background: linear-gradient(135deg, #831843, #be185d); }
.hero-mockup-tile::after {
  content: ""; position: absolute; inset: auto 12px 12px 12px; height: 8px;
  background: rgba(255,255,255,0.18); border-radius: 4px;
}
.hero-mockup-tile::before {
  content: ""; position: absolute; left: 12px; top: 12px;
  width: 32px; height: 8px;
  background: rgba(255,255,255,0.25); border-radius: 4px;
}
.hero-mockup-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.hero-mockup-progress { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.hero-mockup-progress > div { width: 64%; height: 100%; background: linear-gradient(90deg, var(--purple-bright), var(--sp-green)); border-radius: 2px; }
.hero-mockup-label { font-size: 0.7rem; color: var(--text-3); margin-left: 12px; }

/* Hero variant: MINIMAL */
[data-hero="minimal"] .hero { padding-top: clamp(96px, 14vw, 180px); padding-bottom: clamp(96px, 14vw, 180px); text-align: left; }
[data-hero="minimal"] .hero-inner { display: flex; flex-direction: column; gap: 64px; max-width: 1080px; }
[data-hero="minimal"] .hero-headline { font-size: clamp(3rem, 8vw, 7rem); font-weight: 900; letter-spacing: -0.04em; }
[data-hero="minimal"] .hero-grid-bg { display: none; }
[data-hero="minimal"] .hero-glow { opacity: 0.6; }
[data-hero="minimal"] .hero-min-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end;
}
[data-hero="minimal"] .hero-min-meta-block { max-width: 380px; }
[data-hero="minimal"] .hero-min-meta-block span { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }

/* Hide hero-finally except in bold */
.hero-finally { display: none; }
[data-hero="bold"] .hero-finally { display: block; }
.hero-visual { display: none; }
[data-hero="split"] .hero-visual { display: block; }
.hero-min-meta { display: none; }
[data-hero="minimal"] .hero-min-meta { display: grid; }

/* === ENDORSEMENT CARDS === */
.endorse-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.endorse-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
}
.endorse-card::before {
  content: '"'; position: absolute; right: 22px; top: -10px;
  font-size: 8rem; font-family: Georgia, serif; line-height: 1;
  color: var(--quote-mark);
  pointer-events: none;
}
.endorse-card:hover { transform: translateY(-4px); border-color: var(--acc); box-shadow: var(--shadow-md); }
.endorse-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.endorse-photo img { width: 100%; height: 100%; object-fit: cover; }
.endorse-photo img.contain { object-fit: contain; padding: 8px; background: var(--panel-2); }
.endorse-name { font-weight: 700; font-size: 1.05rem; }
.endorse-quote { color: var(--text-2); line-height: 1.55; font-size: 0.92rem; }

/* === VISTO SU LOGO BAR === */
.logobar {
  padding: 40px 0;
  background: var(--logo-bar-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.logobar-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); text-align: center; margin-bottom: 28px; font-weight: 600;
}
.logobar-mask {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logobar-track {
  display: flex; gap: 80px; align-items: center;
  animation: marquee 36s linear infinite;
  width: max-content;
  padding: 0 40px;
}
.logobar-track img {
  height: 44px; width: auto; max-width: 180px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1) brightness(1.6) contrast(0.9);
  transition: opacity .2s var(--ease), filter .2s var(--ease);
  flex-shrink: 0;
}
:root[data-theme="light"] .logobar-track img {
  filter: grayscale(1) contrast(0.85) brightness(0.85);
}
.logobar-track img:hover { opacity: 1; filter: none; }
/* Loghi forniti in nero/scuro: invertiti per il tema scuro */
.logobar-track img.logo-invert { filter: invert(1) brightness(1.05); }
.logobar-track img.logo-invert:hover { filter: invert(1) brightness(1.05); opacity: 1; }
:root[data-theme="light"] .logobar-track img.logo-invert { filter: none; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STATS === */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900; letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--text) 0%, var(--text-3) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
:root[data-theme="dark"] .stat-num,
:root:not([data-theme]) .stat-num {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.3) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-weight: 600; margin-top: 12px; font-size: 1.1rem; }
.stat-sub { color: var(--text-3); margin-top: 6px; font-size: 0.95rem; }

/* === SECTION HEADERS === */
.section-head {
  text-align: center; max-width: 880px; margin: 0 auto var(--space-block);
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head .kicker { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-2); font-size: 1.1rem; line-height: 1.55; }

/* === COPY vs ORIGINALE (comparison) === */
.compare-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.compare-side h3 { margin-bottom: 16px; }
.compare-side p { color: var(--text-2); }
.compare-original { color: var(--acc); }

/* === SP vs GURU ITALIANI (comparison table) === */
.vs-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.vs-col { padding: 32px; }
.vs-col + .vs-col { border-left: 1px solid var(--border); }
.vs-col.bad { background: linear-gradient(180deg, transparent, rgba(239,68,68,0.04)); }
.vs-col.good { background: linear-gradient(180deg, transparent, rgba(142,197,64,0.05)); position: relative; }
.vs-col.good::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple-bright), var(--sp-green));
}
.vs-col-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.vs-col-head h4 { font-size: 1.2rem; }
.vs-col-head .vs-tag {
  font-size: 0.7rem; padding: 4px 10px; border-radius: 999px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.vs-col.bad .vs-tag { background: rgba(239,68,68,0.14); color: #ff6b6b; }
.vs-col.good .vs-tag { background: var(--sp-green-soft); color: var(--sp-green); }
.vs-list { display: flex; flex-direction: column; gap: 14px; }
.vs-list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start;
  color: var(--text-2); font-size: 0.98rem; line-height: 1.5;
}
.vs-list li .vs-ic {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  font-size: 12px; font-weight: 800;
}
.vs-col.bad .vs-ic { background: rgba(239,68,68,0.18); color: #ff6b6b; }
.vs-col.good .vs-ic { background: var(--sp-green-soft); color: var(--sp-green); }

/* === COME FUNZIONA (steps) === */
.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 56px 96px;
  counter-reset: step;
  position: relative;
}
/* Flow arrows — horizontal between cards in same row */
.steps-grid > .step-card { position: relative; }
.steps-grid > .step-card:nth-child(1)::after,
.steps-grid > .step-card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -76px;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--acc) 10%, transparent), var(--acc));
  pointer-events: none;
}
.steps-grid > .step-card:nth-child(1)::before,
.steps-grid > .step-card:nth-child(3)::before {
  content: "→";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  color: var(--acc);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1;
  pointer-events: none;
}
/* Vertical connector between row 1 and row 2 */
.steps-grid::after {
  content: "↓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--acc);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1;
  background: var(--bg);
  padding: 6px 14px;
  border: 1px solid color-mix(in oklab, var(--acc) 35%, var(--border));
  border-radius: 999px;
  box-shadow: 0 0 0 6px var(--bg);
  pointer-events: none;
}

.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.step-card:hover { border-color: var(--acc); transform: translateY(-4px); }
.step-num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--acc);
  display: inline-block; margin-bottom: 18px;
}
.step-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--text-3); font-size: 0.95rem; line-height: 1.55; }
.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--acc-bg);
  color: var(--acc);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px; font-weight: 800;
}

/* === EXPERT GRID (faces / portraits) === */
.experts-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.expert-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  aspect-ratio: 1 / 1;
}
.expert-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.expert-card:hover { transform: scale(1.04); border-color: var(--acc); z-index: 2; box-shadow: var(--shadow-md); }
.expert-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* === GALLERY (image strip / mosaic, NIENTE crop) === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.gallery-tile {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.gallery-tile:hover { border-color: var(--acc); transform: translateY(-2px); }
.gallery-tile img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.gallery-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .gallery-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid.cols-6, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* === RICH / JOE FEATURE === */
.feature-bio {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.feature-bio.reverse { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
.feature-bio.reverse .feature-text { order: 2; }
.feature-text h2 { margin-bottom: 24px; }
.feature-text p { color: var(--text-2); margin-bottom: 14px; line-height: 1.65; font-size: 0.98rem; }
.feature-text p strong { color: var(--text); font-weight: 700; }
.feature-text em { color: var(--acc); font-style: italic; }

.feature-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky; top: 80px;
}
.feature-photos .ph {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.feature-photos .ph:hover { transform: scale(1.02); border-color: var(--acc); z-index: 2; position: relative; }
.feature-photos .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-photos .ph.contain {
  background: var(--panel-2);
  padding: 16px;
}
.feature-photos .ph.contain img { object-fit: contain; }

/* === TESTIMONIALS === */
.test-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: var(--space-block);
}
.test-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.test-card:hover { border-color: var(--acc); transform: translateY(-3px); }
.test-head { display: flex; gap: 12px; align-items: center; }
.test-photo { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: var(--bg-3); border: 2px solid var(--border); flex-shrink: 0; }
.test-photo img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-weight: 700; }
.test-role { color: var(--text-3); font-size: 0.82rem; }
.test-title { font-style: italic; color: var(--acc); font-size: 0.95rem; }
.test-quote { color: var(--text-2); font-size: 0.92rem; line-height: 1.55; }

/* === BENEFITS LIST (Liberati finalmente) === */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.benefit:hover { border-color: var(--acc); transform: translateY(-3px); }
.benefit-ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--acc-bg); color: var(--acc);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.benefit h4 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.benefit p { color: var(--text-2); line-height: 1.6; font-size: 0.98rem; }

/* === RECEIVE (cosa ricevi - 4 items) === */
.receive-list {
  display: flex; flex-direction: column; gap: clamp(40px, 6vw, 80px);
}
.receive-item {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.receive-item:nth-child(even) { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.receive-item:nth-child(even) .receive-media { order: 2; }
.receive-num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--acc);
}
.receive-item h3 { margin: 12px 0 18px; font-size: 1.75rem; }
.receive-item p { color: var(--text-2); line-height: 1.65; margin-bottom: 12px; }
.receive-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.receive-media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, var(--acc-bg) 0%, transparent 60%);
}
.receive-media img {
  position: relative; z-index: 1;
  max-width: 100%; max-height: 360px;
  width: auto; height: auto;
  object-fit: contain;
}

/* === PRICING === */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: var(--space-block);
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--acc);
  box-shadow: 0 30px 80px -20px var(--acc-soft);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel) 100%);
}
.price-card.featured::before {
  content: "Carrello attivo ora";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--acc); color: var(--acc-contrast);
  padding: 6px 18px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.price-card.future {
  opacity: 0.85;
}
.price-card.future::before {
  content: "Carrello attivo fra 3 giorni";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #0e1f02;
  padding: 6px 18px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.price-title { font-size: 1.2rem; font-weight: 700; }
.price-img {
  margin: 16px auto 20px;
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}
.price-list {
  display: flex; flex-direction: column; gap: 10px;
  margin: 20px 0 28px;
}
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li .pi-text { color: var(--text-2); }
.price-list li .pi-text strong { color: var(--text); font-weight: 600; }
.price-list li .pi-val { color: var(--text-3); font-size: 0.82rem; white-space: nowrap; }

.price-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-top: 2px solid var(--border);
  margin-top: auto;
}
.price-total-label { font-size: 0.95rem; color: var(--text-2); }
.price-total-value { font-size: 1.5rem; font-weight: 800; text-decoration: line-through; color: var(--text-3); }

.price-final {
  background: linear-gradient(135deg, var(--acc-bg), transparent);
  border: 1px solid var(--acc-soft);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.price-final-head { font-size: 0.85rem; color: var(--text-2); margin-bottom: 6px; }
.price-final-amount {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--acc); line-height: 1;
}
.price-final-amount sup { font-size: 0.45em; font-weight: 700; opacity: .8; }
.price-final-meta { color: var(--text-3); font-size: 0.85rem; margin-top: 6px; }

/* === PACK GRID (4 piani) === */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--space-block);
  align-items: stretch;
}
.pack-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pack-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pack-card.featured {
  border-color: var(--sp-green);
  box-shadow: 0 0 0 1px var(--sp-green), 0 30px 60px -25px color-mix(in oklab, var(--sp-green) 60%, transparent);
}
.pack-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sp-green);
  color: #0a1a0e;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px -6px color-mix(in oklab, var(--sp-green) 60%, transparent);
}
.pack-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
}
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.pack-price-old {
  font-size: 1rem;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 600;
}
.pack-price-now {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.pack-price-now sup {
  font-size: 0.4em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
  opacity: 0.85;
}
.pack-price-meta {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 18px;
}
.pack-badge {
  display: inline-block;
  align-self: flex-start;
  background: color-mix(in oklab, var(--purple-bright) 22%, transparent);
  color: color-mix(in oklab, var(--purple-bright) 60%, #fff);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 22px;
}
.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.pack-features li .pf-ic {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.pack-features li.ok { color: var(--text); }
.pack-features li.ok .pf-ic {
  background: color-mix(in oklab, var(--sp-green) 22%, transparent);
  color: var(--sp-green);
}
.pack-features li.ko { color: var(--text-3); }
.pack-features li.ko .pf-ic {
  background: color-mix(in oklab, #ef4444 18%, transparent);
  color: #ef4444;
}
.pack-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--sp-green);
  color: #0a1a0e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  margin-top: auto;
}
.pack-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--sp-green) 60%, transparent);
}
.pack-cta .arr svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2;
  fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pack-grid { grid-template-columns: 1fr; }
}

.countdown-row {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 16px;
}
.cd-unit {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px; min-width: 64px; text-align: center;
}
.cd-num { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.cd-lbl { font-size: 0.65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* === GUARANTEE === */
.guarantee {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
}
.guarantee-badge {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.guarantee-badge img {
  width: 100%; height: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.guarantee h3 { margin-bottom: 12px; }
.guarantee p { color: var(--text-2); line-height: 1.6; }

/* === FAQ === */
.faq-list {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 920px; margin: 0 auto;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--acc); }
.faq-summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc);
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-content {
  padding: 0 24px 24px;
  color: var(--text-2); line-height: 1.65;
}
.faq-content em { color: var(--acc); font-style: italic; }

/* === STICKY MOBILE CTA === */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--border);
  display: none;
  align-items: center; gap: 12px;
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .stk-info { flex: 1; min-width: 0; }
.sticky-cta .stk-title { font-weight: 700; font-size: 0.95rem; }
.sticky-cta .stk-sub { color: var(--text-3); font-size: 0.78rem; }
.sticky-cta .btn { flex-shrink: 0; }

/* === FOOTER (clone dal prototipo SP) === */
.sp-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: var(--space-section);
  padding: 56px 0 0;
}
.sp-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.sp-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1100px) {
  .sp-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .sp-footer-top { grid-template-columns: 1fr; }
}
.sp-footer-brand { max-width: 320px; }
.sp-footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.sp-footer-logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.sp-footer-logo-icon svg { width: 100%; height: 100%; }
.sp-footer-logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.sp-footer-logo-text .top {
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
}
.sp-footer-logo-text .bot {
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--purple-bright);
}
.sp-footer-claim {
  font-size: 13px; color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.sp-footer-social {
  display: flex; align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.sp-footer-social-label {
  font-size: 11px; color: var(--text-3);
  margin-right: 4px;
}
.sp-footer-social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all .18s var(--ease);
}
:root[data-theme="light"] .sp-footer-social-btn { background: rgba(0,0,0,0.03); }
.sp-footer-social-btn:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
  color: var(--purple-bright);
  transform: translateY(-2px);
}
.sp-footer-social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.sp-footer-contact {
  font-size: 12px; color: var(--text-3);
  line-height: 1.8;
}
.sp-footer-contact a {
  color: var(--text-2);
  cursor: pointer;
}
.sp-footer-contact a:hover { color: var(--purple-bright); }

/* Colonne link */
.sp-footer-col h4 {
  font-size: 12px; font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.sp-footer-col ul {
  list-style: none; padding: 0; margin: 0;
}
.sp-footer-col li { margin-bottom: 8px; }
.sp-footer-col a {
  font-size: 13px; color: var(--text-2);
  text-decoration: none; cursor: pointer;
  transition: color .12s;
  display: inline-flex; align-items: center; gap: 6px;
}
.sp-footer-col a:hover { color: var(--purple-bright); }
.sp-footer-col a .new-pill {
  background: var(--sp-green-soft);
  color: var(--sp-green);
  font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Sub-footer */
.sp-footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.sp-footer-legal {
  font-size: 11px; color: var(--text-3);
  line-height: 1.6;
}
.sp-footer-legal strong { color: var(--text-2); }
.sp-footer-mini-links {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.sp-footer-mini-links a {
  font-size: 11px; color: var(--text-3);
  text-decoration: none; cursor: pointer;
  transition: color .12s;
}
.sp-footer-mini-links a:hover { color: var(--text); }
.sp-footer-mini-links a.cookie-prefs {
  color: var(--purple-bright);
  font-weight: 500;
}

/* Disclaimer */
.sp-footer-disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.6;
}
.sp-footer-disclaimer p {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.sp-footer-disclaimer p + p { margin-top: 8px; }
.sp-footer-disclaimer strong { color: var(--text-2); }

/* === Section bg variants === */
.section-panel { background: var(--bg-2); }
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
:root[data-theme="dark"] .section-emphasis,
:root:not([data-theme]) .section-emphasis {
  background: radial-gradient(ellipse at 50% 0%, var(--acc-soft) 0%, transparent 50%), var(--bg);
}

/* === Fade-in animation ===
   Static delivery: opacity:1 by default so the page is always renderable.
   Hover micro-animations on cards/buttons remain via their own transitions. */
.reveal { opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  [data-hero="split"] .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  [data-hero="split"] .hero-visual { max-width: 520px; margin: 0 auto; }
  .endorse-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .experts-grid { grid-template-columns: repeat(4, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-bio, .feature-bio.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-bio.reverse .feature-text { order: 0; }
  .receive-item, .receive-item:nth-child(even) { grid-template-columns: 1fr; }
  .receive-item:nth-child(even) .receive-media { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 16px; }
  .vs-wrap { grid-template-columns: 1fr; }
  .vs-col + .vs-col { border-left: none; border-top: 1px solid var(--border); }
  .compare-block { grid-template-columns: 1fr; }
  [data-hero="minimal"] .hero-min-meta { grid-template-columns: 1fr; gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --fs-base: 15px; }
  .topbar-inner { padding: 12px 16px; }
  .container, .container-narrow { padding: 0 16px; }
  .top-link { display: none; }
  .top-actions .btn { padding: 10px 14px; font-size: 0.85rem; }
  .hero { padding-top: 48px; padding-bottom: 48px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .experts-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 56px; }
  /* Hide horizontal arrows; show vertical arrows between stacked cards */
  .steps-grid > .step-card:nth-child(1)::after,
  .steps-grid > .step-card:nth-child(3)::after { display: none; }
  .steps-grid > .step-card:nth-child(1)::before,
  .steps-grid > .step-card:nth-child(2)::before,
  .steps-grid > .step-card:nth-child(3)::before {
    content: "↓";
    display: block;
    position: absolute;
    left: 50%;
    right: auto;
    bottom: -44px;
    top: auto;
    transform: translateX(-50%);
    font-size: 1.6rem;
  }
  .steps-grid > .step-card:nth-child(3)::before { content: "↓"; }
  .steps-grid::after { display: none; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { max-width: 160px; margin: 0 auto; }
  .price-card { padding: 24px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 90px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { flex: 1; }
  .countdown-row { gap: 8px; }
  .cd-unit { padding: 10px 12px; min-width: 56px; }
}

/* === CATEGORY CARDS (grid 14 categorie + +1) === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  max-width: 1080px;
  margin: 56px auto 32px;
  padding-right: 18px; /* spazio per badge sporgenti */
}
.cat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px 18px 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.cat-card:hover {
  border-color: color-mix(in oklab, var(--cat, var(--acc)) 60%, var(--border));
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--cat, var(--acc)) 4%, var(--panel));
}
.cat-card-bar {
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--cat, var(--acc));
}
.cat-card-title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
  min-width: 0;
}
.cat-card-avatars {
  display: flex;
  flex-shrink: 0;
}
.cat-card-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--panel);
  object-fit: cover;
  margin-left: -10px;
  background: var(--panel-2, #1a1a22);
  transition: border-color .25s var(--ease);
}
.cat-card-avatars img:first-child { margin-left: 0; }
.cat-card:hover .cat-card-avatars img {
  border-color: color-mix(in oklab, var(--cat, var(--acc)) 14%, var(--panel));
}
.cat-card-num {
  position: absolute;
  top: -12px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sp-green);
  color: #0d1810;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  border: 3px solid var(--bg);
  box-shadow: 0 4px 14px rgba(142,197,64,0.30);
}
.cat-card-num-plus {
  background: var(--purple-bright);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(139,92,246,0.35);
}
.cat-card-more .cat-card-title {
  font-style: italic;
  color: var(--text-2, var(--text));
}

@media (max-width: 720px) {
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 14px 0;
    padding-right: 14px;
  }
  .cat-card { padding: 16px 18px 16px 20px; gap: 14px; }
  .cat-card-title { font-size: 0.95rem; }
  .cat-card-avatars img { width: 32px; height: 32px; }
  .cat-card-num { width: 38px; height: 38px; font-size: 12px; top: -10px; right: -10px; }
  .cat-card-num-plus { font-size: 18px; }
}

/* === THUMBNAIL MARQUEE (3 rows, opposing directions) === */
.thumb-marquee {
  /* Break out of container to full viewport width */
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.thumb-row {
  width: 100%;
  overflow: hidden;
}
.thumb-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.thumb-row.dir-left  .thumb-track { animation: thumb-scroll-left  90s linear infinite; }
.thumb-row.dir-right .thumb-track { animation: thumb-scroll-right 90s linear infinite; }
.thumb-marquee:hover .thumb-track { animation-play-state: paused; }
.thumb-tile {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  /* no border per richiesta */
  transition: transform .35s var(--ease);
}
.thumb-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-tile:hover { transform: translateY(-3px) scale(1.02); }

@keyframes thumb-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes thumb-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (max-width: 720px) {
  .thumb-tile { width: 200px; }
  .thumb-marquee { gap: 12px; }
  .thumb-track { gap: 12px; }
  .thumb-row.dir-left  .thumb-track,
  .thumb-row.dir-right .thumb-track { animation-duration: 65s; }
}

@media (prefers-reduced-motion: reduce) {
  .thumb-row.dir-left  .thumb-track,
  .thumb-row.dir-right .thumb-track { animation: none; }
}

/* === DEVICE MOCKUPS (Laptop + Phone) === */
.device-section { padding-top: 40px; padding-bottom: 40px; }
.device-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.device-head h2 { margin-top: 16px; }

.device-pair {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

/* ---- LAPTOP ---- */
.mock-laptop {
  position: relative;
  width: min(880px, 78%);
  flex-shrink: 0;
}
.mock-laptop-lid {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #2a2a2e;
  border-radius: 18px 18px 4px 4px;
  padding: 14px 14px 14px;
  box-shadow:
    inset 0 0 0 1px #3a3a40,
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.mock-laptop-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0a0d;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #1a1a1e;
}
.mock-laptop-cam {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1a1a20;
  box-shadow: inset 0 0 0 1px #2a2a30;
  z-index: 2;
}
.mock-laptop-screen {
  position: absolute;
  inset: 14px 0 0 0; /* leave room for cam strip */
  overflow: hidden;
}
.mock-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mock-laptop-base {
  position: relative;
  width: 106%;
  height: 14px;
  margin-left: -3%;
  background: linear-gradient(180deg, #2a2a2e 0%, #1d1d22 60%, #18181c 100%);
  border-radius: 0 0 10px 10px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.4);
}
.mock-laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 6px;
  background: #0a0a0d;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}
.mock-laptop-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -24px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 70%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}

/* ---- PHONE ---- */
.mock-phone {
  position: relative;
  width: clamp(180px, 18%, 240px);
  margin-left: -110px;
  margin-bottom: -20px;
  z-index: 3;
  flex-shrink: 0;
}
.mock-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #18181c;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1.5px #2a2a30,
    inset 0 0 0 4px #0a0a0d,
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 8px 20px -10px rgba(0,0,0,0.5);
}
.mock-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
}
.mock-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mock-phone-island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mock-phone-btn {
  position: absolute;
  background: linear-gradient(180deg, #25252a, #1a1a1f);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.mock-phone-btn-vol1 { left: -2px; top: 18%; width: 3px; height: 7%; border-radius: 2px 0 0 2px; }
.mock-phone-btn-vol2 { left: -2px; top: 27%; width: 3px; height: 10%; border-radius: 2px 0 0 2px; }
.mock-phone-btn-power { right: -2px; top: 24%; width: 3px; height: 11%; border-radius: 0 2px 2px 0; }
.mock-phone-shadow {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -20px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
  filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .device-pair { gap: 28px; }
  .mock-laptop { width: 100%; max-width: 640px; }
  .mock-phone {
    width: clamp(140px, 28%, 180px);
    margin-left: -80px;
    margin-bottom: -10px;
  }
}
@media (max-width: 560px) {
  .device-pair { flex-direction: row; align-items: flex-end; justify-content: center; gap: 0; }
  .mock-laptop { width: 72%; }
  .mock-phone { width: 36%; margin-left: -22%; margin-bottom: -10px; }
  .device-head { margin-bottom: 36px; }
}

/* =========================================================
   MOBILE OBSESSIVE POLISH (≤ 640px)
   Audit completo: titoli, padding, card, showcase, footer
   ========================================================= */
@media (max-width: 640px) {
  /* --- HEADINGS scalano (override fs-h vars) --- */
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); line-height: 1.05; }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.1rem); line-height: 1.1; }
  h3 { font-size: clamp(1.35rem, 5.2vw, 1.65rem); line-height: 1.18; }
  h4 { font-size: 1.15rem; }

  /* --- SECTION padding più stretto --- */
  .section { padding: clamp(48px, 11vw, 72px) 0; }
  .section-compact { padding: clamp(32px, 7vw, 48px) 0; }
  .section-head { margin-bottom: clamp(28px, 6vw, 40px); }
  .section-head p { font-size: 0.98rem; }

  /* --- HERO --- */
  .hero-eyebrow { font-size: 0.82rem; }
  [data-hero="bold"] .hero-finally { font-size: 1.2rem; letter-spacing: 0.02em; }
  .hero-pullstats { gap: 18px 24px; margin-top: 28px; margin-bottom: 56px; }
  .hero-pullstat .v { font-size: 1.6rem; }
  .hero-pullstat .k { font-size: 9px; }
  .scroll-cue { bottom: 10px; gap: 4px; }
  .scroll-cue .line { height: 20px; }
  .scroll-cue span { font-size: 9px; }

  /* --- BUTTONS shrink (mobile-first sizing) --- */
  .btn { padding: 11px 16px; font-size: 0.88rem; border-radius: 10px; }
  .btn-lg { padding: 13px 20px; font-size: 0.95rem; border-radius: 12px; }
  .btn-xl { padding: 15px 24px; font-size: 1rem; border-radius: 12px; font-weight: 700; }
  .btn .arr { width: 14px; height: 14px; }
  .top-actions .btn { padding: 8px 12px; font-size: 12px; }
  .pack-cta { padding: 12px 16px; font-size: 0.9rem; }

  /* --- STATS BENTO --- */
  .stat-tile { padding: 22px 18px; gap: 8px; }
  .stat-num { font-size: 2.8rem; }
  .stat-label { font-size: 0.95rem; margin-top: 6px; }
  .stat-sub { font-size: 0.82rem; }
  .stat-key { font-size: 10px; }

  /* --- ENDORSE CARDS --- */
  .endorse-card { padding: 22px; gap: 14px; }
  .endorse-card::before { font-size: 5rem; right: 14px; top: -4px; }
  .endorse-photo { width: 64px; height: 64px; }
  .endorse-name { font-size: 1rem; }
  .endorse-quote { font-size: 0.9rem; line-height: 1.5; }

  /* --- COMPARE BLOCK --- */
  .compare-block { padding: 22px 20px; gap: 28px; }
  .vs-col { padding: 22px 20px; }
  .vs-col-head h4 { font-size: 1.1rem; }

  /* --- STEPS --- */
  .step-card { padding: 22px 20px 26px; }

  /* --- BENTO --- */
  .bento { gap: 12px; }
  .bento-card { padding: 24px 22px; }
  .bento-card h4 { font-size: 1.15rem; }
  .bento-card p { font-size: 0.92rem; line-height: 1.55; }
  .bento-pile { gap: 8px; }
  .bento-pile span { width: 64px !important; height: 64px !important; }

  /* --- TESTIMONIALS --- */
  .test-card { padding: 20px; }
  .test-photo { width: 48px; height: 48px; }
  .test-title { font-size: 0.9rem; }

  /* --- BENEFITS --- */
  .benefit { padding: 22px 20px; }
  .benefit h4 { font-size: 1.1rem; }

  /* --- FEATURE BIO (Rich / Joe) — niente sticky su mobile --- */
  .feature-photos { position: static !important; top: auto !important; gap: 14px; }
  .feature-text p { font-size: 0.95rem; }

  /* --- RECEIVE items --- */
  .receive-item h3 { font-size: 1.45rem; margin: 8px 0 12px; }
  .receive-item p { font-size: 0.95rem; }
  .receive-media { padding: 20px; }
  .receive-media img { max-height: 260px; }

  /* --- PRICING / PACKS --- */
  .price-card { padding: 24px 22px; }
  .pack-card { padding: 24px 22px; }
  .pack-features li { font-size: 0.85rem; }

  /* --- COUNTDOWN --- */
  .countdown-row { gap: 6px; }
  .cd-unit { padding: 8px 10px; min-width: 50px; }
  .cd-num { font-size: 1.3rem; }
  .cd-lbl { font-size: 0.6rem; }

  /* --- SHOWCASE: kill 3D + reflection su mobile --- */
  .showcase { padding: 56px 0 24px; }
  .showcase-stage { padding: 0 8px; perspective: none; }
  .showcase-frame, .showcase-stage:hover .showcase-frame { transform: none !important; }
  .showcase-stage::before { display: none; }
  .showcase-reflection { display: none; }
  .showcase-browser { border-radius: 12px; }
  .showcase-browser-bar { padding: 6px 8px; gap: 6px; }
  .showcase-browser-dots { gap: 4px; }
  .showcase-browser-dots span { width: 7px; height: 7px; }
  .showcase-browser-url { padding: 3px 8px; font-size: 9.5px; border-radius: 5px; max-width: none; }
  .showcase-browser-url::before { display: none; }
  .showcase-browser-bar > div[style*="width: 60px"] { display: none; }
  .showcase-specs { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 8px; }
  .showcase-spec { padding: 16px 14px; }
  .showcase-spec .v { font-size: 2.2rem; }

  /* --- LOGO BAR (Visto su) --- */
  .logobar { padding: 28px 0; }
  .logobar-track img { height: 28px; }

  /* --- DEVICE PAIR (mock) — riequilibrio --- */
  .device-section { padding: 32px 0; }
  .device-head { margin-bottom: 28px; }
  .mock-laptop { width: 70%; }
  .mock-phone { width: 30%; margin-left: -14%; margin-bottom: -6px; }
  .mock-phone-island { height: 12px; top: 10px; width: 26%; }
  .mock-phone-frame { padding: 7px; border-radius: 28px; }
  .mock-phone-screen { border-radius: 22px; }

  /* --- THUMB MARQUEE --- */
  .thumb-tile { width: 180px; border-radius: 10px; }
  .thumb-marquee { gap: 12px; }
  .thumb-track { gap: 12px; }

  /* --- CAT CARDS: spazio per badge sporgenti --- */
  .cat-grid { padding-right: 16px; margin: 36px auto 24px; }

  /* --- TOPBAR slimmer --- */
  .sp-logo-text { line-height: 1; }
  .sp-logo-icon { width: 28px; height: 28px; }
  .sp-logo-text .top, .sp-logo-text .bot { font-size: 12px; }
  .sp-logo-beta { font-size: 8px; padding: 2px 5px; }

  /* --- STICKY CTA cleanup --- */
  .sticky-cta { padding: 10px 12px; gap: 10px; }
  .sticky-cta .stk-title { font-size: 0.82rem; }
  .sticky-cta .stk-sub { font-size: 0.68rem; }

  /* --- FAQ --- */
  .faq-summary { font-size: 0.95rem; padding: 18px 16px; gap: 12px; }
  .faq-content { padding: 0 16px 18px; font-size: 0.92rem; }

  /* --- FOOTER tighter --- */
  .sp-footer { padding-top: 40px; }
}

/* === Extra-tiny (≤ 380px iPhone SE / pre-X) === */
@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 14px; }
  h2 { font-size: 1.55rem; }
  .hero-pullstats { gap: 14px 20px; }
  .stat-num { font-size: 3rem; }
  .mock-laptop { width: 66%; }
  .mock-phone { width: 32%; margin-left: -12%; }
  .thumb-tile { width: 160px; }
}
