/* Base layout */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #0b0b0c;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  display: block;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #c00018;
  outline-offset: 2px;
}

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

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

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: #0b0b0c;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transition: transform .2s ease;
}

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

.pf-full-bleed {
  width: 100%;
}

.section-anchor {
  display: block;
  height: 0;
  margin: 0;
  position: relative;
  top: -120px;
}

@media (max-width: 1024px) {
.section-anchor {
top: -90px;
}
}

@media (max-width: 640px) {
.section-anchor {
top: -70px;
}
}


/* ===== Variabili mobile (desktop invariato) ===== */
:root {
--dm-header-h: 64px;
/* altezza header su mobile (fissa) */
--burger-size: 50px;
/* linee burger un pelo più lunghe */
--dm-burger-scale: .96;
/* burger un filo più grande */
}

/* ===== Desktop originale (immutato) ===== */
.da-header {
--red-base: #c00018;
--red-mix-dark: #8b000e;
--veil-vert: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
--side-light-strong: rgba(255, 255, 255, .22);
--side-light-soft: rgba(255, 255, 255, .10);
--cta-top-bg1: rgba(212, 0, 26, .18);
--cta-top-bg2: rgba(212, 0, 26, .11);
--cta-top-bd: rgba(212, 0, 26, .48);
--cta-top-fg: #fff;
--cta-scroll-bg1: rgba(255, 255, 255, .90);
--cta-scroll-bg2: rgba(255, 255, 255, .78);
--cta-scroll-bd: rgba(255, 255, 255, .95);
--cta-scroll-fg: #c00018;

--nav-ul-r: 255;
--nav-ul-g: 255;
--nav-ul-b: 255;
--text: #fff;
--maxw: 1320px;
--pad-x: clamp(14px, 4vw, 28px);
--h: 104px;
/* desktop height */
--nav-shadow: 0 1px 8px rgba(0, 0, 0, .35);

--logo-h: 80px;
--logo-scale: 1.8;
--logo-shift: -10px;
--logo-shift-mobile: -6px;

position: fixed;
inset: 0 0 auto 0;
z-index: 50;
background: transparent;
border-bottom: none;
}

.da-base {
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background: linear-gradient(180deg, var(--red-base) 0%,
color-mix(in srgb, var(--red-base) 80%, var(--red-mix-dark) 20%) 100%);
opacity: 0;
transition: opacity .5s ease;
}

.da-glass {
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background:
var(--veil-vert),
linear-gradient(90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%),
linear-gradient(-90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%);
backdrop-filter: blur(8px) saturate(120%);
-webkit-backdrop-filter: blur(8px) saturate(120%);
opacity: 0;
transition: opacity .5s ease;
}

.da-header.is-scrolled .da-base {
opacity: 1;
}

.da-header.is-scrolled .da-glass {
opacity: .9;
}

.da-header--solid .da-base {
opacity: 1;
}

.da-header--solid .da-glass {
opacity: .9;
}

.da-header--solid {
--h: 92px;
--nav-ul-g: 82;
--nav-ul-b: 99;
}

.da-header--solid .da-header__logo .da-logo {
transform: translateX(var(--logo-shift)) scale(var(--logo-scale));
}

.da-header--solid .da-header__cta {
color: var(--cta-scroll-fg);
background: linear-gradient(180deg, var(--cta-scroll-bg1), var(--cta-scroll-bg2));
border-color: var(--cta-scroll-bd);
box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.da-header.is-scrolled {
--h: 92px;
--nav-ul-g: 82;
--nav-ul-b: 99;
}

.da-header__inner {
position: relative;
z-index: 1;
height: var(--h);
max-width: var(--maxw);
margin: 0 auto;
padding: 0 var(--pad-x);
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: clamp(12px, 3vw, 24px);
transition: height .35s ease;
}

.da-header__logo .da-logo {
display: block;
height: var(--logo-h);
width: auto;
transform: translateX(var(--logo-shift)) scale(var(--logo-scale));
transform-origin: left center;
object-fit: contain;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
transition: transform .28s ease, opacity .28s ease;
/* fade mobile */
}

/* 👉 Stato INIZIALE (trasparente): ancora più a sinistra + leggermente più grande (DESKTOP) */
.da-header:not(.is-scrolled) .da-header__logo .da-logo {
transform: translateX(calc(var(--logo-shift) - 18px)) scale(calc(var(--logo-scale) * 1.10));
}

.da-header__nav {
justify-self: center;
display: flex;
align-items: center;
gap: clamp(20px, 3.8vw, 44px);
}

.da-header__nav a {
position: relative;
color: var(--text);
text-decoration: none;
font-weight: 600;
letter-spacing: .012em;
font-size: clamp(16px, 1.35vw, 20px);
padding: 12px 0;
text-shadow: var(--nav-shadow);
transition: opacity .25s ease, transform .25s ease;
}

.da-header__nav a::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -6px;
margin: 0 auto;
width: 0;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg,
rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), 0),
rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), .85),
rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), 0));
transition: width .25s ease;
}

.da-header__nav a:hover {
opacity: .95;
transform: translateY(-1px);
}

.da-header__nav a:hover::after {
width: 70%;
}

.da-header__nav a.em {
font-weight: 600;
letter-spacing: .015em;
}

.da-header__nav a.em:hover::after {
width: 70%;
}

.da-header__cta {
display: inline-flex;
align-items: center;
gap: 10px;
white-space: nowrap;
padding: 14px 22px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
letter-spacing: .012em;
font-size: 16px;
color: #fff;
background: linear-gradient(180deg, var(--cta-top-bg1), var(--cta-top-bg2));
border: 1px solid var(--cta-top-bd);
box-shadow: 0 10px 28px rgba(212, 0, 26, .25), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.da-header.is-scrolled .da-header__cta {
color: var(--cta-scroll-fg);
background: linear-gradient(180deg, var(--cta-scroll-bg1), var(--cta-scroll-bg2));
border-color: var(--cta-scroll-bd);
box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* ===== Mobile solo ===== */
.dm-burger {
position: fixed;
top: 0;
right: env(safe-area-inset-right, 0px);
width: var(--dm-header-h);
height: var(--dm-header-h);
z-index: 100010;
display: none;
background: transparent;
border-left: 1px solid rgba(255, 255, 255, .18);
}

.dm-burger__btn {
width: 100%;
height: 100%;
background: transparent;
border: none;
cursor: pointer;
position: relative;
border-radius: 8px;
transform: scale(var(--dm-burger-scale));
transform-origin: center;
}

/* linee con dimensione fissa (non cambiano allo scroll) */
.dm-burger__btn span {
position: absolute;
left: calc((var(--dm-header-h) - var(--burger-size))/2 + 8px);
right: calc((var(--dm-header-h) - var(--burger-size))/2 + 8px);
height: 2px;
background: #fff;
transition: transform .28s cubic-bezier(.2, .6, .2, 1),
top .28s cubic-bezier(.2, .6, .2, 1), opacity .2s linear;
}

.dm-burger__btn span:nth-child(1) {
top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.28);
}

.dm-burger__btn span:nth-child(2) {
top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.50);
}

.dm-burger__btn span:nth-child(3) {
top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.72);
}

.dm-burger__btn[aria-expanded="true"] span:nth-child(1) {
top: calc((var(--dm-header-h) - 2px)/2);
transform: rotate(45deg);
}

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

.dm-burger__btn[aria-expanded="true"] span:nth-child(3) {
top: calc((var(--dm-header-h) - 2px)/2);
transform: rotate(-45deg);
}

.dm-drawer-backdrop {
position: fixed;
inset: 0;
z-index: 100007;
background: rgba(12, 18, 28, .55);
backdrop-filter: blur(18px) saturate(1.25) brightness(.85);
-webkit-backdrop-filter: blur(18px) saturate(1.25) brightness(.85);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .28s ease, visibility .28s ease;
}

.dm-drawer-backdrop.is-open {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

.dm-mobile {
--drawer-w: min(66.666vw, 420px);
position: fixed;
top: 0;
left: 0;
width: var(--drawer-w);
height: 100vh;
background: #f3f4f6;
color: #000;
z-index: 100009;
box-shadow: 18px 0 38px rgba(2, 6, 23, .28);
border-right: 1px solid rgba(2, 6, 23, .08);
transform: translateX(-100%);
transition: transform .28s ease;
padding-top: env(safe-area-inset-top, 0px);
display: block;
}

.dm-mobile.is-open {
transform: translateX(0);
}

.dm-mobile__head {
position: relative;
overflow: hidden;
display: grid;
place-items: center;
padding: 28px 16px 22px;
border-bottom: 1px solid rgba(2, 6, 23, .10);
background: #c00018;
}

/* LOGO nel drawer MOLTO grande */
.dm-mobile__head img {
height: clamp(160px, 28vw, 280px);
max-width: 92%;
width: auto;
display: block;
object-fit: contain;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .25));
}

.dm-mobile__nav {
display: grid;
gap: 2px;
padding: 12px 10px 14px;
}

.dm-mobile__nav a {
color: #0b1324;
text-decoration: none;
font-weight: 600;
font-size: 17px;
padding: 14px 18px;
border-bottom: 1px solid rgba(2, 6, 23, .1);
}

.dm-mobile__cta-wrap {
padding: 12px 12px 20px;
}

.dm-mobile__cta {
display: inline-flex;
align-items: center;
gap: 10px;
width: 100%;
justify-content: center;
padding: 14px 20px;
border-radius: 14px;
text-decoration: none;
font-weight: 600;
letter-spacing: .008em;
font-size: 16px;
color: var(--cta-scroll-fg);
background: linear-gradient(180deg, var(--cta-scroll-bg1), var(--cta-scroll-bg2));
border: 1px solid var(--cta-scroll-bd);
backdrop-filter: blur(8px) saturate(120%);
-webkit-backdrop-filter: blur(8px) saturate(120%);
box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* ===== Responsive ===== */
@media (max-width:1024px) {
.da-header__nav {
display: none;
}

.da-header__inner {
grid-template-columns: auto 1fr auto;
height: var(--dm-header-h);
}

/* header mobile a h fissa */
.da-header__logo .da-logo {
height: 72px;
transform: translateX(var(--logo-shift-mobile)) scale(1.5);
}

/* 👉 Stato INIZIALE (trasparente) su MOBILE: ancora più a sinistra + leggermente più grande */
.da-header:not(.is-scrolled) .da-header__logo .da-logo {
transform: translateX(calc(var(--logo-shift-mobile) - 18px)) scale(1.74);
}

.da-header__cta {
display: none;
}

/* CTA desktop nascosta su mobile (la trovi nel drawer) */
.dm-burger {
display: grid;
}
}

@media (max-width:640px) {
:root {
--burger-size: 48px;
}
}

/* Fallback senza backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
.da-glass {
background:
linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
linear-gradient(90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%),
linear-gradient(-90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%);
}
}

/* Scroll lock classi (PageFly/iOS) */
html.dm-mobile-open,
body.dm-mobile-open {
overflow: hidden;
height: 100%;
overscroll-behavior: none;
}

.dm-mobile-open .pagefly__container,
.dm-mobile-open [data-pf-main] {
overflow: hidden !important;
}

/* Patch mobile preesistenti */
@media (max-width:1024px) {

.da-header,
.da-header__inner,
.da-base,
.da-glass {
height: var(--dm-header-h) !important;
}

.da-header__inner {
transition: none !important;
}

.da-header__logo .da-logo {
width: auto !important;
will-change: opacity;
}
}

/* Stacking sicuri + doppio logo off quando menu è aperto */
.da-header {
z-index: 1000600 !important;
}

.dm-burger {
z-index: 1000802 !important;
position: fixed !important;
}

.dm-burger__btn {
position: relative;
z-index: 1000803 !important;
}

.dm-drawer-backdrop {
z-index: 1000800 !important;
}

#dm-mobile.dm-mobile {
z-index: 1000801 !important;
}

.dm-mobile-open .da-header__logo .da-logo {
opacity: 0 !important;
pointer-events: none;
}

/* Neutralizza possibili stacking dei wrapper PageFly */
.pagefly__container,
[data-pf-main] {
transform: none !important;
perspective: none !important;
filter: none !important;
}

/* ====== VARIABILI TEMA / SCOPE ====== */
.da-hero-v3,
.da-hero-v3 * {
box-sizing: border-box;
}

.da-hero-v3 {
/* Colori brand */
--da-red: #c00018;
--da-red-soft: #e04355;
--da-white: #ffffff;
--da-text: #ffffff;
--da-text-muted: rgba(255, 255, 255, 0.86);

/* Immagine di sfondo (modificabile) */
--da-bg-img: url('../img/WhatsApp_Image_2025-09-30_at_15.11.51.webp');

/* Base sfumatura (desktop) */
--shade-base-r: 8;
--shade-base-g: 10;
--shade-base-b: 12;

/* Underline brand più corta */
--brand-underline-w: clamp(80px, 34%, 200px);

/* Contenitore fluido */
--maxw: clamp(1040px, 88vw, 1760px);
--pad-x: clamp(16px, 5vw, 56px);
--pad-y: clamp(56px, 10vw, 120px);

--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

/* offset mobile per abbassare i testi (desktop = 0) */
--hero-mobile-offset: 0px;

position: relative;
color: var(--da-text);
background: #0b0b0c;
isolation: isolate;
overflow: clip;
}

/* ====== BACKGROUND ====== */
.da-hero__bg {
position: absolute;
inset: 0;
background-image: var(--da-bg-img);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: -2;
transform: translateZ(0);
transform-origin: center;
will-change: transform;
animation: da-hero-zoom 10s ease-in-out infinite;
}

@keyframes da-hero-zoom {
  0% {
    transform: translateZ(0) scale(1);
  }

  50% {
    transform: translateZ(0) scale(1.16);
  }

  100% {
    transform: translateZ(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-hero__bg {
    animation: none;
  }
}

/* ====== SFUMATURA ====== */
.da-hero__shade {
position: absolute;
inset: 0;
z-index: -1;
pointer-events: none;
background: linear-gradient(to right,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.52) 0%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.28) 28%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.16) 50%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.08) 70%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.00) 100%);
}

/* ====== LAYOUT ====== */
.da-hero__inner {
max-width: var(--maxw);
margin-inline: auto;
padding: var(--pad-y) var(--pad-x);
min-height: min(92vh, 820px);
display: grid;
place-items: center start;
}

.da-hero__content {
width: min(760px, 100%);
text-align: left;
filter: drop-shadow(var(--shadow));
}

/* ====== TITOLI ====== */
.da-hero__title {
margin: 0 0 16px 0;
}

.da-hero__brand {
display: block;
font-weight: 600;
letter-spacing: -.02em;
line-height: 1.04;
font-size: clamp(42px, 5.4vw, 86px);
color: var(--da-white);
position: relative;
padding-bottom: 6px;
text-wrap: balance;
}

.da-hero__tagline {
display: block;
margin-top: 6px;
font-weight: 500;
letter-spacing: -.02em;
line-height: 1.06;
font-size: clamp(24px, 3.4vw, 56px);
color: var(--da-white);
text-wrap: balance;
}

/* Underline rosso del brand */
.da-hero__brand::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: var(--brand-underline-w);
max-width: 100%;
height: 3px;
border-radius: 999px;
background: linear-gradient(90deg,
rgba(212, 0, 26, 0.00), rgba(212, 0, 26, 0.55), rgba(255, 77, 95, 0.65), rgba(212, 0, 26, 0.55));
background-size: 200% 100%;
opacity: .82;
animation: da-underline 6s linear infinite;
box-shadow: 0 0 12px rgba(212, 0, 26, .22);
}

@keyframes da-underline {
0% {
background-position: 0 0;
opacity: .7
}

50% {
background-position: 100% 0;
opacity: .9
}

100% {
background-position: 200% 0;
opacity: .7
}
}

.da-hero__subtitle {
font-size: clamp(16px, 1.6vw, 22px);
line-height: 1.5;
color: var(--da-text-muted);
margin: 12px 0 0 0;
}

/* ====== LINEETTA ROSSA (scroll cue) ====== */
.da-hero__accent {
position: absolute;
left: 50%;
bottom: clamp(18px, 4.5vh, 44px);
transform: translateX(-50%);
width: 76px;
height: 4px;
border-radius: 999px;
background: var(--da-red);
box-shadow: 0 0 24px rgba(212, 0, 26, .55);
overflow: hidden;
pointer-events: none;
animation: da-breathe 2.25s ease-in-out infinite;
}

.da-hero__accent::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--da-red), var(--da-red-soft), var(--da-red));
background-size: 200% 100%;
animation: da-shimmer 2.8s linear infinite;
}

@keyframes da-breathe {

0%,
100% {
transform: translateX(-50%) scaleX(.85);
box-shadow: 0 0 16px rgba(212, 0, 26, .35);
}

50% {
transform: translateX(-50%) scaleX(1.35);
box-shadow: 0 6px 28px rgba(212, 0, 26, .55);
}
}

@keyframes da-shimmer {
0% {
background-position: 0 0
}

100% {
background-position: 200% 0
}
}

/* ====== NUDGE A SINISTRA (desktop & ultrawide) ====== */
@media (min-width:1280px) {
.da-hero__inner {
max-width: min(92vw, 1500px);
margin-left: clamp(16px, 4vw, 72px) !important;
margin-right: auto !important;
justify-items: start;
}
}

@media (min-width:1600px) {
.da-hero__inner {
margin-left: clamp(12px, 3vw, 56px) !important;
margin-right: auto !important;
}
}

/* ====== MOBILE: testi molto più in basso (desktop invariato) ====== */
@media (max-width:540px) {

/* ↑ incremento offset per abbassare i testi */
.da-hero-v3 {
--hero-mobile-offset: clamp(48px, 14vh, 140px);
}

.da-hero__inner {
min-height: 68vh;
/* padding-top originale + offset extra */
padding: calc(clamp(28px, 7vw, 40px) + var(--hero-mobile-offset)) clamp(16px, 6vw, 28px);
place-items: start start;
align-content: start;
}

.da-hero__brand {
font-size: clamp(34px, 11vw, 52px);
line-height: 1.06;
padding-bottom: 6px;
}

.da-hero__tagline {
font-size: clamp(20px, 6.6vw, 34px);
line-height: 1.12;
margin-top: 6px;
}

.da-hero__subtitle {
font-size: clamp(14px, 4.2vw, 17px);
line-height: 1.45;
margin-top: 10px;
}

.da-hero__accent {
bottom: clamp(16px, 5.5vh, 36px);
width: 64px;
height: 3px;
}

/* Sfumatura mobile (invariata) */
.da-hero__shade {
background:
radial-gradient(120% 140% at 0% 100%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.44) 0%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.28) 34%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.16) 58%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.08) 74%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.00) 86%),
linear-gradient(45deg,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.22) 0%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.10) 55%,
rgba(var(--shade-base-r), var(--shade-base-g), var(--shade-base-b), 0.00) 100%);
}
}

/* Fallback altezza laptop */
@media (max-width:900px) {
.da-hero__inner {
min-height: 78vh;
}
}

/* Riduci motion */
@media (prefers-reduced-motion:reduce) {

.da-hero__brand::after,
.da-hero__accent,
.da-hero__accent::before {
animation: none !important;
}
}

.pf-da-find,
.pf-da-find * {
box-sizing: border-box;
}

.pf-da-find {
--brand-red: #e62434;
position: relative;
isolation: isolate;
background: #fff !important;
color: #0b0b0c;
z-index: 12000;
overflow-x: hidden;
}

.pf-da-find__inner {
max-width: 1680px;
margin: 0 auto;
padding: 56px clamp(20px, 4vw, 32px) 28px;
}

.pf-da-find__title {
font-weight: 600;
letter-spacing: -.02em;
line-height: 1.08;
font-size: clamp(32px, 5.4vw, 56px);
margin: 0;
}

.pf-da-find__title .hl-red {
color: var(--brand-red) !important;
}

.pf-da-find__underline {
display: block;
width: clamp(110px, 22vw, 260px);
height: 3px;
border-radius: 999px;
margin: 10px 0 10px;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
}

.pf-da-find__underline::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--brand-red), #e85c6a, var(--brand-red));
background-size: 200% 100%;
animation: pfda-ul-sheen 6s linear infinite;
opacity: .5;
}

@keyframes pfda-ul-sheen {
from {
background-position: 0 0
}

to {
background-position: 200% 0
}
}

.pf-da-find__subtitle {
font-weight: 500;
letter-spacing: -.01em;
line-height: 1.2;
font-size: clamp(16px, 2vw, 22px);
color: #5b5d63;
margin: 0;
}

.pf-da-find__lead {
margin-bottom: 28px;
}

.pf-da-filterbox {
--chip-h: 50px;
position: relative;
z-index: 13000;
margin-top: 28px;
padding: 14px;
border-radius: 18px;
display: inline-block;
white-space: nowrap;
background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90));
border: 1px solid rgba(212, 0, 26, .22);
box-shadow: 0 16px 36px rgba(0, 0, 0, .08), 0 0 0 4px rgba(255, 42, 61, .06);
backdrop-filter: blur(10px) saturate(115%);
-webkit-backdrop-filter: blur(10px) saturate(115%);
}

.filters-row {
display: flex;
gap: 12px;
align-items: center;
}

.sr-only {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
white-space: nowrap;
}

.filter {
position: relative;
flex: 0 0 auto;
}

.filter--search {
flex: 0 0 auto;
}

.searchchip {
display: flex;
align-items: center;
gap: 10px;
padding: 0 14px;
min-height: var(--chip-h);
border-radius: 999px;
background: #fff;
border: 1px solid rgba(212, 0, 26, .28);
box-shadow: 0 8px 18px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.searchchip .ico {
color: #c00018;
opacity: .9;
}

.searchchip input {
border: 0;
outline: 0;
width: 320px;
font-weight: 600;
font-size: 17px;
color: #0b0b0c;
background: transparent;
}

.searchchip input::placeholder {
font-weight: 600;
color: rgba(11, 11, 12, .55);
}

.filter__toggle {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
min-height: var(--chip-h);
padding: 0 14px;
border-radius: 999px;
background: #fff;
color: #0b0b0c;
border: 1px solid rgba(212, 0, 26, .28);
box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
font-weight: 600;
letter-spacing: .01em;
transition: border-color .2s, box-shadow .2s, transform .15s;
min-width: 160px;
}

.filter__toggle:hover {
transform: translateY(-1px);
box-shadow: 0 10px 22px rgba(0, 0, 0, .1);
}

.filter__toggle[aria-expanded="true"] {
border-color: rgba(212, 0, 26, .55);
}

.filter__toggle .label {
color: #5b5d63;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .06em;
font-size: 12px;
display: flex;
gap: 6px;
}

.label--short {
display: none;
}

.filter__toggle .value {
font-weight: 600;
color: #0b0b0c;
display: none;
}

.filter__toggle[aria-expanded="true"] .value {
display: inline-block;
}

/* PANNELLI (portal in body) */
.filter__panel {
display: none;
background: #fff;
border: 1px solid rgba(0, 0, 0, .08);
border-radius: 18px;
box-shadow: 0 22px 44px rgba(0, 0, 0, .18);
padding: 14px;
min-width: 360px;
max-width: min(96vw, 560px);
z-index: 1000000;
}

/* Più sottili: usati per Prezzo/Km, centrati su mobile */
.filter__panel.panel--compact {
min-width: 280px;
max-width: min(86vw, 360px);
}

.filter__panel.is-open {
display: block;
}

.menu {
list-style: none;
margin: 0;
padding: 4px;
display: grid;
gap: 6px;
max-height: 60vh;
overflow: auto;
}

.menu li {
padding: 10px 12px;
border-radius: 10px;
font-weight: 500;
cursor: pointer;
border: 1px solid transparent;
}

.menu li:hover {
background: #fafafa;
border-color: rgba(0, 0, 0, .06);
}

.menu li.is-active {
border-color: rgba(212, 0, 26, .45);
color: #c00018;
background: #fff5f6;
}

/* ===== Marca: bottom-sheet su mobile + multi selezione (HOME + Catalogo) ===== */
#pfda-panel-brand .brand-sheet__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
position: sticky;
top: 0;
background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
border-bottom: 1px solid rgba(11, 11, 12, .06);
z-index: 1;
}

#pfda-panel-brand .brand-sheet__title {
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
font-size: 12px;
color: #0b0b0c;
}

#pfda-panel-brand .brand-sheet__actions {
display: inline-flex;
align-items: center;
gap: 10px;
}

#pfda-panel-brand .brand-sheet__btn {
appearance: none;
border: 1px solid rgba(212, 0, 26, .28);
background: #fff;
color: #c00018;
font-weight: 700;
font-size: 12.5px;
border-radius: 999px;
padding: 8px 12px;
cursor: pointer;
}

#pfda-panel-brand .brand-sheet__close {
width: 36px;
height: 36px;
border-radius: 999px;
border: 1px solid rgba(11, 11, 12, .10);
background: rgba(255, 255, 255, .92);
color: #0b0b0c;
font-size: 20px;
line-height: 1;
cursor: pointer;
}

.menu.menu--checks {
max-height: none;
overflow: visible;
padding: 10px;
gap: 8px;
}

.menu.menu--checks li {
margin: 0;
padding: 0;
}

#pfda-panel-brand .brand-opt {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 14px;
border: 1px solid rgba(11, 11, 12, .08);
background: rgba(255, 255, 255, .92);
cursor: pointer;
user-select: none;
}

#pfda-panel-brand input[type="checkbox"][data-brand] {
width: 18px;
height: 18px;
accent-color: #c00018;
}

#pfda-panel-brand .brand-opt__label {
font-weight: 600;
color: #0b0b0c;
}

#pfda-panel-brand .brand-opt:hover {
border-color: rgba(212, 0, 26, .28);
}

.panel-range {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}

.panel-range input[type="range"] {
width: 70%;
accent-color: var(--brand-red);
}

.panel-range output {
min-width: 140px;
text-align: right;
font-weight: 500;
}

.panel-actions {
display: flex;
gap: 8px;
margin-top: 10px;
}

.apply,
.clear {
flex: 1 1 auto;
padding: 10px 12px;
border-radius: 12px;
font-weight: 500;
cursor: pointer;
border: 1px solid;
}

.apply {
border-color: rgba(212, 0, 26, .45);
color: #c00018;
background: linear-gradient(180deg, #fff, #fff7f8);
}

.clear {
border-color: rgba(0, 0, 0, .12);
color: #333;
background: #fff;
}

.pf-da-activefilters {
margin-top: 10px;
display: flex;
gap: 8px;
flex-wrap: wrap;
align-items: center;
position: relative;
z-index: 14000;
}

.af-chip {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
border-radius: 999px;
background: #fff;
border: 1px solid rgba(212, 0, 26, .30);
box-shadow: 0 6px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6);
font-weight: 500;
color: #0b0b0c;
}

.af-chip .af-key {
color: #5b5d63;
font-weight: 500;
font-size: 12px;
letter-spacing: .06em;
text-transform: uppercase;
}

.af-chip .af-val {
font-weight: 500;
}

.af-chip .af-x {
appearance: none;
border: 0;
background: transparent;
cursor: pointer;
padding: 0 2px;
line-height: 1;
font-weight: 500;
color: #c00018;
font-size: 14px;
}

.af-clearall {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 12px;
border-radius: 999px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .12);
color: #333;
font-weight: 500;
cursor: pointer;
}

.pf-da-gap {
height: 28px;
}

/* ===== MOBILE ===== */
.only-mobile-br {
display: none;
}

@media (max-width:640px) {
.pf-da-find__inner {
padding: 44px 18px 22px;
}

.pf-da-find__title {
font-size: clamp(38px, 13vw, 52px);
line-height: 1.14;
}

.pf-da-find__subtitle {
font-size: clamp(15px, 4.4vw, 19px);
line-height: 1.32;
}

.only-mobile-br {
display: inline;
}

.pf-da-filterbox {
--chip-h: 48px;
display: block;
width: 100%;
white-space: normal;
}

.filters-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas: "search search search" "brand price km";
gap: 10px;
align-items: stretch;
}

.filter--search {
grid-area: search;
}

.filter--brand {
grid-area: brand;
}

.filter--price {
grid-area: price;
}

.filter--km {
grid-area: km;
}

.label--long {
display: none;
}

.label--short {
display: inline;
}

.filter__toggle {
min-width: 0;
padding: 0 12px;
}

/* Larghezze pannelli su mobile */
.filter__panel {
min-width: auto;
max-width: min(96vw, 560px);
}

.filter__panel.panel--compact {
width: min(86vw, 340px);
}
}

#pf-cars42 {
--gap: 22px;
/* STESSO gap del Catalogo */
--cols: 3;
/* desktop: 3 card come Catalogo */
--nav-offset: 8px;
--nav-size: 48px;
/* watermark */
--wm-px: clamp(700px, 24vw, 1000px);
--wm-ratio: 0.3805;
--wm-right: 120px;
--wm-bottom: -44px;
--wm-opacity: .30;
}

.pfc42,
.pfc42 * {
box-sizing: border-box;
}

.pfc42 {
position: relative;
isolation: isolate;
background: #fff !important;
color: #0b0b0c;
}

:where(.pf-section, .pf-container, .pf-row, .pf_col, .pf-column, .pagefly-section) {
overflow: visible !important;
background: #fff !important;
}

.pfc42__inner {
max-width: 1520px;
margin: 12px auto;
padding: 18px clamp(16px, 4vw, 24px) clamp(70px, 4.5vw, 100px);
position: relative;
}

/* SLIDER */
.pfc42-slider {
position: relative;
overflow: visible;
background: #fff;
z-index: 0;
}

.pfc42-wm {
position: absolute;
right: var(--wm-right);
bottom: var(--wm-bottom);
width: var(--wm-px);
height: calc(var(--wm-px)*var(--wm-ratio));
background-image: url("../img/UPPLY_Copertina_di_Facebook.webp");
background-repeat: no-repeat;
background-position: right bottom;
background-size: contain;
opacity: var(--wm-opacity);
pointer-events: none;
z-index: 0;
}

.pfc42-stage {
position: relative;
z-index: 1;
}

.pfc42-viewport {
position: relative;
overflow-x: auto;
overflow-y: visible;
scroll-behavior: smooth;
padding-inline: 14px;
scroll-padding-inline: 14px;
}

/* >>> TRACCIA in GRID, non flex: ogni item ha la LARGHEZZA del Catalogo <<< */
.pfc42-track {
display: grid;
grid-auto-flow: column;
/* orizzontale */
grid-auto-columns: calc((100% - (var(--cols) - 1)*var(--gap)) / var(--cols));
/* = 3 per viewport */
gap: var(--gap);
list-style: none;
margin: 0;
padding: 0 16px 40px 0;
justify-content: flex-start;
/* centrata via JS se poche card */
}

/* FRECCE */
.pfc42-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--nav-size);
	height: var(--nav-size);
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	color: #0b0b0c;
	border: 1px solid rgba(0, 0, 0, .06);
	transition: transform .15s, border-color .2s, box-shadow .2s;
	z-index: 5;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
	backdrop-filter: blur(14px) saturate(1.35);
	-webkit-backdrop-filter: blur(14px) saturate(1.35);
}

.pfc42-nav--prev {
left: var(--nav-offset);
}

.pfc42-nav--next {
right: var(--nav-offset);
}

.pfc42-nav:hover {
	transform: translateY(calc(-50% - 1px));
	border-color: rgba(0, 0, 0, .2);
	background: rgba(255, 255, 255, .10);
}

.pfc42-nav:disabled {
opacity: .45;
pointer-events: none;
}

@media (max-width: 720px) {
  .pfc42-nav {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(0, 0, 0, .06);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    backdrop-filter: blur(14px) saturate(1.35);
    -webkit-backdrop-filter: blur(14px) saturate(1.35);
  }
}

@media (min-width: 1440px) {
  .da-header {
    --maxw: 1680px;
    --pad-x: clamp(22px, 3vw, 44px);
  }

  .da-header__nav {
    gap: clamp(26px, 2.8vw, 60px);
  }

  .da-header__nav a {
    font-size: clamp(17px, 1.1vw, 22px);
  }

  .da-header__cta {
    padding: 16px 26px;
    font-size: 17px;
  }

  .pfc42__inner {
    max-width: 1760px;
    padding-inline: clamp(20px, 3.2vw, 44px);
  }
}

@media (min-width: 1600px) {
  .pf-da-find__inner {
    max-width: 1760px;
    padding-top: 68px;
    padding-bottom: 38px;
  }

  .da-about__inner {
    max-width: 1760px;
    padding-bottom: 72px;
    gap: clamp(32px, 4vw, 64px);
  }

  .revx__container {
    max-width: 1600px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1440px) {
  .da-about {
    --visual-w: min(780px, 46vw);
  }

  .about-desc {
    font-size: clamp(16px, 1.05vw, 20px);
    max-width: 56ch;
  }

  .stat__num {
    font-size: 18px;
  }

  .stat__label {
    font-size: 16.5px;
  }

  .revx__container {
    max-width: 1680px;
  }

  .da-s__inner {
    max-width: 1760px;
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .svc-heading {
    font-size: 20px;
  }

  .svc-text {
    font-size: clamp(16px, 1.05vw, 19px);
  }

  .svc-visual img {
    width: clamp(320px, 92%, 740px);
  }

  .where-container {
    max-width: 1760px;
    padding: 72px clamp(20px, 3.2vw, 44px);
  }

  .where-grid {
    gap: 28px;
  }
}

@media (min-width: 1600px) {
  .where-grid {
    grid-template-columns: 420px minmax(0, 1fr);
  }

  .info-title {
    font-size: 26px;
  }

  .info-value {
    font-size: 15px;
  }
}


@media (min-width: 1680px) {
  .da-hero-v3 {
    --maxw: clamp(1200px, 90vw, 2048px);
    --pad-x: clamp(22px, 4.2vw, 72px);
    --pad-y: clamp(64px, 8.5vw, 140px);
    --brand-underline-w: clamp(120px, 30%, 260px);
  }

  .da-hero__content {
    width: min(900px, 100%);
  }

  .pf-da-find__inner,
  .pfc42__inner,
  .da-about__inner,
  .da-s__inner,
  .where-container {
    max-width: 1960px;
  }

  .revx__container {
    max-width: 1840px;
  }

  .pf-da-find__inner {
    padding-top: 78px;
    padding-bottom: 44px;
  }

  .da-about__inner {
    padding-bottom: 92px;
  }

  .about-desc {
    font-size: clamp(17px, 1.05vw, 22px);
    max-width: 60ch;
  }

  .stat__num {
    font-size: 19px;
  }

  .stat__label {
    font-size: 17px;
  }

  .pfc42__inner {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .pfc42-title {
    font-size: clamp(22px, 1.4vw, 28px);
  }

  .pfc42-price {
    font-size: 20px;
  }

  .svc-heading {
    font-size: 22px;
  }

  .svc-text {
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .where-container {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .info-title {
    font-size: 28px;
  }
}

@media (min-width: 1920px) {
  .da-header {
    --maxw: 1960px;
  }

  .da-hero-v3 {
    --maxw: clamp(1320px, 90vw, 2240px);
  }

  .pf-da-find__inner,
  .pfc42__inner,
  .da-about__inner,
  .da-s__inner,
  .where-container {
    max-width: 2140px;
  }

  .revx__container {
    max-width: 2048px;
  }
}

/* CARD: stili del Catalogo */
.pfc42-card {
height: 100%;
display: flex;
flex-direction: column;
background: rgba(255, 255, 255, .66);
border: 1px solid rgba(0, 0, 0, .08);
border-radius: 22px;
overflow: hidden;
transition: border-color .2s;
box-shadow: none;
}

.pfc42-card:hover {
border-color: rgba(212, 0, 26, .35);
}

/* Media come Catalogo: 16:10 (mobile 4:3) */
.pfc42-media {
position: relative;
aspect-ratio: 16/10;
overflow: hidden;
background: #fff;
}

.pfc42-media img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .35s ease;
}

.pfc42-card:hover .pfc42-media img {
transform: scale(1.045);
}

.pfc42-body {
display: flex;
flex-direction: column;
gap: 12px;
padding: 20px;
min-height: 160px;
background: transparent;
}

.pfc42-title {
font-size: clamp(20px, 1.6vw, 25px);
font-weight: 600;
margin: 0;
color: #0b0b0c;
line-height: 1.25;
white-space: normal;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.pfc42-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
}

.pfc42-row--a {
margin-top: 2px;
}

.pfc42-row--b {
margin-top: auto;
}

.pfc42-price {
padding: 10px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, .92);
color: #c00018;
font-weight: 700;
font-size: 19px;
border: 1px solid rgba(212, 0, 26, .45);
}

.pfc42-meta {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 500;
color: #2d2f33;
}

.pfc42-more {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 14px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
color: #c00018;
background: rgba(255, 255, 255, .92);
border: 1px solid rgba(212, 0, 26, .45);
}

.pfc42-more:hover {
border-color: rgba(212, 0, 26, .65);
}

/* CTA */
.pfc42-card--cta {
position: relative;
}

.pfc42-card--cta .pfc42-media--spacer {
visibility: hidden;
}

.pfc42-card--cta .pfc42-body--cta {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
text-align: center;
padding: 22px;
background: transparent;
}

.pfc42-ctaHeading {
margin: 0;
font-weight: 500;
letter-spacing: .15px;
color: #0b0b0c;
font-size: 23px;
line-height: 1.2;
}

.pfc42-ctaLink {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 16px;
border-radius: 12px;
background: linear-gradient(180deg, rgba(255, 42, 61, .98), rgba(255, 42, 61, .88));
color: #fff !important;
font-weight: 500;
border: 1px solid rgba(255, 42, 61, .72);
text-decoration: none;
box-shadow: 0 14px 30px rgba(255, 42, 61, .22), inset 0 1px 0 rgba(255, 255, 255, .6);
transition: transform .12s, box-shadow .2s;
}

.pfc42-card--cta .pfc42-ctaLink:hover {
transform: translateY(-1px);
box-shadow: 0 18px 36px rgba(255, 42, 61, .28), inset 0 1px 0 rgba(255, 255, 255, .7);
}

/* Tablet: 2 card (come Catalogo) */
@media (max-width:1024px) {
#pf-cars42 {
--cols: 2;
}

.pfc42-title {
font-size: 23px;
}

.pfc42-media {
aspect-ratio: 16/10;
}
}

/* Mobile: 1 card (come Catalogo) */
@media (max-width:720px) {
#pf-cars42 {
--cols: 1;
--nav-offset: 10px;
--nav-size: 46px;
--wm-opacity: .14;
--wm-px: clamp(520px, 72vw, 680px);
--wm-bottom: -36px;
}

.pfc42__inner {
padding-top: 8px;
}

.pfc42-viewport {
scroll-padding-inline: 16px;
}

.pfc42-media {
aspect-ratio: 4/3;
}

.pfc42-title {
font-size: 22px;
}

.pfc42-body {
padding: 18px 18px 20px;
}

.pfc42-ctaHeading {
font-size: 22px;
}
}

/* ===== THEME / BASE ===== */
.da-about {
--brand-red: #e62434;
--brand-red-deep: #c00018;
--ink: #0b0b0c;
--muted: #5b5d63;
--card: #fff;
--left-nudge: -12px;
--right-nudge: 14px;
--visual-w: min(640px, 44vw);
font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: #fff;
color: var(--ink);
overflow: hidden;
margin-top: 0;
}

.da-about * {
box-sizing: border-box;
}

/* ===== LAYOUT ===== */
.da-about__inner {
max-width: 1680px;
margin: 0 auto;
padding: 18px clamp(20px, 4vw, 32px) 56px;
display: grid;
grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
gap: clamp(24px, 4vw, 48px);
align-items: center;
}

.da-about__left {
transform: translateX(var(--left-nudge));
}

.da-about__right {
transform: translateX(var(--right-nudge));
}

/* ===== UTIL / TYPO ===== */
.no-wrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.hl-red {
color: var(--brand-red);
}

.eyebrow {
display: inline-block;
font-weight: 800;
letter-spacing: .22em;
text-transform: uppercase;
font-size: 14px;
color: var(--brand-red);
opacity: .95;
margin-bottom: 10px;
}

.da-about .pf-da-find__title {
margin-top: 0;
}

.about-desc {
margin: 0 0 18px;
color: var(--muted);
font-size: clamp(15px, 1.6vw, 18px);
line-height: 1.7;
max-width: 48ch;
}

/* ===== STATS ===== */
.about-stats {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
align-items: center;
max-width: 700px;
}

.stat {
position: relative;
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
padding: 12px 14px;
border-radius: 14px;
background: var(--card);
border: 1px solid rgba(212, 0, 26, .16);
box-shadow: 0 8px 18px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .65);
}

.stat::before {
content: "";
position: absolute;
inset: -1px;
border-radius: 14px;
background: linear-gradient(180deg, var(--brand-red), var(--brand-red-deep));
-webkit-mask: linear-gradient(90deg, #000 0 6px, transparent 6px);
mask: linear-gradient(90deg, #000 0 6px, transparent 6px);
opacity: .85;
}

.stat__num {
font-weight: 800;
letter-spacing: .16px;
font-size: 17px;
color: var(--brand-red-deep);
}

.stat__label {
font-weight: 800;
font-size: 16px;
color: #2d2f33;
opacity: .9;
}

/* ===== VISUAL (DESKTOP DEFAULT) ===== */
.about-media {
position: relative;
width: var(--visual-w);
aspect-ratio: 16/10;
margin-left: auto;
border-radius: 22px;
padding: 12px;
overflow: hidden;
background:
radial-gradient(70% 70% at 85% 20%, rgba(255, 42, 61, .10), transparent 60%),
radial-gradient(70% 70% at 12% 88%, rgba(212, 0, 26, .08), transparent 60%),
linear-gradient(180deg, #f8fafc 0%, #eef1f6 100%);
box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

.about-media::before {
content: "";
position: absolute;
inset: 0;
border-radius: 22px;
pointer-events: none;
background: radial-gradient(120% 90% at 50% -10%, rgba(255, 255, 255, .25), transparent 60%);
}

.media-card {
position: absolute;
inset: 12px;
border-radius: 18px;
overflow: hidden;
background: #fff;
border: 1px solid rgba(212, 0, 26, .38);
box-shadow: 0 14px 38px rgba(0, 0, 0, .12), 0 0 0 1px rgba(255, 255, 255, .5) inset;
}

.media-card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transform: translateZ(0) scale(1.003);
transition: transform .5s ease;
backface-visibility: hidden;
}

.media-card::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
z-index: 1;
}

.media-card::after {
content: "";
position: absolute;
inset: -20% -45% 60% -45%;
z-index: 2;
pointer-events: none;
background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .35) 48%, rgba(255, 255, 255, .08) 54%, transparent 70%);
transform: translateX(-120%) rotate(10deg);
opacity: 0;
mix-blend-mode: screen;
}

.media-card:hover img {
transform: translateZ(0) scale(1.015);
}

.media-card:hover::after {
animation: imgFlash 1.1s cubic-bezier(.2, .6, .2, 1) forwards;
opacity: 1;
}

@keyframes imgFlash {
0% {
transform: translateX(-120%) rotate(10deg);
opacity: 0;
}

12% {
opacity: .95;
}

100% {
transform: translateX(120%) rotate(10deg);
opacity: 0;
}
}

/* ===== RESPONSIVE ===== */
.about-media--mobile {
display: none;
}

/* nascosta su desktop */

@media (max-width:980px) {
.da-about__inner {
grid-template-columns: 1fr;
}

/* Titolo ancora più grande su mobile */
.pf-da-find__title {
font-size: clamp(36px, 9vw, 54px);
line-height: 1.1;
letter-spacing: -0.3px;
}

/* Reset traslazioni */
.da-about__left,
.da-about__right {
transform: none;
}

/* Nascondo il blocco di destra (immagine desktop con background) */
.da-about__right {
display: none !important;
}

/* ---- IMMAGINE MOBILE: centrata, senza background, con bordi visibili ---- */
.about-media--mobile {
display: flex !important;
justify-content: center !important;
align-items: center !important;
width: 100% !important;
max-width: none !important;
margin: 16px auto 28px !important;
/* più spazio sotto l’immagine */
padding: 0 !important;
background: none !important;
border-radius: 18px;
box-shadow: none !important;
}

.about-media--mobile .media-card {
position: relative !important;
left: auto !important;
right: auto !important;
top: auto !important;
bottom: auto !important;
inset: auto !important;
width: clamp(280px, 92vw, 680px) !important;
/* centrata con bordi bianchi ai lati */
height: auto !important;
aspect-ratio: 4 / 3 !important;
/* presenza ben visibile */
margin: 0 auto !important;
border: 1.25px solid var(--brand-red) !important;
/* bordino rosso più sottile */
border-radius: 16px !important;
background: none !important;
overflow: hidden !important;
box-shadow: 0 10px 24px rgba(0, 0, 0, .08) !important;
}

.about-media--mobile .media-card::before,
.about-media--mobile .media-card::after {
display: none !important;
content: none !important;
}

.about-media--mobile img {
display: block !important;
width: 100% !important;
height: 100% !important;
max-width: none !important;
object-fit: cover !important;
object-position: center center !important;
/* centrata davvero */
transform: none !important;
}

/* Testo: leggermente dopo l’immagine */
.about-desc {
max-width: unset;
font-size: 16px;
line-height: 1.75;
margin-top: 4px;
}

/* Widget: numero a capo rispetto all’etichetta */
.about-stats {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
}

.stat {
flex-direction: column;
align-items: center;
text-align: center;
white-space: normal;
padding: 12px 10px;
}

.stat__num {
font-size: 18px;
line-height: 1.1;
}

.stat__label {
font-size: 13px;
line-height: 1.2;
}
}

/* Motion safe */
@media (prefers-reduced-motion: reduce) {
.media-card:hover img {
transform: none;
}

.media-card::after {
animation: none !important;
opacity: 0 !important;
}
}

/* ===== Theme + spaziature (come “La nostra azienda”) ===== */
.revx {
--ink: #0b0b0c;
--muted: #5b5d63;
--card: #fff;
--red: #c00018;
--red-hi: #e62434;
--gg: #0c6;
--as-yellow: #FFE14A;
--as-border: #E2B300;
--as-text: #4A3A00;

--pad-x: clamp(20px, 4vw, 32px);
--container-max: 1480px;

--card-h-desktop: 340px;
--card-h-mobile: 320px;
--closed-text-h: 132px;

--space-head-body: 64px;
--space-head-body-m: 40px;
--space-pill-img: 26px;
--space-pill-img-m: 20px;

--pill-w: 340px;

font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: #fff;
color: var(--ink);
isolation: isolate;
overflow-x: hidden;
margin-top: clamp(24px, 4vw, 56px);
margin-bottom: clamp(22px, 4vw, 54px);
}

.revx__container {
max-width: var(--container-max);
margin: 0 auto;
padding: 18px var(--pad-x) 56px;
}

/* ===== Head ===== */
.revx__head {
text-align: center;
}

.revx__title {
margin: 0;
color: var(--ink);
font-weight: 600;
letter-spacing: -.02em;
font-size: clamp(32px, 5.4vw, 56px);
line-height: 1.08;
white-space: normal;
text-wrap: balance;
max-width: none;
margin-inline: auto;
}

.revx__title .hl-red {
color: var(--red-hi);
}

.revx__title .hl-red::first-letter {
color: var(--ink);
}

/* “i” nera */
.revx__underline {
display: block;
width: clamp(120px, 22vw, 260px);
height: 3px;
border-radius: 999px;
margin: 16px auto 0;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
}

.revx__underline::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--red), #e85c6a, var(--red));
background-size: 200% 100%;
animation: revx-sheen 6s linear infinite;
opacity: .5;
}

@keyframes revx-sheen {
from {
background-position: 0 0
}

to {
background-position: 200% 0
}
}

.revx__subtitle {
margin: 12px auto 0;
color: var(--muted);
font-weight: 500;
font-size: clamp(17px, 2.3vw, 22px);
line-height: 1.46;
max-width: 60ch;
}

/* ===== Layout body ===== */
.revx__body {
display: grid;
grid-template-columns: minmax(0, 1fr) 420px;
gap: 34px;
align-items: start;
margin-top: var(--space-head-body);
}

.revx__left {
position: relative;
z-index: 1;
}

.revx__right {
position: relative;
z-index: 0;
}

/* ===== Slider ===== */
.rx {
position: relative;
overflow: visible;
}

.rx__viewport {
overflow-x: auto;
overflow-y: visible;
scrollbar-width: none;
}

.rx__viewport::-webkit-scrollbar {
display: none;
}

.rx__track {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 16px;
overflow: visible;
}

.rx__item {
flex: 0 0 46.8%;
}

/* Frecce (vicino alle card) */
.rx__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	color: var(--ink);
	border: 1px solid rgba(0, 0, 0, .06);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: transform .15s, box-shadow .2s, border-color .2s;
	backdrop-filter: blur(14px) saturate(1.35);
	-webkit-backdrop-filter: blur(14px) saturate(1.35);
}

.rx__nav--prev {
left: -28px;
}

.rx__nav--next {
right: -28px;
}

.rx__nav:hover {
	transform: translateY(-50%) translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
	border-color: rgba(0, 0, 0, .14);
	background: rgba(255, 255, 255, .10);
}

.rx__nav:disabled {
opacity: .4;
pointer-events: none;
}

/* ===== Card recensione (uniformi) ===== */
.rxcard {
background: #fff;
border: 1px solid rgba(0, 0, 0, .06);
border-radius: 16px;
padding: 16px 18px 12px;
box-shadow: none;
transition: border-color .2s;
min-height: var(--card-h-desktop);
display: flex;
flex-direction: column;
}

.rxcard:hover {
border-color: rgba(212, 0, 26, .20);
}

.rxcard__top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}

.rxsrc {
font-weight: 600;
font-size: 12.5px;
letter-spacing: .015em;
text-transform: none;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid transparent;
}

.rxsrc--as {
color: var(--as-text);
background: var(--as-yellow);
border-color: var(--as-border);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.rxsrc--gg {
color: var(--gg);
background: #f2fff9;
border-color: rgba(0, 200, 120, .35);
}

.rxstars {
font-size: 16px;
letter-spacing: 1px;
}

.rxcard__name {
margin: 6px 0 10px;
font-size: 16px;
font-weight: 600;
letter-spacing: .01em;
}

.rxcard__textwrap {
position: relative;
overflow: hidden;
}

.rxcard__textwrap::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 48px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
opacity: 1;
pointer-events: none;
transition: opacity .2s ease;
}

.rxcard__text {
margin: 0;
color: #2d2f33;
font-weight: 500;
font-size: clamp(14px, 1.9vw, 16px);
line-height: 1.6;
}

.rxcard__more {
margin-top: auto;
align-self: flex-start;
padding: 10px 14px;
border-radius: 999px;
background: linear-gradient(180deg, #fff, #fff7f8);
color: #c00018;
font-weight: 600;
border: 1px solid rgba(212, 0, 26, .45);
cursor: pointer;
box-shadow: 0 6px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6);
transition: transform .15s, box-shadow .2s, border-color .2s;
}

.rxcard__more:hover {
transform: translateY(-1px);
box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
border-color: rgba(212, 0, 26, .65);
}

.rxcard__textwrap[data-state="open"]::after {
opacity: 0;
}

/* ===== CTA card ===== */
.rxcta {
display: flex;
flex-direction: column;
gap: 10px;
}

.rxcta__title {
margin: 0;
font-size: 18px;
font-weight: 600;
letter-spacing: -.008em;
}

.rxcta__title span {
color: var(--red);
}

.rxcta__sub {
margin: 0;
color: #383b41;
font-weight: 500;
}

.rxcta__btn {
align-self: flex-start;
margin-top: 6px;
padding: 10px 16px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
color: var(--red);
background: #fff;
border: 1px solid rgba(212, 0, 26, .45);
box-shadow: 0 6px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6);
transition: transform .15s, box-shadow .2s, border-color .2s;
}

.rxcta__btn:hover {
transform: translateY(-1px);
box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
border-color: rgba(212, 0, 26, .65);
}

/* ===== Rating pills (uguali) ===== */
.rxpill {
width: var(--pill-w);
margin-top: 20px;
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border-radius: 999px;
background: #fff;
border: 1px solid rgba(0, 0, 0, .10);
box-shadow: 0 6px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6);
font-weight: 600;
color: var(--ink);
}

.rxpill__ico {
width: 18px;
height: 18px;
fill: #f5b301;
stroke: none;
}

.rxpill__brand {
opacity: .85;
font-weight: 600;
letter-spacing: .02em;
}

.rxpill__num {
font-size: 16px;
}

.rxpill__sep {
opacity: .5;
}

.rxpill--gg {
/* niente di speciale, solo classe paritaria */
}

/* Allineamento pill AutoScout al bordo sinistro dell’immagine (img è al 92%) */
.revx__right .rxpill--as {
margin-top: var(--space-pill-img);
margin-left: calc(100% - 92%);
}

/* ===== Immagine con effetto “Uber” ===== */
.awx {
margin: 0;
}

.awx__img {
display: block;
width: 92%;
margin: 24px 0 0 auto;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, .06);
box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
height: auto;
transform: translateZ(0);
transition: transform .5s ease, filter .5s ease;
filter: saturate(.96) contrast(1.02);
}

.awx--uber {
position: relative;
overflow: hidden;
border-radius: 16px;
}

.awx--uber::after {
content: "";
position: absolute;
top: -20%;
bottom: -20%;
left: -30%;
right: -30%;
background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, .35) 50%, transparent 55%);
transform: translateX(-120%);
transition: transform .6s ease;
pointer-events: none;
border-radius: 16px;
}

.awx--uber:hover::after {
transform: translateX(120%);
}

.awx--uber:hover .awx__img {
transform: scale(1.03);
filter: saturate(1) contrast(1.05);
}

/* ===== Mobile (≤600px) ===== */
@media (max-width:600px) {
.revx__head {
text-align: left;
}

.revx__title {
font-size: clamp(28px, 8vw, 40px);
line-height: 1.14;
letter-spacing: -.2px;
white-space: normal;
max-width: 22ch;
margin-inline: 0;
}

.revx__underline {
width: 128px;
height: 3px;
margin: 10px 0 0 0;
}

.revx__subtitle {
font-size: clamp(14px, 3.7vw, 16px);
line-height: 1.46;
margin: 10px 0 0 0;
max-width: 38ch;
font-weight: 500;
}

.revx__body {
grid-template-columns: 1fr;
gap: 28px;
margin-top: var(--space-head-body-m);
}

.revx__left {
order: 1;
}

.revx__right {
order: 3;
}

/* 1 card per volta, frecce più esterne */
.rx {
padding: 0 8px;
}

.rx__viewport {
overflow: hidden;
}

.rx__track {
display: block;
}

.rx__item {
width: 100%;
}

.rx__nav {
width: 44px;
height: 44px;
top: 50%;
}

.rx__nav--prev {
left: -18px;
}

.rx__nav--next {
right: -18px;
}

.rxcard {
padding: 14px;
border-radius: 14px;
min-height: var(--card-h-mobile);
}

.rxcard__name {
font-size: clamp(14px, 4.6vw, 16px);
margin: 6px 0 8px;
font-weight: 600;
}

.rxcard__text {
font-size: clamp(13.2px, 4.2vw, 15px);
line-height: 1.55;
font-weight: 500;
}

.rxpill {
width: 100%;
max-width: var(--pill-w);
margin-top: 16px;
}

.awx__img {
width: 100%;
margin: var(--space-pill-img-m) 0 0 0;
border-radius: 12px;
}

.awx--uber::after {
display: none;
}

.revx__right .rxpill--as {
width: 100%;
max-width: var(--pill-w);
margin: 12px 0 0 0;
}
}

@media (prefers-reduced-motion:reduce) {

.rx__nav,
.rxcard__more,
.revx__underline::before,
.awx__img,
.awx--uber::after {
transition: none !important;
animation: none !important;
}
}

/* ===== THEME / SCOPE (allineato a "La nostra azienda") ===== */
#da-services,
#da-services * {
box-sizing: border-box;
}

.da-services {
--brand-red: #e62434;
--brand-red-deep: #c00018;
--ink: #0b0b0c;
--muted: #5b5d63;
--card: #fff;
--pad-top: 18px;
/* stessi padding container della sezione "La nostra azienda" */
--pad-bottom: 56px;
background: #fff;
color: var(--ink);
isolation: isolate;
/* filtro per tingere le icone PNG in rosso */
--icon-red-filter: brightness(0) saturate(100%) invert(18%) sepia(94%) saturate(4836%) hue-rotate(353deg) brightness(99%) contrast(105%);
font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.no-wrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.hl-red {
color: var(--brand-red);
}

.t-black {
color: #0b0b0c;
}

.da-s__inner {
max-width: 1380px;
margin: 0 auto;
padding: var(--pad-top) clamp(20px, 4vw, 32px) var(--pad-bottom);
}

/* ===== HEAD ===== */
/* Desktop: lasciamo centrato come le altre sezioni */
.da-s__head {
text-align: center;
}

/* Non forziamo il font-size qui: ereditato dalla stessa classe del titolo "La nostra azienda" (pf-da-find__title) */
.da-s__title {
margin: 0;
letter-spacing: -0.01em;
line-height: 1.12;
font-weight: 600;
font-size: clamp(32px, 5.2vw, 54px);
color: #0b0b0c;
}

.da-s__underline {
display: block;
width: clamp(110px, 22vw, 240px);
height: 3px;
border-radius: 999px;
margin: 12px auto 44px;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
}

.da-s__underline::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--brand-red), #e85c6a, var(--brand-red));
background-size: 200% 100%;
animation: da-underline-sheen 6s linear infinite;
opacity: .5;
}

@keyframes da-underline-sheen {
from {
background-position: 0 0
}

to {
background-position: 200% 0
}
}

/* ===== GRID ===== */
.da-s__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.8vw, 28px);
align-items: start;
}

/* ===== BOX ===== */
.svc-box {
display: flex;
flex-direction: column;
background: var(--card);
border: 1px solid rgba(212, 0, 26, .18);
border-radius: 18px;
padding: 16px 18px 14px;
box-shadow: 0 8px 18px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .55);
transition: border-color .2s, transform .15s;
}

.svc-box:hover {
border-color: rgba(212, 0, 26, .34);
transform: translateY(-2px);
}

.svc-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}

/* Icone rosse (PNG) */
.svc-icon {
	height: 30px;
	width: 30px;
	display: block;
	color: var(--brand-red-deep);
	filter: none;
}

.svc-heading {
margin: 0;
font-weight: 600;
letter-spacing: .01em;
font-size: 19px;
color: var(--ink);
line-height: 30px;
}

.svc-text {
margin: 6px 0 10px;
color: var(--muted);
line-height: 1.7;
/* stessa scala copia della sezione "La nostra azienda" */
font-size: clamp(15px, 1.6vw, 18px);
}

.svc-cta {
align-self: flex-start;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 14px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
color: var(--brand-red-deep);
background: #fff;
border: 1px solid rgba(212, 0, 26, .45);
box-shadow: 0 6px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6);
transition: transform .15s, box-shadow .2s, border-color .2s;
margin-top: 8px;
}

.svc-cta:hover {
transform: translateY(-1px);
border-color: rgba(212, 0, 26, .65);
}

/* ===== VISUAL ===== */
.svc-visual {
background: transparent;
border: none;
box-shadow: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
margin-top: -8px;
}

.svc-visual img {
display: block;
width: clamp(260px, 85%, 560px);
height: auto;
object-fit: contain;
margin: 0 auto;
transform: translateZ(0);
}

/* ===== MOBILE (≤980px) — titolo su 2 righe + allineamento a sinistra ===== */
@media (max-width:980px) {
.da-s__head {
text-align: left;
}

/* sblocca il capo e forza "la tua auto" a seconda riga */
.da-s__title.no-wrap {
white-space: normal;
}

.da-s__title .hl-red {
display: block;
}

/* su mobile usiamo le STESSE dimensioni del titolo "La nostra azienda" */
.pf-da-find__title {
font-size: clamp(36px, 9vw, 54px);
line-height: 1.1;
letter-spacing: -0.3px;
}

/* lineetta a sinistra */
.da-s__underline {
margin: 8px 0 28px 0;
}

.da-s__grid {
grid-template-columns: 1fr;
}

.svc-visual {
order: 2;
margin-top: 0;
}

.svc-box:first-of-type {
order: 1;
}

.svc-box:last-of-type {
order: 3;
}

.svc-visual img {
width: clamp(240px, 70vw, 540px);
}

.svc-text {
font-size: 16px;
line-height: 1.75;
}
}

/* Riduzione movimento */
@media (prefers-reduced-motion:reduce) {
.svc-cta {
transition: none !important;
}
}

.where-section.demasi {
--brand-red: #e62434;
--ink: #0b132a;
--muted: #5b728a;
--card: #fff;
--b: rgba(2, 6, 23, .12);
font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: #fff;
}

.where-container {
max-width: 1120px;
margin: 0 auto;
padding: 56px 16px;
}

.where-header {
text-align: center;
margin-bottom: 24px;
}

/* Titolo: stessa “voce” della sezione "La nostra azienda" */
.where-title {
margin: 0;
font-weight: 600;
line-height: 1.1;
letter-spacing: -.01em;
font-size: clamp(32px, 4.4vw, 52px);
color: var(--ink);
}

/* "trovarci" in rosso SEMPRE */
.where-title .brand-red,
.where-title .hl-red {
color: var(--brand-red) !important;
}

/* Linietta sotto il titolo (desktop + mobile) */
.where-underline {
display: block;
width: clamp(110px, 22vw, 240px);
height: 3px;
border-radius: 999px;
margin: 10px auto 12px;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
}

.where-underline::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--brand-red), #e85c6a, var(--brand-red));
background-size: 200% 100%;
animation: whereSheen 6s linear infinite;
opacity: .5;
}

@keyframes whereSheen {
from {
background-position: 0 0
}

to {
background-position: 200% 0
}
}

.where-subtitle {
margin: 8px 0 0;
color: var(--muted);
font-weight: 500;
font-size: clamp(16px, 1.8vw, 20px);
}

.where-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
align-items: stretch;
}

@media(min-width:1024px) {
.where-grid {
grid-template-columns: 360px minmax(0, 1fr);
}
}

.map-box {
border: 1px solid var(--b);
border-radius: 14px;
box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
overflow: hidden;
min-height: 340px;
height: 100%;
}

.map-iframe {
width: 100%;
height: 100%;
border: 0;
}

.info-card {
border: 1px solid var(--b);
border-radius: 14px;
box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
background: var(--card);
height: 100%;
}

.info-card__content {
display: flex;
flex-direction: column;
height: 100%;
padding: 20px;
}

.info-title {
font-size: 24px;
line-height: 1.2;
font-weight: 600;
margin: 0 0 14px;
letter-spacing: -.01em;
color: var(--ink);
}

.info-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 14px;
}

.info-item {
display: flex;
gap: 12px;
align-items: flex-start;
}

.info-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 10px;
background: linear-gradient(180deg, #fff7f8 0%, #ffe9ec 100%);
border: 1px solid rgba(255, 42, 61, .20);
color: var(--brand-red);
flex: 0 0 32px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.info-icon svg {
width: 18px;
height: 18px;
stroke: currentColor;
fill: none;
stroke-width: 1.75;
stroke-linecap: round;
stroke-linejoin: round;
}

.info-icon svg * {
fill: none !important;
}

.info-label {
font-size: 12.4px;
color: #6b7a92;
margin-bottom: 2px;
font-weight: 600;
}

.info-value {
font-size: 14px;
color: var(--ink);
line-height: 1.55;
font-weight: 500;
}

.info-value a {
color: var(--ink) !important;
text-decoration: none;
}

.info-value a:hover {
text-decoration: underline;
}

.info-spacer {
flex: 1 1 auto;
}

.btn-map {
margin-top: 18px;
width: 100%;
height: 44px;
padding: 0 18px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border: 0;
border-radius: 12px;
cursor: pointer;
font-weight: 600;
letter-spacing: .18px;
color: var(--brand-red);
background: linear-gradient(90deg, #f9f6f6 0%, #ffffff 48%, #f5ecee 100%);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px rgba(2, 6, 23, .08), 0 0 0 2px rgba(255, 255, 255, .80) inset;
position: relative;
overflow: hidden;
transition: filter .18s ease;
}

.btn-map:hover {
filter: brightness(.99);
}

.btn-map::after {
content: "";
position: absolute;
inset: -40% -120%;
background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 45%, rgba(255, 255, 255, 0) 60%);
transform: translateX(-120%) rotate(16deg);
opacity: 0;
pointer-events: none;
}

.btn-map:hover::after,
.btn-map:focus-visible::after {
animation: btnShimmer 1.2s ease-out 1 forwards;
}

@keyframes btnShimmer {
0% {
transform: translateX(-120%) rotate(16deg);
opacity: 0;
}

30% {
opacity: .18;
}

55% {
opacity: .28;
}

100% {
transform: translateX(120%) rotate(16deg);
opacity: 0;
}
}

.btn-map svg {
width: 18px;
height: 18px;
stroke: var(--brand-red);
fill: none;
stroke-width: 1.75;
stroke-linecap: round;
stroke-linejoin: round;
}

.btn-map svg * {
fill: none !important;
}

/* ===== MOBILE (≤980px): ordine, allineamenti e testi più piccoli ===== */
@media (max-width:980px) {
.where-header {
text-align: left;
}

/* stesse dimensioni mobile del titolo di "La nostra azienda" */
.pf-da-find__title {
font-size: clamp(36px, 9vw, 54px);
line-height: 1.1;
letter-spacing: -.3px;
}

/* linietta a sinistra su mobile */
.where-underline {
margin: 6px 0 10px 0;
}

/* ordine: mappa prima, poi contatti */
.map-box {
order: 1;
}

.info-card {
order: 2;
}

/* contatti più “carucci” e compatti */
.info-card__content {
padding: 16px;
}

.info-title {
font-size: 18px;
margin-bottom: 10px;
}

.info-list {
gap: 10px;
}

.info-item {
gap: 10px;
}

.info-icon {
width: 28px;
height: 28px;
border-radius: 8px;
}

.info-icon svg {
width: 16px;
height: 16px;
stroke-width: 1.6;
}

.info-label {
font-size: 11.5px;
}

.info-value {
font-size: 13.4px;
line-height: 1.48;
}
}

.full-bleed {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}

/* ===== Base / Variabili ===== */
#demasi-footer-v8.demasi-footer {
--grey-top: #8f959c;
--red-base: #c00018;
--container: min(1280px, 92vw);
--glass-sheen: linear-gradient(120deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, .16) 100%);
/* METAL (solo top) */
--metal-specular: rgba(255, 255, 255, .26);
--metal-specular-soft: rgba(255, 255, 255, .12);
--metal-edge-light: rgba(255, 255, 255, .18);
--metal-edge-soft: rgba(255, 255, 255, .10);
--metal-brushed-dark: rgba(0, 0, 0, .035);
--metal-brushed-light: rgba(255, 255, 255, .05);
--metal-lines-opacity: .12;
--metal-angle: 112deg;
--metal-band-start: 14%;
--metal-band-end: 44%;

font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
color: #fff;
position: relative;
overflow: hidden;
z-index: 0;
background: var(--grey-top);
}

.footer-container {
width: var(--container);
margin: 0 auto;
padding: 0 clamp(16px, 3vw, 28px);
position: relative;
z-index: 3;
}

.footer-top,
.footer-bottom {
position: relative;
z-index: 0;
}

/* ===== TOP grigio (più compatto) ===== */
.footer-top {
background: var(--grey-top);
padding: clamp(42px, 4.6vw, 68px) 0;
/* ridotto */
text-align: center;
overflow: hidden;
}

.footer-top::before,
.footer-top::after {
content: "";
position: absolute;
inset: -1px 0 0;
pointer-events: none;
z-index: 1;
}

.footer-top::before {
background:
linear-gradient(var(--metal-angle), transparent 0%, transparent calc(var(--metal-band-start) - 6%), var(--metal-specular) var(--metal-band-start), var(--metal-specular-soft) var(--metal-band-end), transparent calc(var(--metal-band-end) + 8%)),
linear-gradient(90deg, var(--metal-edge-light), var(--metal-edge-soft) 14%, rgba(255, 255, 255, 0) 40%),
linear-gradient(-90deg, var(--metal-edge-light), var(--metal-edge-soft) 14%, rgba(255, 255, 255, 0) 40%),
radial-gradient(900px 520px at 15% -20%, rgba(255, 255, 255, .14), transparent 60%),
radial-gradient(700px 380px at 30% 35%, rgba(255, 255, 255, .10), transparent 65%),
radial-gradient(900px 520px at 85% 120%, rgba(0, 0, 0, .12), transparent 60%),
linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 35%, rgba(0, 0, 0, .05) 100%);
opacity: .98;
}

.footer-top::after {
background: repeating-linear-gradient(90deg, var(--metal-brushed-light) 0 1px, var(--metal-brushed-dark) 1px 2px);
opacity: var(--metal-lines-opacity);
-webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
-webkit-mask-composite: source-in;
mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.top-overlay {
position: absolute;
inset: 0;
z-index: 2;
pointer-events: none;
background: var(--glass-sheen), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
backdrop-filter: blur(8px) saturate(125%);
-webkit-backdrop-filter: blur(8px) saturate(125%);
animation: sheen-move 8s linear infinite;
opacity: .92;
}

@keyframes sheen-move {
0% {
background-position: -40% 0, 0 0
}

100% {
background-position: 140% 0, 0 0
}
}

/* Titolo/sottotitolo più grandi */
.cta-head {
max-width: 960px;
margin: 0 auto clamp(12px, 2.6vw, 20px);
}

.cta-title {
margin: 0 0 8px;
font-weight: 600;
letter-spacing: -.01em;
line-height: 1.14;
font-size: clamp(28px, 3.2vw, 40px);
color: #fff;
}

.cta-subtitle {
margin: 0;
color: #f1f5f9;
font-weight: 500;
font-size: clamp(15px, 1.5vw, 19px);
line-height: 1.48;
}

/* CTA su una riga, più grandi, no wrap */
.cta-actions {
display: flex;
flex-direction: row;
justify-content: center;
gap: 14px;
margin-top: clamp(12px, 2vw, 18px);
flex-wrap: nowrap;
}

.btn {
border: 1.8px solid rgba(255, 255, 255, 0.95);
background: transparent;
color: #fff;
padding: 13px 22px;
border-radius: 10px;
font-weight: 600;
font-size: 15.5px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform .25s cubic-bezier(.2, .8, .2, 1), background .2s ease, color .2s ease, border-color .2s ease;
white-space: nowrap;
min-width: 220px;
}

.btn:hover {
transform: translateY(-2px);
background: rgba(255, 255, 255, .10);
border-color: #fff;
}

.btn-ghost-alt {
border-color: rgba(255, 255, 255, .9);
background: rgba(255, 255, 255, .08);
}

.btn-ghost-alt:hover {
background: rgba(255, 255, 255, .14);
}

/* ===== BOTTOM rosso ===== */
.footer-bottom {
background: linear-gradient(180deg, var(--red-base) 0%, color-mix(in srgb, var(--red-base) 80%, #8b000e 20%) 100%);
padding: clamp(16px, 2.6vw, 28px) 0;
overflow: hidden;
margin-top: -1px;
position: relative;
}

.bottom-overlay {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background: var(--glass-sheen), linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
backdrop-filter: blur(8px) saturate(120%);
-webkit-backdrop-filter: blur(8px) saturate(120%);
animation: sheen-move 8s linear infinite;
opacity: .9;
}

/* Watermark: nascosto su desktop */
.footer-watermark {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -22px;
width: min(1200px, 100vw);
height: auto;
opacity: 0;
z-index: 2;
pointer-events: none;
user-select: none;
filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .08));
}

/* Colonne rosse (desktop) */
.footer-cols {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: end;
column-gap: clamp(24px, 4vw, 56px);
}

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

.brand-logo {
width: clamp(170px, 18vw, 220px);
height: auto;
margin: 0;
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.brand-name {
white-space: nowrap;
text-transform: uppercase;
font-weight: 600;
font-size: 17px;
letter-spacing: .26px;
margin: 2px 0 0 10px;
}

.brand-piva {
display: none;
}

/* visibile solo su mobile */

.footer-info {
margin-top: clamp(10px, 1.8vw, 14px);
}

.info-columns {
display: grid;
grid-template-columns: auto auto;
justify-content: center;
align-items: start;
column-gap: clamp(28px, 3.8vw, 64px);
row-gap: 0;
}

.info-columns .col {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-start;
}

.label {
font-weight: 600;
}

.colon {
opacity: .8;
}

.value {
min-width: 0;
}

/* email/telefono SEMPRE bianchi */
.footer-info a,
.footer-info a.value,
.footer-info .value {
color: #fff !important;
border-bottom: 1px dotted rgba(255, 255, 255, .55);
font-weight: 500;
}

.footer-info a:visited {
color: #fff !important;
}

.footer-legal {
margin-top: clamp(14px, 2vw, 20px);
}

.legal-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.legal-list a {
color: #fff;
text-decoration: none;
font-weight: 500;
border-bottom: 1px dotted rgba(255, 255, 255, .55);
}

.legal-list a:hover {
opacity: 1;
}

.footer-copy {
	border-top: 1px solid rgba(255, 255, 255, .25);
	padding-top: clamp(6px, 1vw, 10px);
	font-size: 13px;
	color: #fff;
	text-align: center;
	opacity: .98;
	margin-top: clamp(6px, 1vw, 10px);
}

.footer-powered {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .92);
	background: linear-gradient(135deg, rgba(255, 42, 122, .14), rgba(255, 42, 61, .10));
	border: 1px solid rgba(255, 42, 122, .20);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.footer-powered a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, .60);
}

.footer-powered a:hover {
	opacity: .95;
}

.footer-powered__sep {
	opacity: .85;
}

/* Fine-tuning desktop originale */
.footer-brand .brand-logo {
margin-left: -12px !important;
margin-top: clamp(8px, 1.2vw, 14px) !important;
}

.footer-brand .brand-name {
margin-left: 4px;
}

.footer-info {
margin-top: clamp(4px, .8vw, 10px) !important;
}

.footer-bottom {
padding-top: clamp(8px, 1.2vw, 14px) !important;
padding-bottom: clamp(10px, 1.6vw, 16px) !important;
}

.footer-bottom .footer-container {
padding-left: clamp(4px, 1vw, 12px);
padding-right: clamp(8px, 1.6vw, 16px);
}

/* ===== MOBILE (≤640px) ===== */
@media (max-width:640px) {

/* CTA */
.footer-top {
padding: 26px 0;
}

.cta-title {
font-size: clamp(20px, 6vw, 28px);
}

.cta-subtitle {
font-size: 12.8px;
line-height: 1.45;
}

.cta-actions {
gap: 8px;
}

.btn {
padding: 10px 14px;
font-size: 12.8px;
border-radius: 9px;
flex: 1 1 0;
min-width: 0;
}

/* Watermark molto più in basso (solo zona rossa) */
.footer-watermark {
opacity: .20;
width: min(1500px, 140vw);
bottom: -88px;
/* <<— spinto più giù: resta SOLO nel rosso */
}

/* Nascondi il logo pieno; mostra brand + P. IVA sotto */
.brand-logo {
display: none !important;
}

.brand-name {
font-size: 14px;
margin: 0 0 2px 0;
}

.brand-piva {
display: block;
font-size: 12.6px;
font-weight: 500;
opacity: .95;
margin-top: 0;
}

/* Mostra TUTTE le info anche su mobile (layout stacked) */
.footer-cols {
grid-template-columns: 1fr;
row-gap: 14px;
}

.footer-cols>.footer-brand,
.footer-cols>.footer-info,
.footer-cols>.footer-legal {
grid-column: 1 / -1;
justify-self: start;
text-align: left;
}

.footer-info {
display: block !important;
margin-top: 8px !important;
}

.info-columns {
grid-template-columns: 1fr;
justify-content: start;
row-gap: 10px;
}

.info-columns .col {
gap: 6px;
}

.footer-info .pair {
display: grid;
grid-template-columns: auto auto 1fr;
column-gap: 6px;
align-items: baseline;
}

.footer-info .label {
font-size: 12px;
font-weight: 700;
opacity: .95;
}

.footer-info .colon,
.footer-info .value {
font-size: 12px;
}

.footer-legal .legal-list {
align-items: flex-start;
}

.footer-legal .legal-list a {
font-size: 12px;
font-weight: 600;
border-bottom: 1px dotted rgba(255, 255, 255, .45);
}

.footer-bottom {
padding: 10px 0 12px !important;
}

.footer-container {
padding-left: clamp(10px, 2.4vw, 16px);
padding-right: clamp(10px, 2.4vw, 16px);
}

.footer-copy {
font-size: 12.4px;
}
}


/* ===== EXTRA SCALE: schermi grandi (v2) ===== */
@media (min-width: 1680px) {
  /* La nostra azienda */
  .da-about {
    --visual-w: min(920px, 50vw);
    --left-nudge: -18px;
    --right-nudge: 18px;
  }

  .da-about__inner {
    max-width: min(2160px, 94vw);
    padding: 28px clamp(24px, 3.2vw, 72px) 108px;
    gap: clamp(34px, 3.6vw, 92px);
  }

  .about-desc {
    font-size: clamp(18px, 1.1vw, 22px);
    max-width: 64ch;
  }

  .about-stats {
    gap: 14px;
    max-width: 860px;
  }

  .stat {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .stat__num {
    font-size: 20px;
  }

  .stat__label {
    font-size: 18px;
  }

  /* Compra o vendi la tua auto */
  .da-services {
    --pad-top: 28px;
    --pad-bottom: 96px;
  }

  .da-s__inner {
    max-width: min(2160px, 94vw);
    padding-left: clamp(24px, 3.2vw, 72px);
    padding-right: clamp(24px, 3.2vw, 72px);
  }

  .da-s__grid {
    gap: clamp(22px, 2.6vw, 64px);
  }

  .svc-icon {
    width: 34px;
    height: 34px;
  }

  .svc-heading {
    font-size: 24px;
    line-height: 34px;
  }

  .svc-text {
    font-size: clamp(18px, 1.1vw, 21px);
  }

  .svc-cta {
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 16px;
  }

  .svc-visual img {
    width: clamp(420px, 92%, 920px);
  }

  /* Dove trovarci */
  .where-container {
    max-width: min(2160px, 94vw);
    padding: 92px clamp(24px, 3.2vw, 72px);
  }

  .where-grid {
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 32px;
  }

  .map-box {
    min-height: 420px;
    border-radius: 16px;
  }

  .info-card {
    border-radius: 16px;
  }

  .info-card__content {
    padding: 26px;
  }

  .info-title {
    font-size: 30px;
  }

  .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-basis: 36px;
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-label {
    font-size: 13.5px;
  }

  .info-value {
    font-size: 15.5px;
  }

  /* Footer */
  #demasi-footer-v8.demasi-footer {
    --container: min(1760px, 94vw);
  }

  .footer-top {
    padding: clamp(54px, 4.8vw, 86px) 0;
  }

  .cta-head {
    max-width: 1240px;
  }

  .cta-title {
    font-size: clamp(34px, 2.6vw, 48px);
  }

  .cta-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .cta-actions .btn {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
  }

  .footer-cols {
    column-gap: clamp(36px, 4vw, 96px);
  }

  .footer-info .label,
  .footer-info .value,
  .footer-info .colon {
    font-size: 14.5px;
  }

  .legal-list a {
    font-size: 14.5px;
  }

  .footer-copy {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  /* ancora più presente sui monitor grandi */
  .da-about__inner {
    max-width: min(2360px, 94vw);
    padding-left: clamp(28px, 3.4vw, 88px);
    padding-right: clamp(28px, 3.4vw, 88px);
  }

  .da-s__inner {
    max-width: min(2360px, 94vw);
    padding-left: clamp(28px, 3.4vw, 88px);
    padding-right: clamp(28px, 3.4vw, 88px);
  }

  .where-container {
    max-width: min(2360px, 94vw);
    padding-left: clamp(28px, 3.4vw, 88px);
    padding-right: clamp(28px, 3.4vw, 88px);
  }

  #demasi-footer-v8.demasi-footer {
    --container: min(2048px, 94vw);
  }
}
