:root {
  --ink: #17130f;
  --ink-soft: #2a241e;
  --muted: #665f55;
  --line: #e4d8c8;
  --line-soft: rgba(228, 216, 200, 0.62);
  --paper: #fffdf9;
  --warm: #f8f1e7;
  --sand: #efe1cf;
  --gold: #b98443;
  --gold-deep: #9a6b34;
  --gold-soft: #ead2ad;
  --olive: #69715d;
  --positive: #6f8a5b;
  --positive-soft: rgba(111, 138, 91, 0.16);
  --negative: #b45a45;
  --negative-soft: rgba(180, 90, 69, 0.14);
  --shadow-sm: 0 8px 22px rgba(67, 47, 28, 0.06);
  --shadow: 0 24px 70px rgba(67, 47, 28, 0.12);
  --shadow-lg: 0 32px 90px rgba(67, 47, 28, 0.18);
  --radius: 28px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shell-width: 1000px;
  --section-inline-padding: clamp(16px, 3vw, 28px);
  --section-inline-padding-total: clamp(32px, 6vw, 56px);
  --container: 1180px;
  --title-font: "Ubuntu", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --brand-font: "Cinzel", "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% 0%, #f5ede1 0%, #e6d9c4 70%, #d9c9b1 100%);
  background-attachment: fixed;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(185, 132, 67, 0.35);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(185, 132, 67, 0.55);
}

.mobile-wrapper {
  max-width: calc(var(--shell-width) + var(--section-inline-padding-total));
  margin: 0 auto;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f1e7 100%);
  min-height: 100vh;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 253, 249, 0.55),
    0 36px 100px rgba(67, 47, 28, 0.22),
    0 8px 28px rgba(67, 47, 28, 0.08);
  position: relative;
  overflow: hidden;
}

/* Burger menu panel (shared on mobile and desktop) */
.mobile-wrapper .nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  width: min(360px, calc(100vw - 2 * var(--section-inline-padding)));
  padding: 12px;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.26s var(--ease-out), transform 0.26s var(--ease-out), visibility 0.26s;
}

.mobile-wrapper .nav-links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-wrapper .nav-toggle {
  display: inline-flex;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(23, 19, 15, 0.34);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/* No-JS fallback: keep navigation visible and inline */
html:not(.js) .nav {
  flex-wrap: wrap;
}

html:not(.js) .nav-toggle {
  display: none;
}

html:not(.js) .nav-links {
  position: static;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mobile-wrapper .split {
  grid-template-columns: 1fr;
  gap: 42px;
}

.mobile-wrapper .split.reverse {
  grid-template-columns: 1fr;
}

.mobile-wrapper .audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mobile-wrapper .card-grid.three {
  grid-template-columns: 1fr;
}

.mobile-wrapper .deliverables {
  grid-template-columns: 1fr;
}

.mobile-wrapper .footer-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .mobile-wrapper {
    max-width: calc(480px + var(--section-inline-padding-total));
  }

  .site-header {
    max-width: calc(480px + var(--section-inline-padding-total));
  }
}

@media (max-width: 500px) {
  .mobile-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split.reverse {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.mobile-wrapper .container {
  width: calc(100% - 32px);
  max-width: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(var(--shell-width) + var(--section-inline-padding-total));
  width: 100%;
  padding-inline: var(--section-inline-padding);
  z-index: 20;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  border-bottom: 1px solid rgba(228, 216, 200, 0.65);
  border-radius: 20px 20px 0 0;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(67, 47, 28, 0.08);
  border-radius: 0;
}

.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
  transition: transform 0.24s var(--ease-out);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.brand strong,
.footer strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-family: var(--title-font);
  font-weight: 400;
}

.brand .brand-name {
  font-family: var(--brand-font) !important;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: var(--brand-font) !important;
  font-weight: 400;
}

.brand-name .brand-qualifier {
  font-size: 0.62em;
}

.brand small,
.footer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-direction: column;
}

.nav-links > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  background: var(--warm);
  border-color: var(--line);
  outline: none;
  transform: translateX(2px);
}

.nav-links > a.is-current {
  background: var(--warm);
  border-color: var(--gold-soft);
}

.nav-link-index {
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-link-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.nav-link-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.nav-link-desc {
  font-size: 12px;
  line-height: 1.25;
  color: var(--muted);
}

.nav-link-arrow {
  font-size: 17px;
  line-height: 1;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links > a:hover .nav-link-arrow,
.nav-links > a:focus-visible .nav-link-arrow,
.nav-links > a.is-current .nav-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-menu-cta {
  display: grid;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.nav-menu-cta .button {
  width: 100%;
  justify-content: center;
  padding-block: 13px;
}

.nav-links.is-open > a {
  animation: navItemIn 0.42s var(--ease-out) backwards;
}

.nav-links.is-open > a:nth-child(1) { animation-delay: 0.04s; }
.nav-links.is-open > a:nth-child(2) { animation-delay: 0.09s; }
.nav-links.is-open > a:nth-child(3) { animation-delay: 0.14s; }
.nav-links.is-open > a:nth-child(4) { animation-delay: 0.19s; }
.nav-links.is-open > a:nth-child(5) { animation-delay: 0.24s; }

@keyframes navItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 9px 9px 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-toggle:hover {
  background: var(--warm);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.nav-toggle-text::before {
  content: "Menu";
}

.nav-toggle[aria-expanded="true"] .nav-toggle-text::before {
  content: "Chiudi";
}

.nav-toggle-bars {
  position: relative;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--warm);
  transition: background 0.22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: rgba(255, 253, 249, 0.16);
}

.nav-toggle-bars span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 2px;
  margin-left: -8px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.18s ease, top 0.3s var(--ease-out);
}

.nav-toggle-bars span:nth-child(1) { top: 12px; }
.nav-toggle-bars span:nth-child(2) { top: 16px; }
.nav-toggle-bars span:nth-child(3) { top: 20px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-links.is-open > a { animation: none; }
  .nav-links,
  .nav-backdrop,
  .nav-toggle-bars span { transition-duration: 0.01ms; }
}

@media (max-width: 400px) {
  .nav-toggle {
    padding-left: 9px;
    gap: 0;
  }

  .nav-toggle-text {
    display: none;
  }
}

.section {
  padding: 108px var(--section-inline-padding);
  scroll-margin-top: 90px;
}

.section.proof {
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.8fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5.2vw, 58px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4.1vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 520px;
  color: #37302a;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.45;
}

.section-heading p:not(.eyebrow),
.text-stack p,
.contact-box p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.text-stack {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 16px 44px rgba(67, 47, 28, 0.07);
  padding: 34px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.005em;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s ease, border-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 14px 36px rgba(67, 47, 28, 0.14);
}

.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button.primary {
  background: linear-gradient(135deg, #fff8ed, var(--gold-soft));
  border-color: #d8b681;
  box-shadow: 0 16px 36px rgba(185, 132, 67, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 20px 44px rgba(185, 132, 67, 0.28);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.6) 50%, transparent 65%);
  transform: translateX(-64%) rotate(12deg);
  transition: transform 0.85s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  transform: translateX(64%) rotate(12deg);
}

.button.secondary {
  background: var(--paper);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold);
  background: var(--warm);
}

.button-whatsapp {
  border-color: #25D366 !important;
}

.button-whatsapp svg {
  color: #25D366;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}

.button-whatsapp:hover svg,
.button-whatsapp:focus-visible svg {
  color: #fff !important;
}

.button-facebook {
  border-color: #1877F2 !important;
}

.button-facebook svg {
  color: #1877F2;
}

.button-facebook:hover,
.button-facebook:focus-visible {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #fff !important;
}

.button-facebook:hover svg,
.button-facebook:focus-visible svg {
  color: #fff !important;
}

.button-linkedin {
  border-color: #0077B5 !important;
}

.button-linkedin svg {
  color: #0077B5;
}

.button-linkedin:hover,
.button-linkedin:focus-visible {
  background: #0077B5 !important;
  border-color: #0077B5 !important;
  color: #fff !important;
}

.button-linkedin:hover svg,
.button-linkedin:focus-visible svg {
  color: #fff !important;
}

.mailto-request-form {
  display: inline-grid;
  gap: 8px;
  width: min(100%, var(--mailto-cta-width, 360px));
  align-items: start;
  vertical-align: top;
  text-align: left;
}

.mailto-request-form .button.mailto-submit {
  margin: 0;
}

.mailto-form-host {
  align-items: flex-start;
}

.mailto-fields {
  display: grid;
}

.mailto-fields > .mailto-step {
  grid-area: 1 / 1;
}

.mailto-step {
  display: grid;
  gap: 6px;
}

.mailto-step-name {
  opacity: 0;
  transform: translateY(8px) scale(0.992);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.mailto-request-form.is-mounted .mailto-step-name {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mailto-request-form .mailto-step-name.is-leaving {
  opacity: 0;
  transform: translateY(-8px) scale(0.992);
  pointer-events: none;
}

.mailto-step input {
  width: 100%;
  min-height: var(--mailto-cta-height, 52px);
  padding: 14px 22px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid #d8b681;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(185, 132, 67, 0.13);
  transition: border-color 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out), transform 0.42s var(--ease-out), background 0.42s ease;
}

.mailto-step input::placeholder {
  color: rgba(102, 95, 85, 0.78);
}

.mailto-step input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 132, 67, 0.13), 0 16px 34px rgba(185, 132, 67, 0.18);
  transform: translateY(-1px);
}

.mailto-step-email {
  opacity: 0;
  transform: translateY(10px) scale(0.992);
  pointer-events: none;
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.mailto-step-email.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mailto-submit {
  width: 100%;
  min-height: var(--mailto-cta-height, 52px);
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(12px) scale(0.992);
  transition: opacity 0.72s var(--ease-out) 0.12s, transform 0.72s var(--ease-out) 0.12s, box-shadow 0.36s var(--ease-out), background 0.36s ease, border-color 0.36s ease;
}

.mailto-request-form.is-mounted .mailto-submit {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mailto-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
}

.mailto-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.mailto-feedback {
  min-height: 1.2em;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.mailto-feedback.is-success {
  color: var(--positive);
}

.mailto-feedback.is-error {
  color: var(--negative);
}

.footer .mailto-feedback {
  color: rgba(255, 253, 249, 0.86);
}

.footer .mailto-feedback.is-success {
  color: #a8d8a5;
}

.footer .mailto-feedback.is-error {
  color: #f2a39a;
}

.hero-note {
  max-width: 560px;
  margin-top: 20px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait {
  position: relative;
}

.hero-logos {
  min-height: clamp(320px, 35vw, 420px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.social-proof {
  padding-top: 54px;
  padding-bottom: 54px;
  background: rgba(255, 253, 249, 0.72);
  border-top: 1px solid rgba(228, 216, 200, 0.7);
  border-bottom: 1px solid rgba(228, 216, 200, 0.7);
}

.social-proof-column {
  display: grid;
  gap: 44px;
  padding-block: 16px;
}

.social-proof .section-heading {
  text-align: left;
  max-width: 720px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-inline: clamp(3px, 0.6vw, 8px);
}

@media (max-width: 900px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Card più piccole nel layout a 3 colonne */
.social-proof-grid .archive-preview {
  position: relative;
  margin-top: 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  box-shadow: 0 26px 60px rgba(67, 47, 28, 0);
  transition: transform 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out);
}

.social-proof-grid .archive-preview:hover {
  z-index: 2;
  transform: translate3d(0, -4px, 0) scale(1.025);
  box-shadow: 0 26px 60px rgba(67, 47, 28, 0.16);
}

.social-proof-grid .archive-preview.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.6s var(--ease-out), transform 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out);
  transition-delay: 0ms;
}

.social-proof-grid .archive-preview.reveal.is-visible:hover {
  transform: translate3d(0, -4px, 0) scale(1.025);
}

.social-proof-grid .blog-preview-media img {
  transition: none;
}

.social-proof-grid .archive-preview:hover .blog-preview-media img {
  transform: none;
}

.social-proof-grid .blog-preview-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.social-proof-grid .browser-bar {
  padding: 11px 14px;
  gap: 5px;
}

.social-proof-grid .browser-bar span {
  width: 8px;
  height: 8px;
}

.social-proof-grid .blog-preview-media {
  aspect-ratio: auto;
  background: transparent;
}

.social-proof-grid .blog-preview-media::after {
  display: none;
}

.social-proof-grid .blog-preview-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
}

.social-proof-grid .blog-preview-content {
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.social-proof-grid .archive-preview h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.022em;
  margin-bottom: 10px;
}

.social-proof-grid .blog-meta {
  margin-bottom: 14px;
}

.social-proof-grid .blog-meta span {
  font-size: 10px;
  min-height: 24px;
  padding-inline: 10px;
  letter-spacing: 0.08em;
}

.social-proof-grid .blog-title-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.social-proof-grid .verified-badge {
  width: clamp(34px, 2.8vw, 38px);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-left: -10px;
}

.social-proof-grid .archive-preview h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.022em;
  margin: 0;
}

.social-proof-grid .blog-preview-content p {
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.social-proof-grid .blog-read-link {
  margin-top: auto;
  font-size: 14px;
}

.hero-copy .eyebrow {
  min-height: 22px;
}

.hero-logos::before {
  display: none;
}

.floating-logos-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.hero-logos-eyebrow {
  position: absolute;
  top: -64px;
  right: 0;
  z-index: 3;
  margin: 0;
  color: var(--muted);
  font-style: italic;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.02em;
}

.floating-logo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(67, 47, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.85;
  overflow: hidden;
  animation: floatLogo 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: var(--delay);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s ease, opacity 0.3s ease;
  cursor: default;
}

.floating-logo:hover {
  opacity: 1;
  border-color: rgba(185, 132, 67, 0.65);
  box-shadow: 0 18px 42px rgba(67, 47, 28, 0.26);
  z-index: 2;
  animation-play-state: paused;
}

.floating-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.floating-logo:not(.no-border):hover img {
  opacity: 0;
  transform: translateY(-60%);
}

.floating-logo.larger-logo {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
}

.floating-logo.no-border {
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.floating-logo.no-border img {
  width: 108%;
  height: 108%;
}

.floating-logo img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(0.3);
  transition: opacity 0.35s ease, filter 0.3s ease, transform 0.45s var(--ease-out);
}

.floating-stat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px;
  text-align: center;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity 0.35s ease 0.05s, transform 0.45s var(--ease-out) 0.05s;
  pointer-events: none;
}

.floating-logo:hover .floating-stat {
  opacity: 1;
  transform: translateY(0);
}

.floating-stat-number {
  display: block;
  color: var(--positive);
  font-family: var(--title-font);
  font-weight: 800;
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.floating-stat-label {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(6.5px, 0.7vw, 9px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-logo.larger-logo .floating-stat-number {
  font-size: clamp(18px, 2.4vw, 26px);
}

.floating-logo.larger-logo .floating-stat-label {
  font-size: clamp(7.5px, 0.8vw, 10px);
}

@keyframes floatLogo {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(30px, -40px) rotate(8deg) scale(1.05);
  }
  40% {
    transform: translate(-25px, -20px) rotate(-6deg) scale(0.98);
  }
  60% {
    transform: translate(15px, 35px) rotate(4deg) scale(1.02);
  }
  80% {
    transform: translate(-20px, 10px) rotate(-3deg) scale(0.99);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.model-cards span,
.card-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card p,
.model-cards p,
.deliverable span,
.audience-card li,
.faq p,
.footer p {
  color: var(--muted);
}

.deliverable strong,
.deliverable span {
  display: block;
}

.soft,
.problem {
  background: rgba(255, 253, 249, 0.62);
  border-top: 1px solid rgba(228, 216, 200, 0.58);
  border-bottom: 1px solid rgba(228, 216, 200, 0.58);
}

.soft {
  padding-top: 54px;
  padding-bottom: 54px;
}


.problem {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 16%, rgba(180, 90, 69, 0.16), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(185, 132, 67, 0.14), transparent 30%),
    linear-gradient(135deg, #fffaf3 0%, #f4e8d9 52%, #fffdf9 100%);
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(228, 216, 200, 0.7);
  border-bottom: 1px solid rgba(228, 216, 200, 0.7);
  color: var(--ink);
}

.problem h2 strong,
.problem h2 em {
  font-style: normal;
  color: var(--negative);
  text-shadow: 0 10px 30px rgba(180, 90, 69, 0.14);
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(23, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 15, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.problem::after { display: none; }

.problem-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(18px, 3vw, 32px);
  text-align: center;
}

.problem-headline {
  width: 100%;
  text-align: left;
}

.problem h2 {
  margin: 0;
  max-width: 28ch;
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.problem-label {
  display: block;
  font-size: 1.1em;
  margin-bottom: 14px;
  color: var(--black);
}

.problem-narrative {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.78));
  border: 1px solid rgba(180, 90, 69, 0.18);
  border-left: 6px solid var(--negative);
  border-radius: 26px;
  box-shadow:
    0 22px 60px rgba(67, 47, 28, 0.12),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
}

.problem-line {
  margin: 0;
  color: #40362d;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.problem-line + .problem-line {
  padding-top: 22px;
  border-top: 1px solid rgba(180, 90, 69, 0.12);
}

.problem-line.problem-punch {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.problem-line strong {
  color: #8f3929;
  background: linear-gradient(180deg, transparent 56%, rgba(180, 90, 69, 0.22) 56%);
  padding: 0 0.06em;
}

.problem-line.problem-punch strong {
  background: linear-gradient(180deg, transparent 72%, rgba(180, 90, 69, 0.22) 52%);
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.model-cards article,
.audience-card,
.faq details,
.contact-box,
.archive-preview,
.deliverable {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 16px 44px rgba(67, 47, 28, 0.07);
}

.card {
  padding: 30px;
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
}

.problem-evidence {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(16px, 2.6vw, 26px);
  margin: 0;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 2.8vw, 26px);
  text-align: left;
  background: rgba(255, 253, 249, 0.72);
  border: 1px dashed rgba(180, 90, 69, 0.32);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(67, 47, 28, 0.06);
}

.problem-evidence img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
  opacity: 0.92;
  filter: saturate(0.82) contrast(1.02);
}

.problem-evidence-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-evidence-intro {
  margin: 0;
  color: #473a2f;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.problem-evidence figcaption {
  margin: 0;
  color: #473a2f;
  font-size: clamp(13px, 1.05vw, 15px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}

.problem-evidence figcaption strong {
  color: #9b3927;
}

.problem-cta {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(185, 132, 67, 0.16);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.8);
}

.problem-cta p {
  max-width: 580px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

.problem-cta-button {
  z-index: 1;
}

@media (max-width: 760px) {
  .problem {
    min-height: 0;
    align-items: stretch;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .problem-stage {
    gap: 28px;
    padding-block: 18px;
  }

  .problem h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 0.98;
    max-width: none;
  }

  .problem-narrative {
    padding: 24px;
    border-left-width: 5px;
    border-radius: 24px;
  }

  .problem-line {
    font-size: 17px;
  }

  .problem-line.problem-punch {
    font-size: clamp(22px, 7vw, 30px);
  }

  .problem-evidence {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
  }

  .problem-evidence img {
    margin-inline: auto;
    max-width: 200px;
  }

  .problem-evidence-body {
    align-items: center;
  }
}

/* ===== La Soluzione (mirror di .problem in verde) ===== */
.solution {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(111, 138, 91, 0.20), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(154, 107, 52, 0.10), transparent 32%),
    linear-gradient(135deg, #fffdf9 0%, #eef1e2 52%, #fffaf3 100%);
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(228, 216, 200, 0.7);
  border-bottom: 1px solid rgba(228, 216, 200, 0.7);
  color: var(--ink);
}

.solution h2 strong,
.solution h2 em {
  font-style: normal;
  color: var(--positive);
  text-shadow: 0 10px 30px rgba(111, 138, 91, 0.18);
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(23, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 15, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.solution::after { display: none; }

.solution-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-block: clamp(18px, 3vw, 32px);
  text-align: center;
}

.solution-narrative {
  width: 100%;
}

.solution-headline {
  width: 100%;
  text-align: left;
}

.solution h2 {
  margin: 0;
  max-width: 28ch;
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.solution-label {
  display: block;
  font-size: 1.1em;
  margin-bottom: 14px;
  color: var(--black);
}

.solution-narrative {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.78));
  border: 1px solid rgba(111, 138, 91, 0.22);
  border-left: 6px solid var(--positive);
  border-radius: 26px;
  box-shadow:
    0 22px 60px rgba(67, 47, 28, 0.12),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
}

.solution-line {
  margin: 0;
  color: #3a4031;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.solution-line + .solution-line {
  padding-top: 22px;
  border-top: 1px solid rgba(111, 138, 91, 0.16);
}

.solution-line.solution-punch {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.solution-line strong {
  color: #4d6a3a;
  background: linear-gradient(180deg, transparent 76%, rgba(111, 138, 91, 0.26) 56%);
  padding: 0 0.06em;
}

.solution-line.solution-punch strong {
  background: linear-gradient(180deg, transparent 62%, rgba(111, 138, 91, 0.36) 62%);
}

.solution-evidence {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(22px, 3vw, 32px);
  margin: 0;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  text-align: center;
  background: rgba(255, 253, 249, 0.72);
  border: 1px dashed rgba(111, 138, 91, 0.36);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(67, 47, 28, 0.06);
}

.solution-evidence img {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
  opacity: 0.94;
  filter: saturate(0.9) contrast(1.02);
}

.solution-evidence-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
  margin-inline: auto;
}

.solution-evidence-header h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.solution-evidence-intro {
  margin: 0;
  color: #3f4733;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.solution-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  text-align: left;
}

.solution-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2vw, 26px);
  background: linear-gradient(160deg, rgba(255, 253, 249, 0.96), rgba(238, 241, 226, 0.6));
  border: 1px solid rgba(111, 138, 91, 0.22);
  border-radius: 18px;
  box-shadow:
    0 12px 28px rgba(67, 47, 28, 0.07),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-benefit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(67, 47, 28, 0.12),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
}

.solution-benefit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--positive), #4d6a3a);
  color: #fffdf9;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(77, 106, 58, 0.28);
}

.solution-benefit-title {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.solution-benefit-text {
  margin: 0;
  color: #3f4733;
  font-size: clamp(13px, 1.05vw, 15px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}

.solution-benefit-text strong {
  color: #4d6a3a;
  background: linear-gradient(180deg, transparent 80%, rgba(111, 138, 91, 0.26) 42%);
  padding: 0 0.06em;
  font-weight: 700;
}

.solution-cta {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(111, 138, 91, 0.22);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.8);
}

.solution-cta p {
  max-width: 580px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

.solution-cta-button {
  z-index: 1;
}

@media (max-width: 760px) {
  .solution {
    min-height: 0;
    align-items: stretch;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .solution-stage {
    gap: 28px;
    padding-block: 18px;
  }

  .solution h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 0.98;
    max-width: none;
  }

  .solution-narrative {
    padding: 24px;
    border-left-width: 5px;
    border-radius: 24px;
  }

  .solution-line {
    font-size: 17px;
  }

  .solution-line.solution-punch {
    font-size: clamp(22px, 7vw, 30px);
  }

  .solution-evidence {
    padding: 22px;
    gap: 20px;
  }

  .solution-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-benefit {
    padding: 20px;
  }
}

.problem-arrow-canvas {
  position: fixed;
  inset: 0;
  z-index: 12;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.problem-arrow-canvas.is-active {
  opacity: 1;
}

.archive-preview {
  overflow: hidden;
  margin-top: 50px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.archive-preview:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-preview-media img {
  transition: transform 0.7s var(--ease-out);
}

.archive-preview:hover .blog-preview-media img {
  transform: scale(1.04);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b27a;
  transition: transform 0.32s var(--ease-out), background 0.24s ease;
}

.browser-bar span:nth-child(1) { background: #d99683; }
.browser-bar span:nth-child(2) { background: #e0bd6e; }
.browser-bar span:nth-child(3) { background: #a3b58a; }

.archive-preview:hover .browser-bar span {
  transform: scale(1.15);
}

.archive-preview article {
  padding: 0;
}

.archive-preview h3 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.045em;
}

.blog-preview-card {
  background: var(--paper);
}

.blog-preview-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
}

.blog-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(23, 19, 15, 0.18) 100%);
}

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

.blog-preview-content {
  padding: clamp(26px, 4vw, 42px);
}

.blog-meta,
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-meta {
  margin-bottom: 18px;
}

.blog-meta span,
.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm);
  color: rgba(23, 19, 15, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-preview-content p {
  color: var(--muted);
  font-size: 17px;
}

.blog-tags {
  margin-top: 24px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 800;
  transition: color 0.22s ease, gap 0.22s var(--ease-out);
}

.blog-read-link:hover,
.blog-read-link:focus-visible {
  color: var(--gold-deep);
  gap: 12px;
}

.archive-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.archive-benefits div {
  padding: 18px 20px;
  border: 1px solid rgba(228, 216, 200, 0.78);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
  transition: transform 0.24s var(--ease-out), border-color 0.24s ease, background 0.24s ease;
}

.archive-benefits div:hover {
  transform: translateX(4px);
  border-color: rgba(185, 132, 67, 0.34);
  background: rgba(255, 253, 249, 0.92);
}

.archive-benefits strong,
.archive-benefits span {
  display: block;
}

.archive-benefits strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
}

.archive-benefits span {
  color: var(--muted);
}

.archive-column {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 580px;
  margin-inline: auto;
  padding: 40px;
}

.archive-text {
  padding: 0;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.deliverable {
  padding: 22px;
}

.deliverable strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.section-title {
  max-width: 850px;
  text-align: center;
}

.section-kicker-text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.particle-cta {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 8vw, 104px) var(--section-inline-padding);
  background: linear-gradient(180deg, #fffdf9 0%, #f8f1e7 58%, #fffdf9 100%);
  border-top: 1px solid rgba(228, 216, 200, 0.72);
  border-bottom: 1px solid rgba(228, 216, 200, 0.72);
}

.particle-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  right: -25%;
  z-index: 0;
  opacity: 0.85;
  background-image:
    repeating-linear-gradient(125deg, transparent 0 52px, rgba(185, 132, 67, 0.14) 53px, transparent 55px);
  will-change: transform;
  animation: ctaLinesDrift 40s linear infinite;
}

.particle-cta-content {
  position: relative;
  z-index: 3;
  max-width: 1060px;
  text-align: center;
}

.particle-cta-content h2 {
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 28px;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.particle-cta-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.particle-cta-content .button {
  margin-top: 34px;
}

.service-model {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 132, 67, 0.18), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(185, 132, 67, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #f4eadc 54%, #fff8ed 100%);
}

.service-model::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(185, 132, 67, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 132, 67, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.service-model-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
}

.service-model-note {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 253, 249, 0.64);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
}

.model-cards {
  display: grid;
  gap: 16px;
}

.phase-cards {
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: phase-counter;
}

.model-cards article {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.phase-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(18px, 2.2vw, 24px);
  row-gap: 4px;
  align-items: start;
  min-height: auto;
  padding: clamp(22px, 2.4vw, 28px) clamp(24px, 2.6vw, 30px);
  border: 1px solid rgba(185, 132, 67, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.97), rgba(255, 246, 233, 0.72));
  box-shadow:
    0 12px 28px rgba(67, 47, 28, 0.07),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.36s var(--ease-out), box-shadow 0.36s var(--ease-out), border-color 0.36s var(--ease-out);
  counter-increment: phase-counter;
  overflow: hidden;
  will-change: transform;
}

.model-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.7;
}

.phase-cards article::before {
  content: counter(phase-counter);
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: start;
  justify-self: start;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #fffdf9;
  color: var(--ink);
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 1;
  box-shadow:
    0 4px 12px rgba(67, 47, 28, 0.08),
    inset 0 0 0 3px #fffdf9,
    inset 0 0 0 4px rgba(185, 132, 67, 0.16);
}


/* Progressione cromatica: le tre fasi condividono la stessa palette ma si scaldano
   man mano che si scende, comunicando che sono correlate e in sequenza. */
.phase-cards article:nth-child(1) {
  background: linear-gradient(160deg, #f5e2b9 0%, #ecd29a 100%);
  border-color: rgba(185, 132, 67, 0.38);
}

.phase-cards article:nth-child(2) {
  background: linear-gradient(160deg, #fff5e2 0%, #f9e8cd 100%);
  border-color: rgba(185, 132, 67, 0.26);
}

.phase-cards article:nth-child(3) {
  background: linear-gradient(160deg, #fffdf9 0%, #fff7e8 100%);
  border-color: rgba(185, 132, 67, 0.18);
}

.phase-cards article:nth-child(1)::after {
  opacity: 1;
  width: 4px;
}

.phase-cards article:nth-child(2)::after {
  opacity: 0.75;
}

.phase-cards article:nth-child(3)::after {
  opacity: 0.45;
}

.model-cards article:hover {
  transform: translateX(6px);
  border-color: rgba(185, 132, 67, 0.34);
}

.phase-cards article:hover {
  transform: translate3d(0, -5px, 0) scale(1.014);
  border-color: rgba(185, 132, 67, 0.42);
  box-shadow:
    0 24px 48px rgba(67, 47, 28, 0.13),
    inset 0 1px 0 rgba(255, 253, 249, 0.95);
}

.phase-cards .phase-word {
  position: relative;
  top: auto;
  left: auto;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: block;
  margin: 2px 0 0;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}

.phase-cards .phase-number {
  position: relative;
  display: inline-block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase-cards h3,
.phase-cards p {
  position: relative;
  grid-column: 2;
}

.phase-cards h3 {
  margin-top: 0;
  margin-bottom: 0;
  grid-row: 2;
  align-self: start;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}

.phase-cards p {
  margin-top: 6px;
  margin-bottom: 0;
  grid-row: 3;
  align-self: start;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.method-mini {
  position: sticky;
  top: 98px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(185, 132, 67, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.96), rgba(255, 248, 237, 0.8));
  box-shadow:
    0 24px 64px rgba(67, 47, 28, 0.11),
    inset 0 1px 0 rgba(255, 253, 249, 0.96);
}

.method-mini .eyebrow {
  margin-bottom: 8px;
}

.method-mini h3 {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.3vw, 28px);
}

.method-mini-intro {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.method-mini-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.method-mini-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 19px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(185, 132, 67, 0.18), rgba(185, 132, 67, 0.55) 40%, rgba(185, 132, 67, 0.55) 60%, rgba(185, 132, 67, 0.12));
}

.method-mini-list div {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  padding: 4px 0;
  align-items: start;
  transition: transform 0.25s var(--ease-out);
}

.method-mini-list div:hover {
  transform: translateX(4px);
}

.method-mini-list div:not(:last-child) {
  padding-bottom: 18px;
}

.method-mini-list span {
  position: relative;
  z-index: 1;
  grid-row: span 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #fffdf9;
  color: var(--ink);
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow:
    0 4px 10px rgba(67, 47, 28, 0.07),
    inset 0 0 0 2px #fffdf9,
    inset 0 0 0 3px rgba(185, 132, 67, 0.14);
  transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.method-mini-list div:hover span {
  border-color: var(--gold-deep);
  box-shadow:
    0 7px 16px rgba(67, 47, 28, 0.13),
    inset 0 0 0 2px #fffdf9,
    inset 0 0 0 3px rgba(185, 132, 67, 0.24);
}

.method-mini-list strong {
  align-self: end;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.method-mini-list p {
  margin: 0;
  align-self: start;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

/* ------------------------------------------------------------------
   Investimento mensile — card unica integrata nella sezione particle-cta
   ------------------------------------------------------------------ */

.particle-cta-content .pricing-card {
  width: 100%;
  max-width: 1000px;
  margin: clamp(64px, 8vw, 96px) auto 0;
  text-align: center;
}

.pricing-card {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  border: 1.5px solid var(--gold);
  border-radius: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(155deg, rgba(255, 248, 237, 0.97) 0%, rgba(245, 226, 188, 0.96) 100%);
  box-shadow:
    0 32px 80px rgba(67, 47, 28, 0.20),
    0 8px 24px rgba(185, 132, 67, 0.14),
    inset 0 1px 0 rgba(255, 253, 249, 0.7),
    inset 0 0 0 1px rgba(255, 253, 249, 0.35);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: transform 0.38s var(--ease-out), box-shadow 0.46s var(--ease-out);
}

.pricing-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow:
    0 36px 88px rgba(67, 47, 28, 0.24),
    0 10px 28px rgba(185, 132, 67, 0.20),
    inset 0 1px 0 rgba(255, 253, 249, 0.7),
    inset 0 0 0 1px rgba(255, 253, 249, 0.35);
}

/* Header inside card */
.pricing-card .pricing-header {
  margin: 0 0 24px;
  padding: 0;
  border-bottom: 0;
  text-align: center;
}

.pricing-card .pricing-header .eyebrow {
  margin-bottom: 14px;
}

.particle-cta-content .pricing-card h2 {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.particle-cta-content .pricing-card .pricing-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

/* Fasce di prezzo */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}

.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 28px) clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(185, 132, 67, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 253, 249, 0.94) 0%, rgba(255, 248, 237, 0.55) 70%, transparent 100%),
    rgba(255, 253, 249, 0.5);
  box-shadow:
    0 10px 28px rgba(67, 47, 28, 0.04),
    inset 0 1px 0 rgba(255, 253, 249, 0.7);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: transform 0.34s var(--ease-out), border-color 0.34s var(--ease-out), box-shadow 0.42s var(--ease-out);
}

.pricing-tier::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 18px 44px rgba(67, 47, 28, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s var(--ease-out);
}

.pricing-tier:hover {
  transform: translate3d(0, -3px, 0) scale(1.02);
  border-color: rgba(185, 132, 67, 0.5);
  box-shadow:
    0 10px 28px rgba(67, 47, 28, 0.04),
    inset 0 1px 0 rgba(255, 253, 249, 0.85);
}

.pricing-tier:hover::after {
  opacity: 1;
}

.pricing-tier-custom {
  border-color: var(--gold);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 237, 0.96) 0%, rgba(247, 232, 205, 0.6) 70%, transparent 100%),
    rgba(255, 250, 240, 0.7);
}

.pricing-tier-amount {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-deep);
  text-align: left;
}

.pricing-tier-amount span {
  font-family: var(--title-font);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 2px;
}

.particle-cta-content .pricing-card .pricing-tier-desc {
  margin: 0;
  max-width: none;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.005em;
  text-align: left;
}

.pricing-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.pricing-tier-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: 0.005em;
}

.pricing-tier-check {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  filter: sepia(1) hue-rotate(15deg) saturate(2.5) brightness(0.9);
}

/* Cosa è incluso */
.pricing-included {
  margin: 0 0 30px;
}

.pricing-included-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--title-font);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.pricing-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 18px 18px;
  text-align: left;
  border: 1px solid rgba(185, 132, 67, 0.22);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow:
    0 4px 12px rgba(67, 47, 28, 0.05),
    inset 0 1px 0 rgba(255, 253, 249, 0.85);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: transform 0.32s var(--ease-out), border-color 0.32s ease, box-shadow 0.4s var(--ease-out);
}

.pricing-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 12px 26px rgba(67, 47, 28, 0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--ease-out);
}

.pricing-feature:hover {
  transform: translate3d(0, -2px, 0) scale(1.02);
  border-color: rgba(185, 132, 67, 0.42);
  box-shadow:
    0 4px 12px rgba(67, 47, 28, 0.05),
    inset 0 1px 0 rgba(255, 253, 249, 0.85);
}

.pricing-feature:hover::after {
  opacity: 1;
}

.pricing-feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #fffdf9;
  color: var(--ink);
  box-shadow:
    0 4px 10px rgba(67, 47, 28, 0.07),
    inset 0 0 0 2px #fffdf9,
    inset 0 0 0 3px rgba(185, 132, 67, 0.14);
}

.pricing-feature-icon svg {
  width: 19px;
  height: 19px;
}

.pricing-feature-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}

.particle-cta-content .pricing-card .pricing-feature-text {
  margin: 0;
  max-width: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.42;
}

/* Footer */
.pricing-footer {
  display: grid;
  gap: 16px;
}

.pricing-card .pricing-payment {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(228, 216, 200, 0.78);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.55);
  text-align: center;
}

.particle-cta-content .pricing-card .pricing-payment p {
  margin: 0 0 6px;
  max-width: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.particle-cta-content .pricing-card .pricing-payment p:last-child {
  margin-bottom: 0;
}

.pricing-card .pricing-payment strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.particle-cta-content .pricing-cta {
  width: 100%;
  margin-top: 0;
}

/* ------------------------------------------------------------------
   Domande frequenti — integrate nella sezione particle-cta
   ------------------------------------------------------------------ */

.particle-cta-content .particle-cta-faq {
  width: 100%;
  max-width: 1000px;
  margin: clamp(64px, 8vw, 96px) auto 0;
  text-align: left;
}

.particle-cta-content .particle-cta-faq .section-title {
  margin: 0 auto;
  text-align: center;
}

.particle-cta-content .particle-cta-faq .eyebrow {
  color: var(--gold);
}

.particle-cta-content .particle-cta-faq h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.particle-cta-content .particle-cta-faq .faq-list {
  margin: clamp(36px, 5vw, 46px) auto 0;
}

.particle-cta-content .particle-cta-faq .faq-list p {
  max-width: none;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 720px) {
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pricing-features {
    grid-template-columns: 1fr;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  isolation: isolate;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audience-card li {
  transition: transform 0.22s var(--ease-out), border-color 0.22s ease;
}

.audience-card li:hover {
  transform: translateX(3px);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
}

.audience-card-positive::before {
  background:
    radial-gradient(circle at 12% 0%, var(--positive-soft), transparent 38%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(246, 247, 240, 0.88));
}

.audience-card-negative::before {
  background:
    radial-gradient(circle at 88% 0%, var(--negative-soft), transparent 38%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(252, 241, 234, 0.85));
}

.audience-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 132, 67, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-card-negative .audience-badge {
  border-color: rgba(180, 90, 69, 0.34);
  background: rgba(180, 90, 69, 0.06);
  color: var(--negative);
}

.audience-card-positive .audience-badge {
  border-color: rgba(111, 138, 91, 0.34);
  background: rgba(111, 138, 91, 0.06);
  color: var(--positive);
}

.audience-card h3 {
  max-width: 360px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 42px);
}

.audience-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 16px 16px 16px 54px;
  border: 1px solid rgba(228, 216, 200, 0.72);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
}

.audience-card li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.audience-card-positive li::before {
  content: "✓";
  background: var(--positive-soft);
  color: var(--positive);
}

.audience-card-positive li {
  border-color: rgba(111, 138, 91, 0.28);
  background: rgba(255, 253, 249, 0.78);
}

.audience-card-negative li::before {
  content: "×";
  background: var(--negative-soft);
  color: var(--negative);
}

.audience-card-negative li {
  border-color: rgba(180, 90, 69, 0.26);
  background: rgba(255, 253, 249, 0.78);
}

.audience-card li strong {
  color: var(--ink);
  font-size: 16px;
}

.audience-card li span {
  color: var(--muted);
  line-height: 1.45;
}

.portrait img {
  width: 100%;
  height: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 46px;
}

.faq-item {
  position: relative;
  padding: 22px 26px;
  border: 1px solid rgba(185, 132, 67, 0.22);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 16px 44px rgba(67, 47, 28, 0.07);
}

.faq-icon {
  position: absolute;
  top: 22px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(185, 132, 67, 0.36);
  background: rgba(255, 253, 249, 0.72);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq-item h3 {
  margin: 0 0 14px;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
}

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

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact {
  padding-top: 58px;
  padding-bottom: 80px;
  background: #11100e;
}

.contact-box {
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #fff8ed 0%, var(--paper) 56%);
}

.contact-box h2 {
  max-width: 900px;
  margin-inline: auto;
}

.contact-box p {
  max-width: 760px;
  margin-inline: auto;
}

.contact-actions {
  justify-content: center;
}

.contact-actions .button {
  cursor: pointer;
  font: inherit;
}

/* Modulo richiesta consulenza */
.consulenza-modal[hidden] {
  display: none;
}

.consulenza-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.consulenza-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 15, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: consulenzaFade 0.24s var(--ease-out);
}

.consulenza-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(26px, 4vw, 40px);
  text-align: left;
  background: radial-gradient(circle at 50% 0%, #fff8ed 0%, var(--paper) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: consulenzaPop 0.26s var(--ease-out);
}

.consulenza-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.consulenza-close:hover,
.consulenza-close:focus-visible {
  color: var(--ink);
  background: var(--warm);
  border-color: var(--line);
}

.consulenza-dialog h3 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.1;
}

.consulenza-intro {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.consulenza-form {
  display: grid;
  gap: 16px;
}

.consulenza-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.consulenza-field {
  display: grid;
  gap: 6px;
}

.consulenza-field span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.consulenza-field input {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.consulenza-field input::placeholder {
  color: rgba(102, 95, 85, 0.7);
}

.consulenza-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 132, 67, 0.18);
}

.consulenza-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  cursor: pointer;
  font: inherit;
}

.consulenza-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
}

.consulenza-feedback {
  margin: 2px 0 0;
  min-height: 1.2em;
  font-size: 15px;
  font-weight: 600;
}

.consulenza-feedback.is-success {
  color: var(--positive);
}

.consulenza-feedback.is-error {
  color: var(--negative);
}

@keyframes consulenzaFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes consulenzaPop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.footer {
  position: relative;
  padding: 80px var(--section-inline-padding) 40px;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  background: #11100e;
  color: #fffdf9;
}

.footer::after {
  content: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer p {
  margin: 0;
  color: rgba(255, 253, 249, 0.68);
  line-height: 1.7;
}

.footer a {
  color: #fffdf9;
  font-weight: 700;
}

.footer h3 {
  margin: 0 0 18px;
  color: rgba(255, 253, 249, 0.9);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
  max-width: 440px;
}

.footer strong {
  display: block;
  color: #fffdf9;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer span {
  display: block;
  color: rgba(255, 253, 249, 0.56);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-resources,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-resources a {
  color: rgba(255, 253, 249, 0.72);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.22s ease, padding-left 0.22s var(--ease-out);
}

.footer-resources a:hover,
.footer-resources a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fffdf9;
  text-decoration: underline;
}

.footer-resources a:hover,
.footer-resources a:focus-visible {
  padding-left: 6px;
  text-decoration: none;
}

.footer-contact a {
  width: fit-content;
  margin-top: 2px;
  color: #fffdf9;
  text-decoration: none;
}

.footer-copyright {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 253, 249, 0.48);
  font-size: 13px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger reveal for lists/grids */
.js .reveal:nth-child(1) { transition-delay: 0ms; }
.js .reveal:nth-child(2) { transition-delay: 80ms; }
.js .reveal:nth-child(3) { transition-delay: 160ms; }
.js .reveal:nth-child(4) { transition-delay: 240ms; }
.js .reveal:nth-child(5) { transition-delay: 320ms; }
.js .reveal:nth-child(6) { transition-delay: 400ms; }

@keyframes ctaLinesDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(67.16px);
  }
}

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

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

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .particle-cta::after {
    animation: none;
  }

  .archive-preview:hover,
  .audience-card:hover,
  .pricing-card:hover,
  .model-cards article:hover,
  .phase-cards article:hover {
    transform: none;
  }

}

@media (max-width: 980px) {
  .section {
    padding: 82px var(--section-inline-padding);
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    padding-top: 58px;
  }

  .card-grid.three,
  .deliverables {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-model-layout {
    grid-template-columns: 1fr;
  }

  .method-mini {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand .brand-name {
    font-size: clamp(23px, 7.1vw, 28px);
    line-height: 1;
    white-space: nowrap;
  }

  .brand-name .brand-qualifier {
    font-size: 0.5em;
  }

  .mobile-wrapper .nav-links {
    left: 50%;
    right: auto;
    width: min(340px, calc(100vw - 28px));
    padding: 8px;
    gap: 2px;
    transform: translate(-50%, -12px) scale(0.98);
    transform-origin: top center;
  }

  .mobile-wrapper .nav-links.is-open {
    transform: translate(-50%, 0) scale(1);
  }

  .nav-links > a {
    gap: 10px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .nav-link-title {
    font-size: 14.5px;
  }

  .nav-link-desc {
    font-size: 11px;
    line-height: 1.15;
  }

  .nav-menu-cta {
    margin-top: 4px;
    padding-top: 8px;
  }

  .nav-menu-cta .button {
    min-height: 46px;
    padding-block: 10px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .lead {
    font-size: 19px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-logos {
    min-height: 300px;
  }

  .floating-logos-container {
    min-height: 280px;
  }

  .floating-logo {
    width: clamp(50px, 16vw, 66px);
    height: clamp(50px, 16vw, 66px);
  }

  .floating-logo.larger-logo {
    width: clamp(64px, 20vw, 84px);
    height: clamp(64px, 20vw, 84px);
  }

  .proof .split.reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof .split.reverse .section-heading {
    display: contents;
  }

  .proof .split.reverse .section-heading > .eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .proof .split.reverse .section-heading > h2 {
    order: 2;
    margin-bottom: 4px;
  }

  .proof .split.reverse .portrait {
    order: 3;
  }

  .proof .split.reverse .section-heading > .hero-actions {
    order: 4;
    margin-top: 4px;
  }

  .proof .split.reverse .section-heading > p:not(.eyebrow) {
    order: 5;
    margin-bottom: 0;
  }

  .problem,
  .solution {
    min-height: auto;
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .problem-stage,
  .solution-stage {
    gap: 18px;
    padding-block: 8px;
  }

  .problem-narrative,
  .solution-narrative {
    padding: 18px;
  }

  .problem-evidence {
    padding: 14px;
    gap: 14px;
  }

  .problem-evidence img {
    width: 100%;
    max-width: none;
  }

  .solution-evidence {
    padding: 16px;
    gap: 16px;
  }

  .social-proof {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .social-proof-column {
    gap: 22px;
    padding-block: 8px;
  }

  .particle-cta {
    padding: 64px var(--section-inline-padding);
  }

  .particle-cta-content h2 {
    font-size: clamp(36px, 11vw, 58px);
    letter-spacing: -0.06em;
  }

  .particle-cta-content .pricing-card h2 {
    font-size: clamp(24px, 6.4vw, 34px);
    letter-spacing: -0.03em;
  }

  .card-grid.three,
  .deliverables,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-model {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .method-mini {
    padding: 24px;
  }

  .audience-card,
  .card,
  .model-cards article {
    padding: 24px;
  }

  .phase-cards article {
    grid-template-columns: 46px 1fr;
    column-gap: 16px;
    padding: 20px 20px;
  }

  .phase-cards article::before {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .phase-cards .phase-word {
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }

  .phase-cards h3 {
    font-size: 18.5px;
  }

  .phase-cards p {
    font-size: 14px;
  }

  .method-mini-list {
    grid-template-columns: 1fr;
  }

  .method-mini-list::before {
    left: 17px;
  }

  .method-mini-list div {
    grid-template-columns: 36px 1fr;
    column-gap: 14px;
  }

  .method-mini-list span {
    width: 36px;
    height: 36px;
    font-size: 14.5px;
  }

  .footer {
    padding: 52px var(--section-inline-padding);
  }
}
