/* =========================
   VARIABILI / BASE
========================= */

:root {
  --black: #030304;
  --panel: #111219;
  --panel-soft: #15161d;
  --blue: #253d83;
  --blue-line: rgba(37, 61, 131, 0.48);
  --red: #ed2c2f;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --soft: rgba(255, 255, 255, 0.1);
  --section-x: clamp(20px, 6vw, 90px);
  --section-y: clamp(64px, 7vw, 96px);
}

@font-face {
  font-family: "A4SPEED";
  src: url("assets/A4SPEED-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

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

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.landing-hero h1,
.landing-intro-copy h2,
.landing-method-section h2,
.landing-request-copy h2 {
  font-family: "A4SPEED", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: var(--section-y) var(--section-x);
  background: var(--black);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.landing-intro-copy h2,
.landing-method-section .section-heading h2,
.landing-request-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.8vw, 40px);
}

.section-heading p,
.service-intro p,
.about-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(3, 3, 4, 0.86);
  border-bottom: 1px solid var(--blue-line);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(37, 61, 131, 0.24);
}

.brand-mark-horizontal img {
  width: clamp(170px, 14vw, 235px);
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e7e8ef;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: 4px;
  overflow: visible;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 2px;
  width: 300px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 5, 7, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 11px 13px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(237, 44, 47, 0.14);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown:hover summary,
.nav-dropdown:focus-within summary {
  color: var(--red);
}

.nav-services-link {
  color: inherit;
}

.nav-configurator-link {
  display: none;
  color: #ffffff !important;
}

.nav-configurator-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(237, 44, 47, 0.9);
  vertical-align: 1px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.header-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 44, 47, 0.85);
  background: rgba(237, 44, 47, 0.14);
}

.header-action {
  margin-left: 0;
  padding: 10px 24px;
  border: 1px solid rgba(237, 44, 47, 0.82);
  border-radius: 999px;
  background: rgba(237, 44, 47, 0.06);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 44px rgba(237, 44, 47, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-action:hover {
  transform: translateY(-2px);
  background: rgba(237, 44, 47, 0.16);
}

.header-configurator {
  padding-right: 19px;
  padding-left: 19px;
  border-color: rgba(237, 44, 47, 0.78);
  background: rgba(237, 44, 47, 0.1);
  box-shadow: none;
}

.header-configurator:hover {
  background: rgba(237, 44, 47, 0.22);
}

/* =========================
   HERO HOME
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px var(--section-x) 70px;
  overflow: hidden;
  background: #030304;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22) translateX(2%) translateY(-6%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(37, 61, 131, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(250px, 28vw);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}

.hero h1 {
  max-width: 860px;
  margin: 12px auto 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  opacity: 0;
  transform: scale(0.88);
  animation: heroTitleGrow 2.1s ease-out forwards 0.25s;
}

@keyframes heroTitleGrow {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px auto 0;
  color: #f2f2f4;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-configurator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 24px;
  border: 1px solid rgba(237, 44, 47, 0.88);
  border-radius: 999px;
  background: rgba(237, 44, 47, 0.92);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(237, 44, 47, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-configurator:hover {
  transform: translateY(-2px);
  background: #ff3034;
  box-shadow: 0 20px 56px rgba(237, 44, 47, 0.28);
}

.hero-whatsapp,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 24px;
  border: 1px solid rgba(237, 44, 47, 0.82);
  border-radius: 999px;
  background: rgba(3, 3, 4, 0.42);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(237, 44, 47, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-whatsapp:hover,
.button:hover {
  transform: translateY(-2px);
  background: rgba(237, 44, 47, 0.16);
}

.button.primary {
  background: rgba(237, 44, 47, 0.06);
}

.hero-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.86;
}

.hero-link:hover {
  color: var(--red);
  opacity: 1;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================
   ABOUT
========================= */

.about-section {
  padding-top: 5px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(20px, 6vw, 78px);
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 600px;
}

.about-image-main {
  width: 78%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
}

.about-image-overlap {
  position: absolute;
  right: 50px;
  bottom: 5%;
  width: 68%;
  height: 500px;
}

.about-copy h2 {
  max-width: 620px;
  color: var(--red);
}

/* =========================
   STATS
========================= */

.scroll-stats-section {
  padding: 80px var(--section-x);
  background: #1f1d1e;
}

.scroll-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  text-align: center;
}

.scroll-stat strong,
.scroll-stat span {
  color: var(--red);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  font-style: italic;
  line-height: 1;
}

.scroll-stat p {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   SLIDER PREMIUM / GALLERY
========================= */

.premium-gallery-section {
  position: relative;
}

.premium-slider {
  position: relative;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.14);
}

.premium-slider::-webkit-scrollbar {
  height: 7px;
}

.premium-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.premium-slider::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.premium-slide {
  position: relative;
  flex: 0 0 min(78vw, 560px);
  height: clamp(340px, 44vw, 500px);
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: 6px;
  scroll-snap-align: start;
  background: #111111;
}

.premium-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.88));
}

.premium-slide img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.premium-slide-copy {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 26px;
  transform: translateY(14px);
  opacity: 0.88;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.premium-slide-copy span,
.premium-service-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-slide-copy h3 {
  margin: 9px 0;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
}

.premium-slide-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.premium-slide:hover img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.premium-slide:hover .premium-slide-copy {
  transform: translateY(0);
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 52%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(3, 3, 4, 0.38);
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-arrow:hover {
  background: rgba(237, 44, 47, 0.82);
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-arrow-left {
  left: 22px;
}

.gallery-arrow-right {
  right: 22px;
}

/* =========================
   SERVIZI PREMIUM
========================= */

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 900px) {
  .services-section .premium-services-grid {
    width: calc(100% + 2cm);
    margin-left: -1cm;
    margin-right: -1cm;
  }
}

.premium-service-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 44, 47, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #050506;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.premium-service-card::before {
  content: attr(data-number);
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: 82px;
  line-height: 1;
}

.premium-service-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.18));
}

.premium-service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 44px 0 16px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.premium-service-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 44, 47, 0.54);
}

.service-card-with-image {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  isolation: isolate;
  background: #050506;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.service-card-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.52) 100%);
}

.service-card-with-image::after {
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 24px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.5), transparent);
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.04) brightness(0.78);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.service-card-image-performance,
.service-card-image-dinamica,
.service-card-image-protezione {
  object-position: center center;
}

.service-card-image-premium {
  object-position: center top;
}

.service-card-with-image span,
.service-card-with-image h3,
.service-card-with-image p {
  position: relative;
  z-index: 2;
}

.service-card-with-image span {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.service-card-with-image h3 {
  max-width: 430px;
  margin: 14px 0 12px;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.68);
}

/* Badge callout for revisioni page */
.callout-badge {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.callout-badge img {
  width: min(420px, 86%);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 6px 18px rgba(37, 61, 131, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.callout-badge img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48), 0 10px 28px rgba(37, 61, 131, 0.18);
}

.service-card-with-image p {
  max-width: 430px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
}

.service-card-with-image:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 44, 47, 0.66);
}

.service-card-with-image:hover .service-card-image {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.08) brightness(0.9);
}


/* =========================
   FORM GENERICI
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.contact-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.contact-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-social-icons img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #090a0e;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: #0c0d12;
  color: #ffffff;
  padding: 14px 16px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

/* =========================
   FORM REVISIONI - LABEL DENTRO I RIQUADRI
========================= */

.revision-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(237, 44, 47, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #090a0e;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.revision-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.34), transparent);
}

.form-heading {
  position: relative;
  z-index: 1;
}

.form-heading h3 {
  margin: 0 0 4px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
}

.form-field {
  position: relative;
  z-index: 1;
  display: block !important;
  min-height: 86px;
  padding: 16px 18px 12px;
  border: 1px solid rgba(37, 99, 235, 0.55);
  border-radius: 12px;
  background: rgba(8, 10, 16, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 38px;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.form-field textarea {
  min-height: 110px;
  padding-top: 4px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 8px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.form-field:focus-within {
  border-color: #1d6cff;
  box-shadow: 0 0 0 3px rgba(29, 108, 255, 0.25);
}

.date-field input[type="date"],
.date-field input[type="month"] {
  color-scheme: dark;
  cursor: pointer;
  padding-right: 52px;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator,
.date-field input[type="month"]::-webkit-calendar-picker-indicator {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 10px;
  background-color: #1263ff;
  cursor: pointer;
  opacity: 1;
  filter: invert(1) brightness(2.5);
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator:hover,
.date-field input[type="month"]::-webkit-calendar-picker-indicator:hover {
  background-color: #2f7dff;
  box-shadow: 0 0 0 4px rgba(18, 99, 255, 0.25);
}

.privacy-check {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.privacy-check input {
  width: auto !important;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--red);
}

.privacy-check a,
.legal-links a,
.legal-page a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.revision-form .button,
.revision-form .form-status {
  position: relative;
  z-index: 1;
}

/* =========================
   FORM PREVENTIVO
========================= */

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

.estimate-form label:has(textarea),
.estimate-form .privacy-check {
  grid-column: 1 / -1;
}

.estimate-form button,
.estimate-form .form-status {
  grid-column: 1 / -1;
}

/* =========================
   MARCHE / MARQUEE
========================= */

.brand-marquee-section {
  padding: 24px 0;
  background: #030304;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
  flex-shrink: 0;
}

.brand-group span {
  color: rgba(255, 255, 255, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
}

.brand-group span:hover {
  color: #ffffff;
}

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

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   VIDEO / REVIEWS / FAQ
========================= */

.dark-band,
.reviews-section {
  background: linear-gradient(180deg, #08090d, #050506);
}

.video-placeholder {
  position: relative;
  min-height: 400px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: 6px;
  background: #08090d;
}

.video-placeholder video {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.88), rgba(3, 3, 4, 0.24)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
}

.video-placeholder-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: clamp(30px, 5vw, 62px);
}

.video-placeholder-copy h3 {
  margin: 0;
  max-width: 460px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
}

.google-review-summary {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 34px;
  padding: 26px 34px;
  text-align: center;
  border: 1px solid var(--soft);
  border-radius: 6px;
  background: linear-gradient(180deg, #14151d, #08090d);
}

.google-review-summary strong {
  color: var(--red);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
}

.google-stars,
.rating {
  color: var(--red);
  font-size: 22px;
  letter-spacing: 4px;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.google-review-card,
.faq-item {
  padding: 22px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: #08090d;
}

.google-review-card p,
.faq-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

/* =========================
   MAPPA / PRIVACY / LEGAL
========================= */

.map-card {
  position: relative;
  min-height: 380px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.map-frame {
  position: absolute;
  inset: 0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.72) saturate(0.8);
  transition: filter 0.25s ease;
}

.map-card:hover iframe {
  filter: brightness(1) saturate(1);
}

.map-info {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100% - 36px));
  margin: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(16px);
}

.map-info h3 {
  margin: 0 0 8px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.map-card.map-link-card {
  min-height: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #08090d;
}

.map-link-card .map-info {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.legal-page {
  padding-top: 92px;
}

.legal-page .section {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1,
.legal-page h2 {
  font-family: "A4SPEED", Arial, sans-serif;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 52px);
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 18px;
}

.legal-page p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   FOOTER
========================= */
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 260px;
  overflow: visible;
}

.footer-brand img {
  display: block;
  width: clamp(160px, 14vw, 240px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: start;
  padding: 26px var(--section-x);
  border-top: 1px solid var(--blue-line);
  background: #030304;
  color: #c9c9cf;
  font-size: 13px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal {
  grid-column: 1 / -1;
  font-size: 12px;
}

/* =========================
   REVEAL ANIMATION
========================= */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================
   LANDING PAGES
========================= */

.landing-hero {
  position: relative;
  text-align: left;
  height: 560px;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 130px var(--section-x) 62px;
  background: #030304;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.58) saturate(0.9) contrast(1.08);
}

.landing-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(237, 44, 47, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88));
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0;
}

.landing-hero-content h1 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4.5vw, 62px);
}

.landing-hero-content p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.landing-intro-section {
  padding-top: 78px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 86% 0%, rgba(37, 61, 131, 0.15), transparent 28%),
    #030304;
}

.landing-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.landing-intro-copy h2,
.landing-request-copy h2,
.landing-method-section .section-heading h2 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 44px);
}

.landing-intro-copy p,
.landing-request-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.landing-includes {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #090a0e;
}

.landing-includes span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-includes ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-includes li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.landing-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--red);
}

.landing-method-section {
  padding-top: 70px;
  padding-bottom: 82px;
  background: linear-gradient(180deg, #050506, #030304);
}

.landing-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.landing-method-grid article {
  min-height: 220px;
  padding: 28px;
  background: #06070a;
}

.landing-method-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.landing-method-grid h3 {
  margin: 46px 0 14px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  text-transform: uppercase;
}

.landing-method-grid p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.landing-request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  padding-top: 78px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 78% 10%, rgba(237, 44, 47, 0.12), transparent 28%),
    #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   INSTAGRAM
========================= */

.instagram-section {
  background: #030304;
}

.instagram-live-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 10%, rgba(237, 44, 47, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #08090d;
}

.instagram-live-card h2 {
  max-width: 680px;
  margin: 0 0 14px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.instagram-live-card p:not(.section-kicker) {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.instagram-live-action {
  min-width: 240px;
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(237, 44, 47, 0.5);
  border-radius: 10px;
  background: rgba(237, 44, 47, 0.06);
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.instagram-live-action img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.instagram-live-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.instagram-live-action strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-live-action:hover {
  transform: translateY(-3px);
  background: rgba(237, 44, 47, 0.14);
  border-color: rgba(237, 44, 47, 0.9);
}

.instagram-work-section {
  position: relative;
  overflow: hidden;
}

.instagram-embed-slider {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  margin-top: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.14);
}

.instagram-embed-slider::-webkit-scrollbar {
  height: 7px;
}

.instagram-embed-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.instagram-embed-slider::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.instagram-embed-slider .instagram-media {
  flex: 0 0 min(82vw, 430px) !important;
  min-width: min(82vw, 430px) !important;
  width: min(82vw, 430px) !important;
  max-width: 430px !important;
  margin: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  scroll-snap-align: start;
  background: #08090d !important;
}

.instagram-work-section .gallery-arrow {
  top: 58%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1120px) {
  .desktop-nav {
    display: flex;
  }

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


  .revision-copy h2 {
    font-size: clamp(40px, 8vw, 74px);
  }

  .revision-highlights {
    grid-template-columns: 1fr;
  }

  .revision-highlights > div {
    min-height: auto;
  }

  .revision-highlights strong {
    font-size: 30px !important;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .about-layout,
  .contact-layout,
  .revision-layout,
  .google-review-grid,
  .premium-services-grid,
  .landing-intro-grid,
  .landing-request-section,
  .landing-method-grid {
    grid-template-columns: 1fr;
  }

  .revision-topline,
  .revision-steps {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: auto;
  }

  .about-image-main,
  .about-image-overlap {
    position: static;
    width: 100%;
    height: 300px;
    margin-bottom: 14px;
  }

  .scroll-stats {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    height: auto;
    min-height: 520px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .revision-copy > p {
    font-size: 15px;
  }

  .api-layout,
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .estimate-form {
    grid-template-columns: 1fr;
  }

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

  .instagram-live-action {
    min-width: 0;
    width: 100%;
  }

  .instagram-embed-slider {
    gap: 14px;
    padding-bottom: 22px;
  }

  .instagram-embed-slider .instagram-media {
    flex-basis: 86vw !important;
    min-width: 86vw !important;
    width: 86vw !important;
  }

  .instagram-work-section .gallery-arrow {
    top: 60%;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    gap: 12px;
  }

  .hero-configurator,
  .hero-whatsapp {
    width: min(100%, 330px);
  }

  .hero-configurator {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .gallery-arrow {
    top: 55%;
    width: 38px;
    height: 38px;
    font-size: 36px;
  }

  .gallery-arrow-left {
    left: 12px;
  }

  .gallery-arrow-right {
    right: 12px;
  }

  .map-card.map-link-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .revision-copy h2 {
    font-size: clamp(36px, 13vw, 56px);
  }

  .revision-highlights > div {
    padding: 26px 24px;
  }

  .revision-highlights strong {
    font-size: 27px !important;
  }

  .revision-highlights span {
    font-size: 13px !important;
  }

  .revision-form {
    padding: 18px;
  }

  .form-field {
    min-height: 82px;
    padding: 15px 16px 12px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 11px 16px;
  }

  .brand-mark-horizontal img {
    width: 165px;
  }

  .header-socials {
    display: none;
  }

  .header-action {
    margin-left: auto;
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 115px 18px 54px;
  }

  .hero-logo {
    width: 110px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .map-info {
    margin: 18px;
    padding: 18px;
  }

  .landing-hero {
    min-height: 500px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-hero-content h1 {
    font-size: 32px;
  }
}
/* =========================
   FIX CARD REVISIONI COMPATTE
========================= */

.revision-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.revision-highlights > div {
  min-width: 0;
  min-height: 145px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 44, 47, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #08090d;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.revision-highlights strong {
  display: block;
  max-width: 100%;
  margin: 0 0 16px;

  color: #ffffff;
  font-family: inherit !important;
  font-size: clamp(18px, 1.65vw, 20px) !important;
  line-height: 1.12 !important;
  font-weight: 600;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;

  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.revision-highlights span {
  display: block;
  max-width: 100%;

  color: rgba(255, 255, 255, 0.62);
  font-family: inherit !important;
  font-size: clamp(12px, 0.85vw, 14px) !important;
  line-height: 1.38 !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   FIX STEP 01 02 03 PIU COMPATTI
========================= */

.revision-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.revision-steps article {
  min-height: 126px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.revision-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.revision-steps strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.revision-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================
   NOTA SOTTO PIU VICINA
========================= */

.revision-note {
  max-width: 760px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

/* =========================
   RESPONSIVE CARD REVISIONI
========================= */

@media (max-width: 1100px) {
  .revision-highlights {
    grid-template-columns: 1fr;
  }

  .revision-highlights > div {
    min-height: auto;
    padding: 22px 24px;
  }

  .revision-highlights strong {
    font-size: 24px !important;
  }

  .revision-highlights span {
    font-size: 13px !important;
  }
}

@media (max-width: 900px) {
  .revision-steps {
    grid-template-columns: 1fr;
  }

  .revision-steps article {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .revision-highlights {
    gap: 14px;
  }

  .revision-highlights > div {
    padding: 20px 22px;
  }

  .revision-highlights strong {
    font-size: 22px !important;
  }

  .revision-highlights span {
    font-size: 12px !important;
  }
}
/* =========================
   PREVIEW REVISIONI HOME
========================= */

.home-revision-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 44, 47, 0.16), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(37, 61, 131, 0.22), transparent 34%),
    linear-gradient(180deg, #050506, #08090d);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-revision-preview-inner {
  max-width: 980px;
}

.home-revision-preview h2 {
  max-width: 820px;
  margin: 0 0 20px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.04;
  text-transform: uppercase;
}

.home-revision-preview p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-revision-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 560px) {
  .home-revision-preview h2 {
    font-size: clamp(32px, 11vw, 50px);
  }

  .home-revision-preview-actions .button {
    width: 100%;
  }
}
/* =========================
   FAQ PREVIEW HOME
========================= */

.faq-preview-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 44, 47, 0.12), transparent 30%),
    linear-gradient(180deg, #08090d, #050506);
}

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

.faq-preview-grid .faq-item {
  min-height: 170px;
}

.faq-preview-action {
  margin-top: 28px;
}

/* =========================
   FAQ PREVIEW HOME - PREMIUM
========================= */

.faq-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 44, 47, 0.16), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(37, 61, 131, 0.18), transparent 34%),
    linear-gradient(180deg, #050506, #08090d);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-preview-section::before {
  content: "FAQ";
  position: absolute;
  right: -1vw;
  top: 20px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(90px, 16vw, 240px);
  line-height: 0.8;
  pointer-events: none;
}

.faq-preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}

.faq-preview-copy {
  max-width: 620px;
}

.faq-preview-copy h2 {
  margin: 0 0 20px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 1.02;
  text-transform: uppercase;
}

.faq-preview-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-preview-button {
  margin-top: 30px;
}

.faq-preview-list {
  display: grid;
  gap: 14px;
}

.faq-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
  min-height: 118px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 94% 12%, rgba(237, 44, 47, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #08090d;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.faq-preview-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-preview-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 44, 47, 0.55);
  border-radius: 999px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.faq-preview-card h3 {
  max-width: 760px;
  margin: 0 34px 8px 0;
  color: #ffffff;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.32;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-preview-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.faq-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 44, 47, 0.55);
  background:
    radial-gradient(circle at 94% 12%, rgba(237, 44, 47, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    #090a0e;
}

.faq-preview-card:hover::after {
  transform: translate(4px, -50%) rotate(-45deg);
  border-color: #ffffff;
}

/* Responsive FAQ preview */

@media (max-width: 1000px) {
  .faq-preview-layout {
    grid-template-columns: 1fr;
  }

  .faq-preview-copy {
    max-width: 760px;
  }

  .faq-preview-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .faq-preview-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .faq-preview-card::after {
    top: 28px;
    right: 22px;
  }

  .faq-preview-card h3 {
    margin-right: 28px;
    font-size: 15px;
  }

  .faq-preview-card p {
    font-size: 13px;
  }

  .faq-preview-button {
    width: 100%;
  }
}
/* =========================
   FAQ LANDING
========================= */

.faq-landing-section {
  padding-top: clamp(130px, 10vw, 170px);
  background:
    radial-gradient(circle at 88% 8%, rgba(237, 44, 47, 0.16), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(37, 61, 131, 0.22), transparent 34%),
    linear-gradient(180deg, #050506, #08090d);
  min-height: 100vh;
}

.faq-landing-hero {
  max-width: 980px;
  margin-bottom: 42px;
}

.faq-landing-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  text-transform: uppercase;
}

.faq-landing-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faq-landing-list {
  display: grid;
  gap: 12px;
  max-width: 1080px;
}

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

@media (max-width: 560px) {
  .faq-landing-section {
    padding-top: 120px;
  }

  .faq-landing-hero h1 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .faq-landing-actions .button {
    width: 100%;
  }
}
#contatto,
#revisionForm {
  scroll-margin-top: 120px;
}
.faq-landing-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1.06 !important;
}
/* =========================
   HOT WRAP LOGO - HOME CARD
========================= */

.service-card-partner-logo {
  position: relative;
  z-index: 3;
  display: block;
  width: min(230px, 70%);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 16px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.55));
}

.service-card-with-image .service-card-partner-logo + span {
  margin-top: 2px;
}

/* =========================
   HOT WRAP LOGO - LANDING HERO
========================= */

.landing-partner-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(310px, 82vw);
  margin-bottom: 22px;
}

.landing-partner-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 105px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hotwrap-landing-hero .landing-hero-content h1 {
  max-width: 720px;
}

.hotwrap-landing-hero .landing-hero-content p:not(.section-kicker) {
  max-width: 620px;
}

@media (max-width: 560px) {
  .service-card-partner-logo {
    width: min(210px, 82%);
    max-height: 64px;
  }

  .landing-partner-logo-link {
    width: min(260px, 86vw);
  }

  .landing-hero-actions .button,
  .landing-hero-actions .hero-whatsapp {
    width: 100%;
  }
}
/* =========================
   FIX HERO HOT WRAP / PROTEZIONE
========================= */

.hotwrap-landing-hero {
  height: auto !important;
  min-height: 600px !important;
  padding-top: 135px !important;
  padding-bottom: 95px !important;
  align-items: center;
  overflow: hidden;
}

.hotwrap-landing-hero .landing-hero-content {
  max-width: 1120px;
}

.hotwrap-landing-hero .landing-hero-content h1 {
  max-width: 600px;
  font-size: clamp(46px, 6.4vw, 88px) !important;
  line-height: 1.02 !important;
}

.hotwrap-landing-hero .landing-hero-content p:not(.section-kicker) {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.65;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.landing-hero-actions .button,
.landing-hero-actions .hero-whatsapp {
  margin-top: 0;
}

.landing-hero-actions .configurator-landing-button {
  border-color: rgba(237, 44, 47, 0.9);
  background: rgba(237, 44, 47, 0.92);
  box-shadow: 0 18px 48px rgba(237, 44, 47, 0.2);
}

.landing-hero-actions .configurator-landing-button:hover {
  background: #ff3034;
  box-shadow: 0 20px 56px rgba(237, 44, 47, 0.3);
}
/* =========================
   FIX TITOLO HOT WRAP PIU PICCOLO
========================= */

.hotwrap-landing-hero .landing-hero-content h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.6vw, 64px) !important;
  line-height: 1.04 !important;
}
/* =========================
   EVOTRONIC LOGO - HOME CARD
========================= */

.service-card-partner-logo-evotronic {
  width: min(260px, 76%);
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.65));
}

/* =========================
   EVOTRONIC LOGO - LANDING HERO
========================= */

.evotronic-landing-hero {
  height: auto !important;
  min-height: 700px !important;
  padding-top: 135px !important;
  padding-bottom: 95px !important;
  align-items: center;
  overflow: hidden;
}

.landing-partner-logo-link-evotronic {
  display: inline-flex;
  align-items: center;
  width: min(360px, 84vw);
  margin-bottom: 24px;
}

.landing-partner-logo-evotronic {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.65));
}

.evotronic-landing-hero .landing-hero-content h1 {
  max-width: 820px;
  font-size: clamp(36px, 4.6vw, 64px) !important;
  line-height: 1.04 !important;
}

.evotronic-landing-hero .landing-hero-content p:not(.section-kicker) {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .evotronic-landing-hero {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }

  .landing-partner-logo-link-evotronic {
    width: min(280px, 84vw);
  }

  .evotronic-landing-hero .landing-hero-content h1 {
    font-size: clamp(36px, 12vw, 56px) !important;
  }

  .evotronic-landing-hero .landing-hero-content p:not(.section-kicker) {
    font-size: 15px;
  }

  .landing-hero-actions .button,
  .landing-hero-actions .hero-whatsapp {
    width: 100%;
  }
}
/* =========================
   SERVIZIO 02 - OFFICINA / REVISIONI CARD
========================= */

.service-card-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(237, 44, 47, 0.55);
  border-radius: 999px;
  background: rgba(237, 44, 47, 0.12);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.revision-service-badge {
  color: #ffffff;
}

.service-card-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.service-card-actions .button {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 10px;
}

.service-card-with-image .service-card-actions {
  margin-bottom: 22px;
}

@media (max-width: 560px) {
  .service-card-actions .button {
    width: 100%;
  }
}
.landing-includes-button {
  margin-top: 24px;
  width: 100%;
}
/* =========================
   FIX TITOLO LANDING FAQ
========================= */

.faq-landing-hero h1 {
  max-width: 600px;
  font-size: clamp(34px, 4.1vw, 58px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

.faq-landing-hero {
  margin-bottom: 34px;
}

.faq-landing-hero p:not(.section-kicker) {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .faq-landing-hero h1 {
    font-size: clamp(32px, 10vw, 48px) !important;
  }
}

/* =========================
   FIX HERO OFFICINA - TESTO PIÙ IN ALTO
========================= */

.officina-landing-hero {
  padding-top: 105px !important;
}
/* =========================
   FIX HERO OFFICINA - TESTO PIÙ IN BASSO
========================= */

.officina-landing-hero {
  padding-top: 200px !important;
}
/* =========================
   FIX HERO OFFICINA - TESTO PIÙ IN BASSO
========================= */

.officina-servizi-hero {
  padding-top: 200px !important;
}
/* =========================
   FIX HERO SERVIZI PREMIUM - TESTO PIÙ IN BASSO
========================= */

.premium-landing-hero {
  padding-top: 200px !important;
}
/* HERO SERVIZI PREMIUM - mostra più la parte bassa dell'immagine */
.premium-landing-hero > img {
  object-fit: cover;
  object-position: center 12% 50%;
}


/* =========================
   CONTENUTI ESTERNI
========================= */

.google-map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #08090d;
}

.google-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: brightness(0.85) saturate(0.9);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 720px) {
  .map-actions .button {
    width: 100%;
  }
}
/* =========================
   INSTAGRAM API · TUNING PREMIUM
========================= */

.tm-anchor-target {
  position: absolute;
  top: -120px;
}

.tm-instagram {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) var(--section-x)
    clamp(76px, 9vw, 128px);
  background:
    radial-gradient(circle at 86% 4%, rgba(237, 44, 47, 0.18), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(37, 61, 131, 0.2), transparent 34%),
    linear-gradient(180deg, #030304, #07080c 52%, #030304);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.tm-instagram::before {
  content: "";
  position: absolute;
  top: clamp(26px, 4vw, 64px);
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 44, 47, 0.62),
    rgba(255, 255, 255, 0.18),
    transparent
  );
  opacity: 0.5;
  pointer-events: none;
}

.tm-instagram::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.tm-instagram__ambient {
  position: absolute;
  z-index: -1;
  inset: -18% -8%;
  background:
    radial-gradient(circle at 88% 18%, rgba(237, 44, 47, 0.2), transparent 26%),
    radial-gradient(circle at 9% 72%, rgba(37, 61, 131, 0.28), transparent 30%);
  filter: blur(24px);
  pointer-events: none;
}

.tm-instagram__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto 38px;
}

.tm-instagram__intro {
  max-width: 900px;
}

.tm-instagram__intro h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.tm-instagram__intro h2 span {
  display: block;
  color: var(--red);
}

.tm-instagram__intro > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
}

.tm-instagram__profile {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  min-width: 290px;
  padding: 15px 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(6, 7, 10, 0.86);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tm-instagram__profile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), #7a0f14);
}

.tm-instagram__profile:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 44, 47, 0.62);
  background:
    linear-gradient(135deg, rgba(237, 44, 47, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(7, 8, 12, 0.94);
}

.tm-instagram__profile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(237, 44, 47, 0.42);
  border-radius: 12px;
  background: rgba(237, 44, 47, 0.1);
}

.tm-instagram__profile-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
}

.tm-instagram__profile-copy small,
.tm-instagram__profile-copy strong {
  display: block;
}

.tm-instagram__profile-copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-instagram__profile-copy strong {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.tm-instagram__profile-arrow {
  color: var(--red);
  font-size: 22px;
  transition: transform 0.25s ease;
}

.tm-instagram__profile:hover .tm-instagram__profile-arrow {
  transform: translate(3px, -3px);
}

.tm-instagram__panel {
  position: relative;
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 95% 0%, rgba(237, 44, 47, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #07080c;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
}

.tm-instagram__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.55) 22%, transparent 62%);
}

.tm-instagram__panel-top,
.tm-instagram__panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tm-instagram__panel-top {
  margin-bottom: 20px;
}

.tm-instagram__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-instagram__live i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(237, 44, 47, 0.95);
}

.tm-instagram__live i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(237, 44, 47, 0.45);
  border-radius: 50%;
  animation: tmIgPulse 1.8s ease-out infinite;
}

@keyframes tmIgPulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

.tm-instagram__controls {
  display: flex;
  gap: 9px;
}

.tm-instagram__control {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.tm-instagram__control:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(237, 44, 47, 0.72);
  background: rgba(237, 44, 47, 0.16);
}

.tm-instagram__control:disabled {
  opacity: 0.3;
  cursor: default;
}

.tm-instagram__viewport {
  margin: 0 calc(clamp(18px, 2.2vw, 30px) * -1);
}

.tm-instagram__track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(18px, 2.2vw, 30px);
  padding: 4px clamp(18px, 2.2vw, 30px) 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.1);
}

.tm-instagram__track::-webkit-scrollbar {
  height: 6px;
}

.tm-instagram__track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.tm-instagram__track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, #8b1117, var(--red));
}

.tm-ig-card {
  position: relative;
  flex: 0 0 min(360px, 78vw);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: #08090d;
  box-shadow: 0 22px 66px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tm-ig-card:first-child {
  flex-basis: min(540px, 82vw);
}

.tm-ig-card:hover {
  transform: translateY(-7px);
  border-color: rgba(237, 44, 47, 0.52);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5), 0 0 50px rgba(237, 44, 47, 0.07);
}

.tm-ig-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(237, 44, 47, 0.14), transparent 34%),
    #101116;
}

.tm-ig-card:first-child .tm-ig-card__media {
  aspect-ratio: 16 / 11;
}

.tm-ig-card__media::before,
.tm-ig-card__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.tm-ig-card__media::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 36%);
}

.tm-ig-card__media::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.65), transparent 74%);
}

.tm-ig-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(0.94) contrast(1.06) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.55s ease;
}

.tm-ig-card:hover .tm-ig-card__media img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.08) brightness(0.82);
}

.tm-ig-card__type,
.tm-ig-card__index {
  position: absolute;
  z-index: 3;
  top: 16px;
}

.tm-ig-card__type {
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 3, 4, 0.58);
  color: #ffffff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tm-ig-card__type::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(237, 44, 47, 0.85);
}

.tm-ig-card__index {
  right: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.tm-ig-card__open {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(237, 44, 47, 0.5);
  border-radius: 50%;
  background: rgba(3, 3, 4, 0.64);
  color: #ffffff;
  font-size: 18px;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, background 0.28s ease;
}

.tm-ig-card:hover .tm-ig-card__open {
  transform: translate(3px, -3px);
  background: rgba(237, 44, 47, 0.88);
}

.tm-ig-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 21px 21px 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 61, 131, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #08090d;
}

.tm-ig-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 13px;
}

.tm-ig-card__category,
.tm-ig-card__meta time {
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tm-ig-card__category {
  color: var(--red);
}

.tm-ig-card__meta time {
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}
.tm-ig-card__caption {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.83);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;

  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.tm-ig-card:first-child .tm-ig-card__caption {
  max-width: 470px;
  font-size: 16px;
}

.tm-ig-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-ig-card__cta i {
  color: var(--red);
  font-style: normal;
  transition: transform 0.25s ease;
}

.tm-ig-card:hover .tm-ig-card__cta i {
  transform: translateX(4px);
}

.tm-instagram__panel-bottom {
  padding-top: 19px;
}

.tm-instagram__panel-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.5;
}

.tm-instagram__panel-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-instagram__panel-bottom > a span {
  color: var(--red);
  font-size: 16px;
}

.tm-instagram__noscript {
  max-width: 1540px;
  margin: 18px auto 0;
  color: var(--muted);
}

.tm-instagram__noscript a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tm-ig-skeleton {
  flex: 0 0 min(360px, 78vw);
  min-height: 610px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: #08090d;
  scroll-snap-align: start;
}

.tm-ig-skeleton--featured {
  flex-basis: min(540px, 82vw);
}

.tm-ig-skeleton span,
.tm-ig-skeleton i {
  display: block;
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  background-size: 220% 100%;
  animation: tmIgShimmer 1.45s linear infinite;
}

.tm-ig-skeleton span {
  height: 430px;
  margin-bottom: 20px;
}

.tm-ig-skeleton--featured span {
  height: 365px;
}

.tm-ig-skeleton i {
  width: 80%;
  height: 13px;
  margin: 12px 6px;
}

.tm-ig-skeleton i:last-child {
  width: 54%;
}

@keyframes tmIgShimmer {
  to { background-position: -220% 0; }
}

@media (max-width: 900px) {
  .tm-instagram__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tm-instagram__profile {
    width: min(100%, 420px);
  }
}

@media (max-width: 700px) {
  .tm-instagram__intro h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .tm-instagram__panel {
    border-radius: 16px;
  }

  .tm-instagram__panel-top {
    align-items: flex-start;
  }

  .tm-instagram__live {
    max-width: 210px;
    line-height: 1.45;
  }

  .tm-instagram__control {
    width: 40px;
    height: 40px;
  }

  .tm-ig-card,
  .tm-ig-card:first-child,
  .tm-ig-skeleton,
  .tm-ig-skeleton--featured {
    flex-basis: 84vw;
  }

  .tm-ig-card:first-child .tm-ig-card__media,
  .tm-ig-card__media {
    aspect-ratio: 4 / 5;
  }

  .tm-ig-card__body {
    min-height: 174px;
    padding: 19px;
  }

  .tm-instagram__panel-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tm-ig-skeleton,
  .tm-ig-skeleton--featured {
    min-height: 570px;
  }

  .tm-ig-skeleton span,
  .tm-ig-skeleton--featured span {
    height: 390px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .tm-instagram__live i::after,
  .tm-ig-skeleton span,
  .tm-ig-skeleton i {
    animation: none;
  }

  .tm-instagram__track {
    scroll-behavior: auto;
  }
}

/* =========================
   FAQ HOME - TITOLO PIÙ PICCOLO
========================= */

.home-faq-section h2,
.faq-preview-section h2 {
  font-size: clamp(20px, 5vw, 40px) !important;
  line-height: 1.02 !important;
  max-width: 820px;
}
/* =========================
   MAPPA PREMIUM - VERSIONE PIÙ PULITA
========================= */

.premium-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 44, 47, 0.10), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(37, 61, 131, 0.12), transparent 26%),
    linear-gradient(180deg, #040405, #07080c);
}

.premium-map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.premium-map-copy {
  padding-top: 8px;
}

.premium-map-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(25px, 3.8vw, 45px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.premium-map-copy > p {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.75;
}

.premium-map-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

/* da “box grossi” a “righe premium” */
.premium-map-details div {
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.premium-map-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-map-details strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.premium-map-details p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.45;
}

.premium-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.premium-map-actions .button {
  min-width: 0;
}

/* card mappa protagonista */
.premium-map-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: #090a0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.premium-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.06), rgba(5, 5, 7, 0.18)),
    radial-gradient(circle at 86% 14%, rgba(237, 44, 47, 0.12), transparent 34%);
}

.premium-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.14) contrast(1.04) brightness(0.93) saturate(0.88);
}

/* card flottante più discreta */
.premium-map-floating-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 290px;
  padding: 16px 18px;
  border: 1px solid rgba(237, 44, 47, 0.26);
  border-radius: 16px;
  background: rgba(8, 9, 13, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.premium-map-floating-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-map-floating-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.premium-map-floating-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .premium-map-layout {
    grid-template-columns: 1fr;
  }

  .premium-map-card {
    min-height: 500px;
  }

  .premium-map-copy h2 {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .premium-map-copy h2 {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 0.98;
  }

  .premium-map-copy > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .premium-map-actions .button {
    width: 100%;
  }

  .premium-map-card {
    min-height: 380px;
    border-radius: 16px;
  }

  .premium-map-floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}
/* =========================
   RECENSIONI GOOGLE PREMIUM
========================= */

.google-review-heading {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.google-review-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 4.3vw, 42px) !important;
  line-height: 1.02 !important;
}

.google-review-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.google-review-premium-summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 34px 38px;
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(237, 44, 47, 0.16), transparent 32%),
    radial-gradient(circle at 12% 16%, rgba(37, 61, 131, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #07080c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.google-review-premium-summary::before {
  content: "GOOGLE";
  position: absolute;
  right: 26px;
  bottom: -10px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 1;
  pointer-events: none;
}

.google-review-score {
  position: relative;
  z-index: 1;
  min-width: 160px;
}

.google-review-score span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.google-review-score strong {
  display: inline-block;
  color: var(--red);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 600;
  line-height: 0.9;
}

.google-review-score small {
  display: inline-block;
  margin-left: 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.google-review-main {
  position: relative;
  z-index: 1;
}

.google-review-main .google-stars {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 30px;
  letter-spacing: 6px;
}

.google-review-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
}

.google-review-premium-summary .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* card recensioni più premium */
.google-review-grid {
  gap: 18px;
}

.google-review-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(237, 44, 47, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #07080c;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.google-review-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.24), transparent);
}

.google-review-card .rating {
  margin-bottom: 22px;
  color: var(--red);
  font-size: px;
  letter-spacing: 5px;
}

.google-review-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.google-review-card strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .google-review-premium-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .google-review-score {
    min-width: 0;
  }

  .google-review-premium-summary .button {
    width: 100%;
  }
}
/* =========================
   SPAZIO SOPRA RECENSIONI GOOGLE
========================= */

.google-review-heading {
  margin-top: clamp(80px, 8vw, 130px) !important;
  padding-top: clamp(50px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* =========================
   SERVIZIO 02 - BOTTONE COME LOGO CARD
========================= */

.service-card-partner-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 260px;
  min-height: 42px;
  margin: 0 0 18px;
  padding: 10px 18px;
  border: 1px solid rgba(237, 44, 47, 0.82);
  border-radius: 999px;
  background: rgba(3, 3, 4, 0.58);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(237, 44, 47, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.service-card-partner-button:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 44, 47, 1);
  background: rgba(237, 44, 47, 0.18);
}

.service-card-partner-button + span {
  margin-top: 2px;
}

@media (max-width: 560px) {
  .service-card-partner-button {
    max-width: 100%;
    font-size: 9px;
  }
}
/* =========================
   MAPPA COMPATTA PREMIUM
========================= */

.premium-map-section {
  padding-top: clamp(44px, 5vw, 70px) !important;
  padding-bottom: clamp(44px, 5vw, 70px) !important;
}

.premium-map-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr) !important;
  gap: clamp(26px, 4vw, 46px) !important;
  align-items: center !important;
}

.premium-map-copy {
  padding-top: 0 !important;
}

.premium-map-copy h2 {
  max-width: 520px !important;
  margin-bottom: 16px !important;
  font-size: clamp(28px, 3.2vw, 46px) !important;
  line-height: 1.02 !important;
}

.premium-map-copy > p {
  max-width: 500px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.premium-map-details {
  gap: 10px !important;
  margin-top: 18px !important;
}

.premium-map-details div {
  padding-bottom: 10px !important;
}

.premium-map-details span {
  font-size: 9px !important;
  margin-bottom: 5px !important;
}

.premium-map-details strong {
  font-size: 16px !important;
}

.premium-map-details p {
  font-size: 12px !important;
}

.premium-map-actions {
  gap: 10px !important;
  margin-top: 18px !important;
}

.premium-map-actions .button {
  min-height: 36px !important;
  padding: 8px 16px !important;
  font-size: 10px !important;
}

.premium-map-card {
  min-height: 360px !important;
  border-radius: 18px !important;
}

.premium-map-floating-card {
  left: 18px !important;
  bottom: 18px !important;
  max-width: 260px !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
}

.premium-map-floating-card span {
  font-size: 9px !important;
}

.premium-map-floating-card strong {
  font-size: 15px !important;
}

.premium-map-floating-card p {
  font-size: 11px !important;
}

@media (max-width: 1100px) {
  .premium-map-layout {
    grid-template-columns: 1fr !important;
  }

  .premium-map-card {
    min-height: 360px !important;
  }
}

@media (max-width: 640px) {
  .premium-map-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .premium-map-copy h2 {
    font-size: clamp(28px, 9vw, 40px) !important;
  }

  .premium-map-card {
    min-height: 300px !important;
  }

  .premium-map-actions .button {
    width: 100%;
  }
}
.officina-section,
.service-detail-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px;
}

.officina-layout,
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: center;
}

.officina-copy,
.service-detail-copy {
  max-width: 760px;
}

.officina-copy h1,
.service-detail-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.8vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.officina-copy p,
.service-detail-copy p {
  max-width: 680px;
  line-height: 1.7;
}

.officina-card,
.service-detail-card {
  width: 100%;
  max-width: 380px;
}
@media (max-width: 900px) {
  .officina-section,
  .service-detail-section {
    padding: 64px 22px;
  }

  .officina-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .officina-copy h1,
  .service-detail-copy h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .officina-card,
  .service-detail-card {
    max-width: 100%;
  }
}

/* Revisioni: form smart a 2 colonne, più compatto e leggibile */
.revision-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: clamp(22px, 2.4vw, 30px) !important;
  border-radius: 14px !important;
}

.revision-form .form-heading,
.revision-form .privacy-check,
.revision-form .button,
.revision-form .form-status {
  grid-column: 1 / -1 !important;
}

.revision-form .form-heading {
  margin-bottom: 4px !important;
}

.revision-form .form-heading h3 {
  font-size: clamp(26px, 2.5vw, 38px) !important;
  margin-bottom: 8px !important;
}

.revision-form .form-heading p:not(.section-kicker) {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.revision-form .form-field {
  min-height: 78px !important;
  padding: 14px 16px 12px !important;
  border-radius: 12px !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.revision-form .form-field span {
  margin-bottom: 7px !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
}

.revision-form .form-field input,
.revision-form .form-field select {
  min-height: 34px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.revision-form .form-field:focus-within {
  background: rgba(10, 13, 22, 0.98) !important;
  border-color: rgba(37, 108, 255, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(37, 108, 255, 0.18) !important;
}

.revision-form .date-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

.revision-form .button {
  width: 100% !important;
  margin-top: 6px !important;
}

@media (max-width: 1100px) {
  .officina-intro-section .landing-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .officina-intro-section .landing-includes {
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 760px) {
  .officina-landing-hero {
    height: auto !important;
    min-height: 420px !important;
    padding: 118px 22px 58px !important;
  }

  .officina-intro-section {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .officina-intro-section .landing-intro-copy h2 {
    font-size: clamp(34px, 11vw, 52px) !important;
  }

  .revision-form {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   UX V2 - PAGINA REVISIONI
   Layout più pulito, leggibile e meno aggressivo visivamente.
   ========================================================= */

.revision-clean-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 61, 131, 0.18), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(237, 44, 47, 0.14), transparent 28%),
    #030304;
}

.revision-clean-page .site-header {
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.revision-clean-page .brand-mark-horizontal img {
  width: clamp(168px, 12vw, 220px);
  height: auto;
  object-fit: contain;
}

.revision-clean-page .header-action {
  white-space: nowrap;
}

.revision-clean-hero {
  min-height: 100vh;
  padding: 118px var(--section-x) 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    radial-gradient(circle at 76% 24%, rgba(237, 44, 47, 0.1), transparent 26%),
    radial-gradient(circle at 18% 20%, rgba(37, 61, 131, 0.17), transparent 30%),
    #030304;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.revision-clean-container {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.revision-clean-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.revision-clean-badges span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.revision-clean-badges span:first-child {
  color: #ffffff;
  border-color: rgba(237, 44, 47, 0.4);
  background: rgba(237, 44, 47, 0.08);
}

.revision-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 520px);
  gap: clamp(44px, 5vw, 76px);
  align-items: start;
}

.revision-clean-copy {
  max-width: 650px;
  padding-top: 14px;
}

.revision-clean-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: none !important;
}

.revision-clean-lead {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 650;
  line-height: 1.55;
}

.revision-clean-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.revision-clean-points div {
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(9, 10, 14, 0.82);
}

.revision-clean-points strong {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.revision-clean-points span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.revision-clean-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.revision-clean-note {
  max-width: 600px;
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 2px solid rgba(237, 44, 47, 0.85);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.revision-clean-form {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 2.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    #0a0b10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.revision-clean-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.34), transparent);
}

.revision-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 2px;
}

.revision-form-head h2 {
  margin: 0 0 8px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}

.revision-form-head p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.revision-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ux-field {
  display: grid;
  gap: 8px;
}

.ux-field span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ux-field input,
.ux-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(37, 61, 131, 0.62);
  border-radius: 12px;
  background: rgba(5, 6, 10, 0.82);
  color: #ffffff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ux-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.ux-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 11px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.ux-field input:focus,
.ux-field select:focus {
  border-color: rgba(237, 44, 47, 0.82);
  background: rgba(10, 11, 16, 0.98);
  box-shadow: 0 0 0 3px rgba(237, 44, 47, 0.12);
}

.ux-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

.ux-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.86;
  cursor: pointer;
  filter: invert(1);
}

.revision-privacy {
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.revision-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
}

.revision-form-microcopy {
  position: relative;
  z-index: 1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.revision-clean-form .form-status {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .revision-clean-grid {
    grid-template-columns: 1fr;
  }

  .revision-clean-copy,
  .revision-clean-copy h1,
  .revision-clean-lead,
  .revision-clean-note {
    max-width: 820px;
  }

  .revision-clean-form {
    position: relative;
    top: auto;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .revision-clean-page .site-header {
    min-height: 70px;
  }

  .revision-clean-hero {
    padding: 98px 20px 54px;
  }

  .revision-clean-badges {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .revision-clean-badges span {
    justify-content: flex-start;
    text-align: left;
  }

  .revision-clean-copy h1 {
    font-size: clamp(34px, 10.8vw, 52px);
  }

  .revision-clean-lead {
    font-size: 16px;
  }

  .revision-clean-points {
    grid-template-columns: 1fr;
  }

  .revision-clean-points div {
    min-height: auto;
  }

  .revision-form-grid {
    grid-template-columns: 1fr;
  }

  .revision-clean-form {
    padding: 22px;
    border-radius: 18px;
  }
}

/* =========================================================
   UX V3 - REVISIONI ALLINEAMENTO SINISTRA
   Mantiene il testo allineato alla stessa linea visiva del sito.
   ========================================================= */

.revision-clean-container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.revision-clean-grid {
  grid-template-columns: minmax(0, 650px) minmax(420px, 520px);
  justify-content: space-between;
  gap: clamp(48px, 6vw, 110px);
}

.revision-clean-copy,
.revision-clean-copy h1,
.revision-clean-lead,
.revision-clean-note {
  text-align: left;
}

.revision-clean-badges {
  max-width: none;
}

.revision-clean-badges span {
  justify-content: flex-start;
  text-align: left;
}

.revision-clean-form {
  justify-self: end;
  width: 100%;
}

@media (max-width: 1120px) {
  .revision-clean-grid {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .revision-clean-form {
    justify-self: start;
  }
}


/* =========================================================
   CHI SIAMO - SLIDER DEFINITIVO 4 FOTO
   Slider a sinistra, testo a destra, senza hover e senza JS.
   ========================================================= */

.about-section {
  padding-top: clamp(72px, 7vw, 104px) !important;
  padding-bottom: clamp(72px, 7vw, 104px) !important;
}

.about-section .about-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) !important;
  gap: clamp(42px, 6vw, 82px) !important;
  align-items: center !important;
}

.about-section .about-images.about-slider {
  position: relative !important;
  width: 100% !important;
  max-width: 720px !important;
  min-height: clamp(420px, 38vw, 560px) !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #050506 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42) !important;
}

/* Ensure the about images container is visible (override reveal hiding) */
.about-section .about-images.about-slider.reveal,
.about-section .about-images.about-slider.is-visible,
.about-section .about-images.about-slider.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.about-section .about-slider::after {
  content: none !important;
}

.about-section .about-slide {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* DEBUG: force visible to verify images load */
  /* restored to intended animated state */
  opacity: 0 !important;
  transform: scale(1.03) !important;
}

.about-section .about-slide-1 {
  object-position: center center !important;
  animation: aboutSlide1 14s infinite ease-in-out;
}

.about-section .about-slide-2 {
  object-position: center 38% !important;
  animation: aboutSlide2 14s infinite ease-in-out;
}

.about-section .about-slide-3 {
  object-position: center center !important;
  animation: aboutSlide3 14s infinite ease-in-out;
}

.about-section .about-slide-4 {
  object-position: center center !important;
  animation: aboutSlide4 28s infinite ease-in-out;
}

.about-section .about-slide-5 {
  object-position: center center !important;
  animation: aboutSlide5 28s infinite ease-in-out;
}

.about-section .about-slide-6 {
  object-position: center center !important;
  animation: aboutSlide6 28s infinite ease-in-out;
}

.about-section .about-slide-7 {
  object-position: center center !important;
  animation: aboutSlide7 28s infinite ease-in-out;
}


@keyframes aboutSlide1 {
  0%, 11% { opacity: 1; transform: scale(1); }
  12%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide2 {
  0%, 11% { opacity: 0; transform: scale(1.03); }
  12%, 23% { opacity: 1; transform: scale(1); }
  24%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide3 {
  0%, 23% { opacity: 0; transform: scale(1.03); }
  24%, 35% { opacity: 1; transform: scale(1); }
  36%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide4 {
  0%, 35% { opacity: 0; transform: scale(1.03); }
  36%, 47% { opacity: 1; transform: scale(1); }
  48%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide5 {
  0%, 47% { opacity: 0; transform: scale(1.03); }
  48%, 59% { opacity: 1; transform: scale(1); }
  60%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide6 {
  0%, 59% { opacity: 0; transform: scale(1.03); }
  60%, 71% { opacity: 1; transform: scale(1); }
  72%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide7 {
  0%, 71% { opacity: 0; transform: scale(1.03); }
  72%, 83% { opacity: 1; transform: scale(1); }
  84%, 100% { opacity: 0; transform: scale(1.03); }
}

@keyframes aboutSlide8 {
  0%, 83% { opacity: 0; transform: scale(1.03); }
  84%, 95% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(1.03); }
}

.about-section .about-slider-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 20px !important;
  z-index: 6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  transform: translateX(-50%) !important;
}

.about-section .about-slider-dots span {
  width: 9px !important;
  height: 9px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.55) !important;
}

.about-section .about-slider-dots span:nth-child(1) { animation: aboutDot1 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(2) { animation: aboutDot2 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(3) { animation: aboutDot3 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(4) { animation: aboutDot4 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(5) { animation: aboutDot5 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(6) { animation: aboutDot6 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(7) { animation: aboutDot7 28s infinite ease-in-out; }
.about-section .about-slider-dots span:nth-child(8) { animation: aboutDot8 28s infinite ease-in-out; }

@keyframes aboutDot1 {
  0%, 11% { width: 26px; background: #ffffff; }
  12%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot2 {
  0%, 11% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  12%, 23% { width: 26px; background: #ffffff; }
  24%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot3 {
  0%, 23% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  24%, 35% { width: 26px; background: #ffffff; }
  36%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot4 {
  0%, 35% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  36%, 47% { width: 26px; background: #ffffff; }
  48%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot5 {
  0%, 47% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  48%, 59% { width: 26px; background: #ffffff; }
  60%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot6 {
  0%, 59% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  60%, 71% { width: 26px; background: #ffffff; }
  72%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot7 {
  0%, 71% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  72%, 83% { width: 26px; background: #ffffff; }
  84%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

@keyframes aboutDot8 {
  0%, 83% { width: 9px; background: rgba(255, 255, 255, 0.42); }
  84%, 95% { width: 26px; background: #ffffff; }
  96%, 100% { width: 9px; background: rgba(255, 255, 255, 0.42); }
}

.about-section .about-copy {
  max-width: 640px !important;
  margin: 0 !important;
}

.about-section .about-copy h2 {
  max-width: 640px !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}

.about-section .about-copy p {
  max-width: 640px !important;
}

@media (max-width: 900px) {
  .about-section .about-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .about-section .about-images.about-slider {
    max-width: 100% !important;
    min-height: 420px !important;
  }
}

@media (max-width: 560px) {
  .about-section .about-images.about-slider {
    min-height: 320px !important;
  }
}
/* FIX OFFICINA INTRO - PIÙ LARGA, NON CENTRATA STRETTA */

.officina-intro-section {
  padding-left: var(--section-x) !important;
  padding-right: var(--section-x) !important;
  padding-top: 0% !important;
}

.officina-intro-section .landing-intro-grid {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px) !important;
  gap: clamp(56px, 8vw, 140px) !important;
  align-items: center !important;
  justify-content: stretch !important;
}

.officina-intro-section .landing-intro-copy {
  max-width: 760px !important;
  padding-top: 10% !important;

}

.officina-intro-section .landing-intro-copy h2 {
  padding-top: -10% !important;
  max-width: 760px !important;
  font-size: clamp(22px, 4vw, 40px) !important;
  line-height: 1.02 !important;
}

.officina-intro-section .landing-intro-copy p {
  max-width: 720px !important;
}

.officina-intro-section .landing-includes {
  width: 100% !important;
  max-width: 420px !important;
  justify-self: end !important;
}

@media (max-width: 900px) {
  .officina-intro-section .landing-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .officina-intro-section .landing-includes {
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}
/* FORM CONSULENZA BREVE - UX FRIENDLY */

.short-consulting-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding: clamp(24px, 3vw, 34px);
}

.short-consulting-form label {
  gap: 10px;
}

.short-consulting-form input,
.short-consulting-form select,
.short-consulting-form textarea {
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 16px;
}

.short-consulting-form textarea {
  min-height: 130px;
  line-height: 1.55;
}

.short-consulting-form .full-field {
  grid-column: 1 / -1;
}

.short-consulting-form .button {
  min-height: 54px;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .short-consulting-form {
    grid-template-columns: 1fr;
  }
}
/* FIX FORM CONSULENZA - checkbox + bottone puliti */

.short-consulting-form .privacy-check {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 6px 0 12px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.short-consulting-form .privacy-check input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 18px !important;
  accent-color: var(--red);
}

.short-consulting-form .button {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 760px);
  min-height: 54px;
  margin-top: 10px;
  padding: 0 32px;
  border-radius: 999px;
}
/* =========================
   REVISIONI - UX LAYOUT CLEAN
========================= */

.revision-section {
  padding: 120px var(--section-x) 90px !important;
}

.revision-section::before {
  opacity: 0.35 !important;
}

.revision-topline {
  max-width: 1280px !important;
  margin: 0 auto 42px !important;
  display: flex !important;
  gap: 12px !important;
  border: 0 !important;
  background: transparent !important;
}

.revision-topline span {
  min-height: auto !important;
  width: auto !important;
  padding: 12px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  font-size: 10px !important;
  white-space: nowrap !important;
}


.revision-title {
  max-width: 720px !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 1.02 !important;
  margin-bottom: 24px !important;
}

.revision-intro-strong {
  max-width: 680px !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.revision-copy > p {
  max-width: 680px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* Nasconde le card dentro il hero se disturbano */
.revision-highlights {
  display: none !important;
}

/* Form più pulito */
.revision-form {
  width: 100% !important;
  max-width: 480px !important;
  padding: 32px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 44, 47, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    #0b0c10 !important;
  box-shadow: 0 28px 90px rgba(0,0,0,0.46) !important;
}

.revision-form .form-heading h3 {
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1.05 !important;
  margin-bottom: 8px !important;
}

.revision-form .form-heading p {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.66) !important;
}

.revision-form .form-grid,
.revision-form {
  gap: 16px !important;
}

.revision-form .form-field {
  min-height: 72px !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
}

.revision-form .form-field span {
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
}

.revision-form .form-field input,
.revision-form .form-field select {
  font-size: 15px !important;
}

.revision-form .privacy-check {
  margin-top: 2px !important;
  font-size: 12px !important;
}

.revision-form .button {
  width: 100% !important;
  min-height: 50px !important;
  margin-top: 8px !important;
  border-radius: 999px !important;
}

/* Mobile */
@media (max-width: 980px) {
  .revision-topline {
    flex-direction: column !important;
  }

  .revision-form {
    max-width: 100% !important;
  }
}

@media (max-width: 560px) {
  .revision-section {
    padding: 105px 18px 70px !important;
  }

  .revision-title {
    font-size: clamp(36px, 12vw, 56px) !important;
  }

  .revision-form {
    padding: 22px !important;
  }
}
/* REVISIONI - testo più largo verso il form */

.revision-clean-grid {
  grid-template-columns: minmax(0, 860px) minmax(420px, 500px) !important;
  gap: 500px !important;
  justify-content: left !important;
}

.revision-clean-copy {
  max-width: 860px !important;
}

.revision-clean-copy h1 {
  max-width: 860px !important;
}

.revision-clean-lead,
.revision-clean-note {
  max-width: 820px !important;
}
/* REVISIONI - titolo meno gigante */

.revision-clean-copy h1 {
  font-size: clamp(30px, 5vw, 60px) !important;
  line-height: 1.05 !important;
  max-width: 920px !important;
}

/* =========================================================
   FIX FINALE - REVISIONI SMART + MENU MOBILE
   Tiene la pagina più compatta e rende il menu usabile da telefono.
   ========================================================= */

.mobile-menu-toggle {
  display: none;
}

.revision-clean-page .revision-clean-hero {
  min-height: auto !important;
  padding: 118px clamp(22px, 5vw, 72px) 76px !important;
}

.revision-clean-page .revision-clean-container {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.revision-clean-page .revision-clean-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 0 34px !important;
}

.revision-clean-page .revision-clean-badges span {
  min-height: 36px !important;
  justify-content: center !important;
  padding: 9px 14px !important;
  font-size: 9px !important;
  line-height: 1.25 !important;
}

.revision-clean-page .revision-clean-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px) !important;
  gap: clamp(34px, 5vw, 68px) !important;
  align-items: start !important;
  justify-content: initial !important;
}

.revision-clean-page .revision-clean-copy {
  max-width: 620px !important;
  padding-top: 8px !important;
}

.revision-clean-page .revision-clean-copy h1 {
  max-width: 620px !important;
  margin: 0 0 18px !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.revision-clean-page .revision-clean-lead {
  max-width: 600px !important;
  margin-bottom: 22px !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  line-height: 1.65 !important;
  font-weight: 500 !important;
}

.revision-clean-page .revision-clean-note {
  max-width: 580px !important;
  margin-top: 22px !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.revision-clean-page .revision-clean-form {
  position: sticky !important;
  top: 92px !important;
  width: 100% !important;
  max-width: 440px !important;
  justify-self: end !important;
  gap: 14px !important;
  padding: 24px !important;
  border-radius: 18px !important;
}

.revision-clean-page .revision-form-head h2 {
  font-size: clamp(23px, 2vw, 30px) !important;
  line-height: 1.08 !important;
}

.revision-clean-page .revision-form-head p:not(.section-kicker) {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.revision-clean-page .revision-form-grid {
  gap: 11px !important;
}

.revision-clean-page .ux-field {
  gap: 6px !important;
}

.revision-clean-page .ux-field input,
.revision-clean-page .ux-field select {
  min-height: 44px !important;
  border-radius: 10px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}

.revision-clean-page .ux-field span {
  font-size: 9px !important;
  letter-spacing: 0.11em !important;
}

.revision-clean-page .revision-submit {
  min-height: 44px !important;
  font-size: 11px !important;
}

.revision-clean-page .revision-form-microcopy,
.revision-clean-page .revision-clean-form .form-status,
.revision-clean-page .revision-privacy {
  font-size: 11px !important;
}

@media (max-width: 1180px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    gap: 14px !important;
    min-height: 74px !important;
    padding: 10px 18px !important;
  }

  .brand-mark-horizontal img {
    width: clamp(150px, 22vw, 205px) !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle::before,
  .mobile-menu-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .mobile-menu-toggle {
    flex-direction: column;
    gap: 4px;
  }

  body.mobile-nav-open .mobile-menu-toggle span {
    opacity: 0;
  }

  body.mobile-nav-open .mobile-menu-toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  body.mobile-nav-open .mobile-menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .desktop-nav {
    position: fixed !important;
    top: 74px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    max-height: calc(100vh - 92px);
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(4, 4, 6, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
    overflow: auto !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.mobile-nav-open .desktop-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-nav > a,
  .desktop-nav summary {
    width: 100%;
    min-height: 44px;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .desktop-nav > .nav-configurator-link {
    display: flex !important;
    color: #ffffff !important;
    background: rgba(237, 44, 47, 0.12);
  }

  .desktop-nav > a:hover,
  .desktop-nav summary:hover {
    background: rgba(237, 44, 47, 0.12);
  }

  .nav-dropdown {
    display: block !important;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    margin: 0 0 6px !important;
    padding: 4px 0 4px 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    display: flex !important;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .header-socials {
    margin-left: auto !important;
  }

  .header-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 0 !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px !important;
  }

  .brand-mark-horizontal img {
    width: min(48vw, 168px) !important;
  }

  .header-socials {
    display: none !important;
  }

  .header-action {
    padding: 8px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.06em !important;
  }

  .desktop-nav {
    top: 68px !important;
  }

  .revision-clean-page .revision-clean-hero {
    padding: 92px 18px 52px !important;
  }

  .revision-clean-page .revision-clean-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .revision-clean-page .revision-clean-copy,
  .revision-clean-page .revision-clean-copy h1,
  .revision-clean-page .revision-clean-lead,
  .revision-clean-page .revision-clean-note,
  .revision-clean-page .revision-clean-form {
    max-width: 100% !important;
  }

  .revision-clean-page .revision-clean-copy h1 {
    font-size: clamp(27px, 8.8vw, 38px) !important;
  }

  .revision-clean-page .revision-clean-lead {
    font-size: 14px !important;
  }

  .revision-clean-page .revision-clean-badges {
    gap: 8px !important;
    margin-bottom: 24px !important;
  }

  .revision-clean-page .revision-clean-badges span {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .revision-clean-page .revision-clean-form {
    position: relative !important;
    top: auto !important;
    padding: 20px !important;
  }

  .revision-clean-page .revision-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* HOME ABOUT SLIDER - FOTO NUOVE + INDICATORI RACING */

.about-section .about-images.about-slider {
  isolation: isolate !important;
}

.about-section .about-slide {
  opacity: 0;
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.06) brightness(0.82);
  animation: none !important; /* JS-controlled slider */
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-section .about-slide-1 { object-position: center center !important; animation: aboutSlideRacing1 32s infinite ease-in-out both !important; }
.about-section .about-slide-2 { object-position: center center !important; animation: aboutSlideRacing2 32s infinite ease-in-out both !important; }
.about-section .about-slide-3 { object-position: center center !important; animation: aboutSlideRacing3 32s infinite ease-in-out both !important; }
.about-section .about-slide-4 { object-position: center center !important; animation: aboutSlideRacing4 32s infinite ease-in-out both !important; }
.about-section .about-slide-5 { object-position: center center !important; animation: aboutSlideRacing5 32s infinite ease-in-out both !important; }
.about-section .about-slide-6 { object-position: center center !important; animation: aboutSlideRacing6 32s infinite ease-in-out both !important; }
.about-section .about-slide-7 { object-position: center center !important; animation: aboutSlideRacing8 32s infinite ease-in-out both !important; }

.about-section .about-slide.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 3 !important;
}

/* Overlay fallback image (JS-controlled) */
.about-images .about-slide-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.6s ease;
  z-index: 5;
  display: block;
}
/* RESET DEFINITIVO SLIDER CHI SIAMO - USA SOLO QUESTA ANIMAZIONE */

.about-section .about-images.about-slider {
  position: relative !important;
  overflow: hidden !important;
}

.about-section .about-slide {
  position: absolute !important;
  inset: 0 !important;
  left: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  animation: none !important;
  will-change: left !important;
}

/* immagini: entrano da destra, restano, escono a sinistra */
.about-section .about-slide-1 { animation: cleanSlide1 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-2 { animation: cleanSlide2 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-3 { animation: cleanSlide3 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-4 { animation: cleanSlide4 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-5 { animation: cleanSlide5 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-6 { animation: cleanSlide6 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }
.about-section .about-slide-7 { animation: cleanSlide8 32s infinite cubic-bezier(0.76, 0, 0.24, 1) !important; }

@keyframes cleanSlide1 {
  0%, 10% { left: 0; }
  12.5%, 100% { left: -100%; }
}

@keyframes cleanSlide2 {
  0%, 10% { left: 100%; }
  12.5%, 22.5% { left: 0; }
  25%, 100% { left: -100%; }
}

@keyframes cleanSlide3 {
  0%, 22.5% { left: 100%; }
  25%, 35% { left: 0; }
  37.5%, 100% { left: -100%; }
}

@keyframes cleanSlide4 {
  0%, 35% { left: 100%; }
  37.5%, 47.5% { left: 0; }
  50%, 100% { left: -100%; }
}

@keyframes cleanSlide5 {
  0%, 47.5% { left: 100%; }
  50%, 60% { left: 0; }
  62.5%, 100% { left: -100%; }
}

@keyframes cleanSlide6 {
  0%, 60% { left: 100%; }
  62.5%, 72.5% { left: 0; }
  75%, 100% { left: -100%; }
}


@keyframes cleanSlide8 {
  0%, 85% { left: 100%; }
  87.5%, 97.5% { left: 0; }
  100% { left: -100%; }
}

/* PISTA SOTTO - UNA SOLA ANIMAZIONE */

.about-section .about-slider-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 22px !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-width: 270px !important;
  height: 30px !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  background: rgba(5, 5, 6, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(12px) !important;
  transform: translateX(-50%) !important;
}

.about-section .about-slider-dots::before,
.about-section .about-slider-dots::after {
  content: "" !important;
  width: 42px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent) !important;
}

.about-section .about-slider-dots span {
  width: 26px !important;
  height: 5px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.38) !important;
  transform: skewX(-22deg) !important;
  animation: none !important;
}

.about-section .about-slider-dots span:nth-child(1) { animation: cleanLine1 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(2) { animation: cleanLine2 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(3) { animation: cleanLine3 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(4) { animation: cleanLine4 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(5) { animation: cleanLine5 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(6) { animation: cleanLine6 32s infinite ease-in-out !important; }
.about-section .about-slider-dots span:nth-child(8) { animation: cleanLine8 32s infinite ease-in-out !important; }

@keyframes cleanLine1 {
  0%, 10% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  12.5%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine2 {
  0%, 10% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  12.5%, 22.5% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  25%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine3 {
  0%, 22.5% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  25%, 35% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  37.5%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine4 {
  0%, 35% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  37.5%, 47.5% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  50%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine5 {
  0%, 47.5% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  50%, 60% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  62.5%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine6 {
  0%, 60% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  62.5%, 72.5% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  75%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine7 {
  0%, 72.5% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  75%, 85% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  87.5%, 100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}

@keyframes cleanLine8 {
  0%, 85% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
  87.5%, 97.5% { width: 44px; background: #ef232a; box-shadow: 0 0 18px rgba(239, 35, 42, 0.9); }
  100% { width: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: none; }
}
/* SLIDER CHI SIAMO - CONTROLLATO DA JS */

.about-section .about-images.about-slider {
  position: relative !important;
  overflow: hidden !important;
}

.about-section .about-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  animation: none !important;
  transform: translateX(100%) !important;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1) !important;
}

.about-section .about-slide.is-active {
  transform: translateX(0) !important;
  z-index: 3 !important;
}

.about-section .about-slide.is-prev {
  transform: translateX(-100%) !important;
  z-index: 2 !important;
}

.about-section .about-slide.is-next {
  transform: translateX(100%) !important;
  z-index: 1 !important;
}

/* PISTA PREMIUM - INDICATORE SLIDER */

.about-section .about-slider-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 24px !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: min(72%, 360px) !important;
  height: 34px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.22), rgba(255,255,255,0.08)) center / 100% 1px no-repeat,
    rgba(5, 5, 6, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 16px 42px rgba(0,0,0,0.55) !important;
  backdrop-filter: blur(14px) !important;
  transform: translateX(-50%) !important;
}

.about-section .about-slider-dots::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  top: 50% !important;
  height: 2px !important;
  transform: translateY(-50%) skewX(-18deg) !important;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.18) 0 18px,
      transparent 18px 28px
    ) !important;
  opacity: 0.75 !important;
}

.about-section .about-slider-dots::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 18px !important;
  width: 42px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: #ef232a !important;
  box-shadow:
    0 0 14px rgba(239, 35, 42, 0.95),
    0 0 30px rgba(239, 35, 42, 0.45) !important;
  transform: translateY(-50%) skewX(-18deg) !important;
  animation: racingMarkerMove 28s infinite cubic-bezier(0.76, 0, 0.24, 1) !important;
}

/* nasconde i vecchi trattini singoli, resta solo la barra premium */
.about-section .about-slider-dots span {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
  animation: none !important;
}

/* SLIDER CHI SIAMO - TRATTINI RACING PREMIUM */

.about-section .about-slider-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 24px !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: rgba(5, 5, 6, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(12px) !important;
  transform: translateX(-50%) !important;
}

.about-section .about-slider-dots::before,
.about-section .about-slider-dots::after {
  display: none !important;
  content: none !important;
}

.about-section .about-slider-dots span {
  display: block !important;
  opacity: 1 !important;
  width: 34px !important;
  height: 4px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.28) !important;
  transform: skewX(-22deg) !important;
  animation: none !important;
  transition:
    width 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease !important;
}

.about-section .about-slider-dots span.is-active {
  width: 52px !important;
  background: #ef232a !important;
  box-shadow:
    0 0 12px rgba(239, 35, 42, 0.95),
    0 0 26px rgba(239, 35, 42, 0.45) !important;
}

@media (max-width: 560px) {
  .about-section .about-slider-dots {
    bottom: 16px !important;
    gap: 7px !important;
    padding: 8px 12px !important;
  }

  .about-section .about-slider-dots span {
    width: 22px !important;
    height: 3px !important;
  }

  .about-section .about-slider-dots span.is-active {
    width: 34px !important;
  }
}

@media (max-width: 560px) {
  .about-section .about-slider-dots {
    width: min(78%, 260px) !important;
    height: 30px !important;
    bottom: 18px !important;
  }

  .about-section .about-slider-dots::after {
    width: 34px !important;
  }
}
.revision-home-strip,
.revision-authorized {
  border-top: 1px solid rgba(38, 64, 130, 0.55);
  border-bottom: 1px solid rgba(38, 64, 130, 0.35);
  background: linear-gradient(135deg, rgba(17, 18, 25, 0.92), rgba(3, 3, 4, 0.98));
}

.revision-home-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(22px, 6vw, 90px);
}

.revision-home-strip h2,
.revision-authorized h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.2vw, 46px);
}

.revision-home-strip p {
  max-width: 780px;
  color: var(--muted);
}

.revision-authorized-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.revision-authorized-image {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b0c10;
}

.revision-authorized-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revision-authorized-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.revision-auth-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.revision-auth-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.045);
}

.revision-auth-list strong {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.revision-auth-list span {
  color: var(--muted);
}

.revision-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 820px) {
  .revision-home-strip,
  .revision-authorized-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .revision-authorized-image {
    min-height: 280px;
  }
}
/* HOME - REVISIONI AUTORIZZATE VERSIONE PIU COMPATTA */

.revision-home-strip {
  border-top: 1px solid rgba(37, 58, 120, 0.42);
  border-bottom: 1px solid rgba(37, 58, 120, 0.32);
  background:
    radial-gradient(circle at 86% 45%, rgba(239, 35, 42, 0.12), transparent 30%),
    linear-gradient(180deg, #050506 0%, #08090c 100%);
}

.revision-home-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  width: min(100% - 70px, 1500px);
  margin: 0 auto;
  padding: clamp(48px, 4.8vw, 72px) 0;
}

.revision-home-copy h2 {
  max-width: 420px;
  margin: 8px 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.050em;
  color: #fff;
}

.revision-home-copy p {
  max-width: 590px;
  margin: 0;
  color: rgba(235, 236, 242, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.revision-home-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 12px;
}

.revision-home-data div {
  min-height: 118px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
}

.revision-home-data strong {
  display: block;
  margin-bottom: 14px;
  color: #ef232a;
  font-family: "A4Speed", "Montserrat", Arial, sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.revision-home-data span {
  display: block;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.revision-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid #ef232a;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(239, 35, 42, 0.16);
  white-space: nowrap;
}

.revision-home-button:hover {
  background: #ef232a;
  box-shadow: 0 0 32px rgba(239, 35, 42, 0.34);
}

@media (max-width: 1250px) {
  .revision-home-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .revision-home-copy h2,
  .revision-home-copy p {
    max-width: 760px;
  }

  .revision-home-data {
    max-width: 760px;
  }

  .revision-home-button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .revision-home-inner {
    width: min(100% - 34px, 1500px);
    padding: 46px 0;
  }

  .revision-home-copy h2 {
    font-size: 34px;
  }

  .revision-home-data {
    grid-template-columns: 1fr;
  }

  .revision-home-data div {
    min-height: auto;
  }

  .revision-home-button {
    width: 100%;
  }
}
/* STATISTICHE HOME - PIU COMPATTE */

.scroll-stats,
.stats-section {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
  min-height: auto !important;
}

.stats-grid,
.scroll-stats-grid {
  align-items: center !important;
}

.scroll-stat {
  min-height: auto !important;
  padding: 0 !important;
}

.scroll-stat strong,
.scroll-stat span {
  font-size: clamp(54px, 6vw, 88px) !important;
  line-height: 0.9 !important;
  margin-bottom: 22px !important;
}

.scroll-stat p {
  font-size: 13px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
}

@media (max-width: 700px) {
  .scroll-stats,
  .stats-section {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .scroll-stat strong,
  .scroll-stat span {
    font-size: 54px !important;
    margin-bottom: 14px !important;
  }
}
/* REVISIONI HOME - SISTEMA PIU ORDINATO */

.revision-home-inner {
  grid-template-columns: minmax(280px, 0.7fr) minmax(600px, 1.1fr) minmax(230px, auto) !important;
  gap: clamp(28px, 3.5vw, 54px) !important;
}

.revision-home-copy h2 {
  max-width: 420px !important;
  font-size: clamp(30px, 3vw, 50px) !important;
}

.revision-home-copy p {
  max-width: 430px !important;
  font-size: 14px !important;
}

.revision-home-data {
  grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
  gap: 12px !important;
}

.revision-home-data div {
  min-height: 116px !important;
  padding: 22px 18px 18px !important;
}

.revision-home-data strong {
  font-size: clamp(24px, 2vw, 36px) !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.revision-home-data div:nth-child(2) strong {
  font-size: clamp(18px, 1.45vw, 28px) !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.revision-home-button {
  min-width: 240px !important;
}

@media (max-width: 1250px) {
  .revision-home-inner {
    grid-template-columns: 1fr !important;
  }

  .revision-home-data {
    max-width: 760px !important;
  }
}

@media (max-width: 680px) {
  .revision-home-data {
    grid-template-columns: 1fr !important;
  }

  .revision-home-data div:nth-child(2) strong {
    font-size: 24px !important;
  }
}

.revision-home-strip {
  min-height: clamp(540px, 60vh, 760px);
  padding-block: clamp(56px, 6vw, 90px);
}

.revision-home-inner {
  min-height: 100%;
}
/* REVISIONI - CARTELLO AUTORIZZAZIONE PIU ELEGANTE */

.revision-authorized-image,
.revision-sign,
.revision-sign-card {
  max-width: 300px !important;
  margin: 28px 0 0 0 !important;
  padding-top: 6px !important;
}

.revision-authorized-image img,
.revision-sign img,
.revision-sign-card img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.revision-page-copy,
.revision-hero-copy,
.revision-content {
  align-items: flex-start !important;
}

@media (max-width: 900px) {
  .revision-authorized-image,
  .revision-sign,
  .revision-sign-card {
    max-width: 360px !important;
  }
}

@media (max-width: 560px) {
  .revision-authorized-image,
  .revision-sign,
  .revision-sign-card {
    max-width: 100% !important;
    margin-top: 22px !important;
  }
}
/* LANDING PAGE - FOTO PIU VISIBILI */

.landing-hero > img {
  filter: brightness(0.82) saturate(1.02) contrast(1.04) !important;
}

.landing-hero-shade {
  background:
    radial-gradient(circle at 78% 20%, rgba(237, 44, 47, 0.10), transparent 28%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.30) 48%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.42) 100%
    ) !important;
}
.premium-landing-hero > img {
  object-position: center 28% !important;
}
/* LANDING SERVIZI - OMBRA SOLO DIETRO AL TESTO */
.performance-landing-hero .landing-hero-shade,
.dinamica-landing-hero .landing-hero-shade,
.hotwrap-landing-hero .landing-hero-shade,
.officina-landing-hero .landing-hero-shade,
.premium-landing-hero .landing-hero-shade 
{
  background:
    linear-gradient(
      500deg,
      rgba(0, 0, 0, 0.92) 25%,
      rgba(0, 0, 0, 0.78) 40%,
      rgba(0, 0, 0, 0.48) 50%,
      rgba(0, 0, 0, 0.12) 60%,
      rgba(0, 0, 0, 0) 72%
    ) !important;
}

.performance-landing-hero > img,
.dinamica-landing-hero > img,
.hotwrap-landing-hero > img,
.officina-landing-hero > img,
.premium-landing-hero > img {
  filter: brightness(0.9) saturate(1.04) contrast(1.03) !important;
}

.landing-hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}
/* LANDING - FOTO A TUTTA HERO */
.landing-hero {
  position: relative;
  min-height: calc(100vh - 110px) !important;
  height: calc(120vh - 120px) !important;
  overflow: hidden !important;
}

.landing-hero > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* =========================
   MULTILINGUA + NOLEGGIO AUTO
========================= */
.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.language-switcher a { color: rgba(255,255,255,.55); transition: color .2s ease; }
.language-switcher a:hover,
.language-switcher a.is-current { color: #fff; }
.language-switcher a.is-current { text-shadow: 0 0 18px rgba(237,44,47,.65); }
.language-switcher span { color: var(--red); }

.service-card-rental {
  grid-column: 1 / -1;
  min-height: 330px;
}
.service-card-image-rental { object-position: center 56%; }
.rental-landing-hero .landing-hero-content h1 {
  margin: 0 0 18px;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 1320px) {
  .site-header { gap: 14px; padding-left: 24px; padding-right: 24px; }
  .desktop-nav { gap: 13px; }
  .brand-mark-horizontal img { width: clamp(155px, 13vw, 205px); }
  .header-action { padding-left: 17px; padding-right: 17px; }
}
@media (max-width: 1080px) {
  .header-socials { display: none; }
}
@media (max-width: 900px) {
  .service-card-rental { grid-column: auto; }
  .language-switcher { margin-left: auto; }
}
@media (max-width: 560px) {
  .site-header .header-action { display: none; }
  .language-switcher { min-height: 32px; padding: 5px 10px; }
  .service-card-rental { min-height: 300px; }
}
.configurator-strip {
  margin: 36px 0;
  padding: 0 clamp(20px, 4vw, 60px);
}

.configurator-strip__inner {
  min-height: 0;
  padding: 32px 38px;

  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 50px;
}

.configurator-strip__copy {
  padding-left: 24px;
}

.configurator-strip__copy > span {
  margin-bottom: 14px;
  font-size: 10px;
}

.configurator-strip__copy > strong {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1;
}

.configurator-strip__copy p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.configurator-strip__action {
  padding: 20px 0 18px;
  grid-template-columns: minmax(0, 1fr) 44px;
  column-gap: 18px;
  row-gap: 7px;
}

.configurator-strip__action b {
  font-size: 16px;
}

.configurator-strip__action i {
  width: 42px;
  height: 42px;
  font-size: 15px;
}

.configurator-strip__inner::after {
  font-size: clamp(70px, 8vw, 130px);
}
/* =========================================================
   TREMAUTO — CONFIGURATORE, SEZIONE HOME
   ========================================================= */

.tm-config,
.tm-config * {
  box-sizing: border-box;
}

.tm-config {
  width: 100%;
  margin: 0;
  padding: 64px var(--section-x);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 82% 0%, rgba(237, 44, 47, 0.12), transparent 32%), #050506;
}

.tm-config__link {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
  color: #fff;
  text-decoration: none;
}

.tm-config__content {
  min-width: 0;
}

.tm-config__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tm-config__content h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tm-config__content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.tm-config__cta {
  min-height: 104px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-content: center;
  align-items: center;
  gap: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.tm-config__cta span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tm-config__cta strong {
  color: #fff;
  font-family: "A4SPEED", Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
}

.tm-config__cta i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tm-config__link:hover .tm-config__cta {
  border-color: rgba(237, 44, 47, 0.58);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.tm-config__link:hover .tm-config__cta i {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .tm-config {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .tm-config__link {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .tm-config {
    padding: 42px 20px;
  }

  .tm-config__content h2 {
    font-size: 30px;
  }

  .tm-config__content p {
    margin-top: 15px;
    font-size: 13px;
  }

  .tm-config__cta {
    min-height: 96px;
    padding: 20px;
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .tm-config__cta i {
    width: 40px;
    height: 40px;
  }
}

/* Nasconde il testo "12 progetti..." */
.tm-instagram__panel-bottom [data-instagram-status] {
  display: none !important;
}

/* Mantiene "Vedi tutto il garage" allineato a destra */
.tm-instagram__panel-bottom {
  justify-content: flex-end;
}
/* Sicurezza dimensioni immagini Instagram */
.tm-ig-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.tm-ig-card__media img,
.tm-ig-card__media video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
}


/* SEO week 1 - CTA configuratore */
.seo-configurator-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 48px auto;
  padding: 32px;
  border: 1px solid rgba(226, 31, 43, 0.35);
  background:
    radial-gradient(circle at top right, rgba(226, 31, 43, 0.18), transparent 35%),
    #111;
  color: #fff;
}
.seo-configurator-cta__label {
  margin: 0 0 10px;
  color: #e21f2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.seo-configurator-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
}
.seo-configurator-cta p {
  max-width: 720px;
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}
.seo-configurator-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  background: #e21f2b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.seo-configurator-cta__button:hover {
  background: #b6121c;
}
@media (max-width: 720px) {
  .seo-configurator-cta {
    grid-template-columns: 1fr;
    margin: 34px auto;
    padding: 24px;
  }
  .seo-configurator-cta__button {
    width: 100%;
  }
}


/* SEO locale e collegamenti interni — agosto 2026 */
.seo-topic-section { padding-top: 76px; padding-bottom: 82px; background: #08090c; }
.seo-topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.seo-topic-card { min-height: 210px; padding: 28px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(237,44,47,.08), transparent 45%), #050506; }
.seo-topic-card h3 { margin: 0 0 18px; font-family: "A4SPEED", Arial, sans-serif; font-size: clamp(22px, 2.2vw, 32px); text-transform: uppercase; }
.seo-topic-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.seo-related-section { padding-top: 70px; padding-bottom: 78px; background: #030304; }
.seo-related-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.seo-related-links--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.seo-related-links a { display: grid; gap: 8px; padding: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.seo-related-links strong { color: #fff; font-family: "A4SPEED", Arial, sans-serif; font-size: 22px; text-transform: uppercase; }
.seo-related-links span { color: var(--muted); font-size: 13px; }
.seo-related-links a:hover { border-color: rgba(237,44,47,.55); }
.seo-simple-request { align-items: center; }
.seo-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.seo-local-hero .landing-hero-content h1 { max-width: 850px; font-size: clamp(36px, 4.8vw, 68px); }
@media (max-width: 760px) {
  .seo-topic-grid, .seo-related-links { grid-template-columns: 1fr; }
  .seo-simple-request { grid-template-columns: 1fr; }
}

/* Footer mobile: evita overflow con i nuovi collegamenti SEO */
@media (max-width: 760px) {
  .site-footer,
  .site-footer > * {
    min-width: 0;
    max-width: 100%;
  }

  .site-footer nav {
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .site-footer .legal {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* LANDING HERO: scala compatta e CTA sempre visibili — agosto 2026 */
.landing-hero {
  height: auto !important;
  min-height: 660px !important;
  padding-top: 128px !important;
  padding-bottom: 58px !important;
  align-items: center !important;
  overflow: hidden !important;
}

.landing-hero .landing-hero-content {
  width: 100%;
  max-width: 760px !important;
}

.landing-hero .landing-hero-content h1 {
  max-width: 720px !important;
  margin-bottom: 14px !important;
  font-size: clamp(32px, 3.35vw, 48px) !important;
  line-height: 1.03 !important;
}

.landing-hero .landing-hero-content p:not(.section-kicker) {
  max-width: 680px !important;
  margin-bottom: 20px !important;
  font-size: 15px !important;
  line-height: 1.52 !important;
}

.landing-hero .landing-partner-logo-link {
  width: min(230px, 72vw) !important;
  margin-bottom: 12px !important;
}

.landing-hero .landing-partner-logo {
  max-height: 72px !important;
}

.landing-hero .landing-hero-actions {
  margin-top: 18px !important;
  gap: 12px !important;
}

@media (min-width: 761px) and (max-height: 900px) {
  .landing-hero {
    min-height: 620px !important;
    padding-top: 116px !important;
    padding-bottom: 40px !important;
    align-items: flex-start !important;
  }

  .landing-hero .landing-hero-content h1 {
    font-size: clamp(30px, 3vw, 43px) !important;
  }

  .landing-hero .landing-hero-content p:not(.section-kicker) {
    margin-bottom: 16px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .landing-hero .landing-partner-logo-link {
    width: min(190px, 62vw) !important;
    margin-bottom: 8px !important;
  }

  .landing-hero .landing-partner-logo {
    max-height: 54px !important;
  }

  .landing-hero .landing-hero-actions {
    margin-top: 14px !important;
  }
}

@media (max-width: 760px) {
  .landing-hero {
    min-height: auto !important;
    padding: 116px 20px 48px !important;
    align-items: flex-start !important;
  }

  .landing-hero .landing-hero-content h1 {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1.04 !important;
  }

  .landing-hero .landing-hero-content p:not(.section-kicker) {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .landing-hero .landing-partner-logo-link {
    width: min(200px, 68vw) !important;
  }

  .landing-hero .landing-hero-actions .button,
  .landing-hero .landing-hero-actions .hero-whatsapp {
    width: 100%;
  }
}


/* Foto noleggio dedicate — agosto 2026 */
.rental-landing-hero > img {
  object-position: center 58% !important;
}


/* Header landing uniforme e logo Evotronic leggibile — agosto 2026 */
@media (min-width: 1181px) {
  .site-header {
    gap: clamp(12px, 1.6vw, 24px);
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
  }

  .brand-mark-horizontal img {
    width: clamp(170px, 11vw, 215px);
  }

  .desktop-nav {
    min-width: 0;
    gap: clamp(10px, 1vw, 15px);
    font-size: 10px;
    white-space: nowrap;
  }

  .header-socials {
    gap: 6px;
  }

  .header-socials a {
    width: 32px;
    height: 32px;
  }

  .language-switcher {
    min-height: 32px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .header-action {
    padding: 9px 17px;
    font-size: 10px;
    white-space: nowrap;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .header-socials {
    display: none;
  }
}

.landing-hero .landing-partner-logo-link-evotronic {
  width: min(330px, 76vw) !important;
  margin-bottom: 14px !important;
}

.landing-hero .landing-partner-logo-evotronic {
  max-height: 108px !important;
}

@media (min-width: 761px) and (max-height: 900px) {
  .landing-hero .landing-partner-logo-link-evotronic {
    width: min(285px, 68vw) !important;
    margin-bottom: 10px !important;
  }

  .landing-hero .landing-partner-logo-evotronic {
    max-height: 84px !important;
  }
}

@media (max-width: 760px) {
  .landing-hero .landing-partner-logo-link-evotronic {
    width: min(270px, 76vw) !important;
  }
}
