/* ===========================
   VARIABILI
=========================== */
:root {
    --black:       #050505;
    --black-2:     #0b0b0b;
    --black-3:     #121212;
    --white:       #f8f8f4;
    --silver:      #cacac5;
    --silver-soft: #a2a29b;
    --red:         #c81f32;
    --red-light:   #de3144;
    --red-dark:    #941222;
    --radius:      30px;
    --max:         1160px;
    --shadow:      0 34px 90px rgba(0,0,0,.52);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background:
        radial-gradient(circle at 14% 4%, rgba(200,31,50,.13), transparent 30rem),
        radial-gradient(circle at 92% 18%, rgba(200,31,50,.10), transparent 34rem),
        linear-gradient(180deg, #020202 0%, #050505 48%, #090909 100%);
    background-attachment: fixed;
    color: var(--white);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===========================
   LAYOUT
=========================== */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 100px 0; }

/* ===========================
   HEADER
=========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,31,50,.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
}
.site-logo__img {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(200,31,50,.3));
    transition: filter .3s;
}
.site-logo:hover .site-logo__img {
    filter: drop-shadow(0 0 14px rgba(200,31,50,.6));
}

.site-nav .nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-nav .nav-list a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color .2s;
}

.site-nav .nav-list a:hover { color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: .3s;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius);
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .24s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
}
.btn-primary:hover { opacity: .85; transform: translateY(-2px); }

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--red);
    color: var(--white);
}
.btn-secondary:hover { background: rgba(200,31,50,.12); transform: translateY(-2px); }

/* ===========================
   KICKER
=========================== */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.kicker::before,
.kicker::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--red);
}

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    position: relative;
}

/* Intro overlay */
@keyframes introLogoIn {
    from { opacity: 0; transform: translateY(20px) scale(.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes introKickerIn {
    from { opacity: 0; letter-spacing: .6em; }
    to   { opacity: 1; letter-spacing: .4em; }
}
@keyframes introLineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.45s ease;
    will-change: opacity;
}
.intro-overlay.is-done { opacity: 0; pointer-events: none; }

.intro-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.intro-overlay__logo {
    width: 540px;
    opacity: 0;
    animation: introLogoIn .8s cubic-bezier(.22,1,.36,1) .3s forwards;
}
.intro-overlay__kicker {
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    color: var(--red);
    letter-spacing: .4em;
    text-transform: uppercase;
    opacity: 0;
    animation: introKickerIn .7s ease .9s forwards;
}
.intro-overlay__line {
    width: 180px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    animation: introLineGrow .6s cubic-bezier(.22,1,.36,1) 1.3s forwards;
}

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

.hero__content { max-width: 800px; }

.hero__content .kicker,
.hero__title,
.hero__sub,
.hero__cta {
    opacity: 0;
}
.hero--loaded .kicker  { animation: heroIn .7s cubic-bezier(.22,1,.36,1) .1s forwards; }
.hero--loaded .hero__title { animation: heroIn .8s cubic-bezier(.22,1,.36,1) .35s forwards; }
.hero--loaded .hero__sub   { animation: heroIn .7s cubic-bezier(.22,1,.36,1) .65s forwards; }
.hero--loaded .hero__cta   { animation: heroIn .7s cubic-bezier(.22,1,.36,1) .85s forwards; }

.hero__title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero__sub {
    font-size: 1rem;
    color: var(--silver);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.intro-overlay__car {
    width: min(55vw, 520px);
    margin-top: .4rem;
    opacity: 0;
    animation: introLogoIn .9s cubic-bezier(.22,1,.36,1) 1.4s forwards;
    filter: drop-shadow(0 0 28px rgba(200,31,50,.3));
}
.intro-overlay__car svg {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleX(-1);
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   FEATURED CAR
=========================== */
.featured-car {
    position: relative;
    min-height: 540px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.featured-car__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,.92) 40%, rgba(5,5,5,.2) 100%);
}
.featured-car__content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 600px;
}
.featured-car__marca {
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--red);
    margin: .4rem 0 .6rem;
}
.featured-car__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.featured-car__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: var(--silver-soft);
    font-size: .9rem;
}
.featured-car__prezzo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-top: .5rem;
}

/* ===========================
   VETRINA HEADER (titolo + filtri)
=========================== */
.vetrina-header {
    padding: 140px 0 2.5rem;
}
.vetrina-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-top: .5rem;
    margin-bottom: 2.5rem;
}
.vetrina-section {
    padding-bottom: 5rem;
}

/* ===========================
   SECTION TITLES
=========================== */
.section__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 3.5rem;
}
.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 1rem auto 0;
}

/* ===========================
   CARS GRID
=========================== */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===========================
   VETRINA BANNER LIST
=========================== */
.vetrina-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2rem;
}
.vetrina-banner {
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 540px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s ease;
}
.vetrina-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,.92) 40%, rgba(5,5,5,.2) 100%);
    transition: background .3s;
}
.vetrina-banner:hover .vetrina-banner__overlay {
    background: linear-gradient(to right, rgba(5,5,5,.96) 40%, rgba(5,5,5,.3) 100%);
}
.vetrina-banner__content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 600px;
}
.vetrina-banner__marca {
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--red);
    margin: .4rem 0 .6rem;
}
.vetrina-banner__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    color: var(--white);
}
.vetrina-banner__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: var(--silver-soft);
    font-size: .9rem;
    align-items: center;
}
.vetrina-banner__prezzo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
}

.section__cta {
    text-align: center;
    margin-top: 3rem;
}

.no-cars {
    color: var(--silver-soft);
    text-align: center;
    padding: 3rem 0;
    grid-column: 1/-1;
}

/* ===========================
   CARD AUTO
=========================== */
.card-auto {
    display: block;
    background: rgba(18,18,18,0.7);
    border: 1px solid rgba(200,31,50,.18);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    transition: transform .3s ease, border-color .3s ease;
    text-decoration: none;
}
.card-auto:hover {
    transform: translateY(-4px);
    border-color: rgba(200,31,50,.45);
}

.card-auto__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.card-auto__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.98) contrast(1.03);
    transition: transform .7s ease, filter .7s ease;
}
.card-auto:hover .card-auto__image img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1.05);
}
.card-auto__no-image {
    width: 100%;
    height: 100%;
    background: var(--black-3);
}

.card-auto__image .badge-disponibile,
.card-auto__image .badge-venduta {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card-auto__body { padding: 1.5rem; }

.card-auto__marca {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.card-auto__modello {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: .75rem;
}

.card-auto__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-auto__anno {
    font-size: 0.85rem;
    color: var(--silver-soft);
}

.card-auto__prezzo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--red-light);
}

/* ===========================
   BADGES
=========================== */
  .badge-disponibile {
      display: inline-block;
      background: rgba(0, 0, 0, 0.60);
      color: #22c55e;
      border: 1px solid rgba(34, 197, 94, 0.85);
      font-family: 'Orbitron', sans-serif;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: .25rem .875rem;
      border-radius: 20px;
      box-shadow: 0 0 12px rgba(34, 197, 94, 0.30);
  }

  .badge-venduta {
      display: inline-block;
      background: rgba(0, 0, 0, 0.60);
      color: #ff3352;
      border: 1px solid rgba(200, 31, 50, 0.85);
      font-family: 'Orbitron', sans-serif;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: .25rem .875rem;
      border-radius: 20px;
      box-shadow: 0 0 12px rgba(200, 31, 50, 0.30);
  }
/* ===========================
   FILTRI VETRINA
=========================== */
.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.filter-group:last-of-type { margin-bottom: 2.5rem; }
.filter-label {
    font-family: 'Orbitron', sans-serif;
    font-size: .65rem;
    font-weight: 800;
    color: var(--silver-soft);
    letter-spacing: .25em;
    text-transform: uppercase;
    min-width: 50px;
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.filter-btn {
    padding: .5rem 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(200,31,50,.3);
    color: var(--silver);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ===========================
   PAGINAZIONE
=========================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}
.pagination a,
.pagination span {
    padding: .5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(200,31,50,.25);
    color: var(--silver);
    font-size: .85rem;
    transition: all .2s;
}
.pagination a:hover,
.pagination .current {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ===========================
   SINGLE AUTO
=========================== */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--silver-soft);
    font-size: .85rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color .2s;
}
.btn-back:hover { color: var(--white); }

.single-auto__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.single-auto__img {
    width: 100%;
    border-radius: var(--radius);
    filter: saturate(.98) contrast(1.03);
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
}
.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--red);
}

.btn--scopri {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.96);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__close {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--red);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: .7rem 1.6rem;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.lightbox__close:hover { opacity: .8; }
.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__nav:hover { background: var(--red); }
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    font-family: var(--font-body);
}

.single-auto__marca { font-size: .7rem; }
.single-auto__title { font-size: clamp(1.8rem, 4vw, 3rem); margin: .5rem 0; }
.single-auto__anno { color: var(--silver-soft); font-size: .9rem; margin-bottom: .75rem; }
.single-auto__prezzo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    margin: 1rem 0;
}

/* Specifiche */
.specs-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.specs-table tr:nth-child(even) td { background: var(--black-2); }
.specs-table td { padding: .875rem 1rem; border-bottom: 1px solid rgba(200,31,50,.1); }
.specs-label {
    color: var(--silver-soft);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    width: 45%;
}
.specs-value { color: var(--white); font-weight: 600; text-align: right; }

/* Bottone vedi dati completi */
.btn-full-specs {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: .75rem 0 1.25rem;
    padding: .55rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(200,31,50,.5);
    border-radius: 50px;
    color: var(--red);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-full-specs:hover { background: var(--red); color: var(--white); }

/* Modale dati tecnici */
.specs-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.specs-modal.open { display: flex; }
.specs-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,2,2,.85);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.specs-modal__box {
    position: relative;
    z-index: 1;
    background: var(--black-3);
    border: 1px solid rgba(200,31,50,.2);
    border-radius: var(--radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
}
.specs-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: var(--silver-soft);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}
.specs-modal__close:hover { color: var(--red); }
.specs-modal__title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(200,31,50,.2);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
}
.specs-modal__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.specs-modal__item {
    padding: .9rem .5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.specs-modal__label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--silver-soft);
    margin-bottom: .3rem;
}
.specs-modal__value {
    display: block;
    font-size: .92rem;
    color: var(--white);
    font-weight: 500;
}
@media (max-width: 640px) { .specs-modal__grid { grid-template-columns: repeat(2, 1fr); } }

.single-auto__desc { margin: 1.5rem 0; color: var(--silver); line-height: 1.7; }

.divider-red {
    border: none;
    border-top: 1px solid rgba(200,31,50,.3);
    margin: 2rem 0;
}

/* Video inline (sotto le foto) */
.video-wrap--inline {
    margin-top: 1.2rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}
.video-wrap--inline iframe {
    display: block;
    width: 100%;
    height: auto;
    border: none;
}
.video-wrap--verticale {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.video-wrap--verticale iframe {
    aspect-ratio: 9 / 16;
}
.video-wrap--orizzontale iframe {
    aspect-ratio: 16 / 9;
}

/* Box contatti */
.contact-box { background: rgba(18,18,18,.7); border: 1px solid rgba(200,31,50,.18); border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(16px); }
.contact-box__title { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* ===========================
   ABOUT SECTION
=========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-text p { color: var(--silver); line-height: 1.8; margin-bottom: 1rem; }
.about-text .btn { margin-top: 1rem; }
.about-image__placeholder {
    aspect-ratio: 4/3;
    background: var(--black-3);
    border-radius: var(--radius);
    border: 1px solid rgba(200,31,50,.15);
}
.about-image__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    filter: saturate(.98) contrast(1.03);
}

/* ===========================
   CTA SECTION
=========================== */
.section--cta {
    border-top: 1px solid rgba(200,31,50,.15);
    border-bottom: 1px solid rgba(200,31,50,.15);
    background: rgba(200,31,50,.04);
    text-align: center;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--silver); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CONTATTI PAGE
=========================== */
.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contatti-form h2,
.contatti-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-list li { display: flex; flex-direction: column; gap: .25rem; }
.info-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--silver-soft); }
.info-value { color: var(--white); font-weight: 500; }
.info-link { color: var(--red-light); transition: color .2s; }
.info-link:hover { color: var(--white); }

/* ===========================
   CONTACT FORM 7 OVERRIDE
=========================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select {
    background: rgba(18,18,18,.8);
    border: 1px solid rgba(200,31,50,.25);
    color: var(--white);
    padding: 1rem;
    border-radius: 14px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: border-color .2s;
    margin-bottom: .75rem;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--red);
    outline: none;
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid { border-color: #ff4444; }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    padding: .875rem 2.25rem;
    transition: opacity .24s, transform .24s;
    margin-top: .5rem;
}
.wpcf7 input[type="submit"]:hover { opacity: .85; transform: translateY(-2px); }
.wpcf7-response-output { margin-top: 1rem !important; border-radius: 10px !important; padding: .75rem 1rem !important; font-size: .85rem !important; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #020202;
    border-top: 1px solid rgba(200,31,50,.15);
    padding: 5rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-logo__img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: .75rem;
    opacity: .85;
}
.footer-tagline { color: var(--silver-soft); font-size: .85rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-instagram { display: inline-flex; align-items: center; gap: .5rem; color: var(--silver); font-size: .85rem; transition: color .2s; }
.footer-instagram:hover { color: var(--red-light); }
.footer-heading { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--silver-soft); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: var(--silver); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(200,31,50,.1);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { color: var(--silver-soft); font-size: .78rem; }

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .cars-grid { grid-template-columns: repeat(2, 1fr); }
    .single-auto__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5,5,5,.98);
        border-bottom: 1px solid rgba(200,31,50,.2);
        padding: 1.5rem 2rem;
    }
    .site-nav.open { display: block; }
    .site-nav .nav-list { flex-direction: column; gap: 1.25rem; }
    .contatti-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    .cars-grid { grid-template-columns: 1fr; }
    .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .section { padding: 70px 0; }
}

/* ===========================
   GF SELECT (dropdown filtri)
=========================== */
.gf-filters {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.gf-select {
    position: relative;
    min-width: 210px;
}
.gf-select__trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 18px;
    height: 52px;
    background: rgba(14,14,14,.85);
    border: 1px solid rgba(200,31,50,.28);
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: border-color .22s, background .22s, box-shadow .22s;
    user-select: none;
    box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.gf-select__trigger:hover {
    border-color: rgba(200,31,50,.56);
    background: rgba(20,20,20,.92);
    box-shadow: 0 6px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(200,31,50,.1);
}
.gf-select.is-open .gf-select__trigger {
    border-color: rgba(200,31,50,.65);
    background: rgba(20,20,20,.96);
    box-shadow: 0 6px 32px rgba(0,0,0,.32), 0 0 0 1px rgba(200,31,50,.14);
}
.gf-select__label {
    font-family: 'Orbitron', sans-serif;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--red-light);
    flex-shrink: 0;
    padding-right: 14px;
}
.gf-select__sep {
    width: 1px;
    height: 20px;
    background: rgba(200,31,50,.28);
    flex-shrink: 0;
    margin-right: 14px;
}
.gf-select__value {
    flex: 1;
    text-align: left;
    font-size: .86rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .02em;
}
.gf-select__chevron {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--silver-soft);
    transition: transform .22s cubic-bezier(.22,1,.36,1), color .2s;
    margin-left: 10px;
}
.gf-select.is-open .gf-select__chevron {
    transform: rotate(180deg);
    color: var(--red-light);
}
.gf-select__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10,10,10,.97);
    border: 1px solid rgba(200,31,50,.26);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 70px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.03);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s cubic-bezier(.22,1,.36,1);
    transform-origin: top center;
}
.gf-select.is-open .gf-select__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.gf-select__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--silver);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .14s, color .14s, padding-left .14s;
}
.gf-select__option:last-child { border-bottom: 0; }
.gf-select__option:hover {
    background: rgba(200,31,50,.1);
    color: var(--white);
    padding-left: 24px;
}
.gf-select__option.is-active {
    color: var(--white);
    font-weight: 700;
    background: rgba(200,31,50,.07);
}
.gf-select__option.is-active::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red-light);
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .gf-filters { flex-direction: column; gap: 10px; }
    .gf-select { min-width: 0; width: 100%; }
}

/* ===========================
   VETRINA TRANSITION
=========================== */
.gf-trans {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}
.gf-trans.is-active {
    opacity: 1;
    pointer-events: auto;
}
.gf-trans__counter {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    font-family: 'Orbitron', sans-serif;
}
#gf-trans-speed {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.02em;
}
.gf-trans__unit {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--silver-soft);
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ===========================
   NOLEGGIO PAGE
=========================== */
.page-noleggio h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: -.03em;
    line-height: .98;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}
.page-noleggio h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -.03em;
    line-height: .98;
    text-transform: uppercase;
}
.page-noleggio .section-head .kicker::before {
    content: "";
    width: 56px;
    height: 1px;
    background: linear-gradient(to left, var(--red), transparent);
    opacity: .75;
}
.nl-service-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: stretch;
}
.nl-media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(200,31,50,.32);
    background: #0f0f0f;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    transition: transform .24s ease, border-color .24s ease;
}
.nl-media-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
    pointer-events: none;
    z-index: 1;
}
.nl-media-card:hover { transform: translateY(-4px); border-color: rgba(222,49,68,.55); }
.nl-model-compare {
    --split: 50%;
    display: grid;
    min-height: 560px;
    isolation: isolate;
    cursor: pointer;
    touch-action: none;
}
.nl-model-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .45s ease;
}
.nl-model-compare:hover img { transform: scale(1.035); }
.nl-model-compare__after  { z-index: 1; }
.nl-model-compare__before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--split)) 0 0);
    will-change: clip-path;
    transform: translateZ(0);
}
.nl-model-compare__shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,.48), transparent 32%, transparent 68%, rgba(0,0,0,.42)),
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.58));
}
.nl-model-compare__labels {
    position: absolute;
    inset: 24px auto auto 24px;
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.nl-model-pill {
    min-width: 128px;
    padding: 10px 14px;
    border: 1px solid rgba(222,49,68,.5);
    border-radius: 999px;
    color: var(--white);
    background: rgba(5,5,5,.62);
    backdrop-filter: blur(12px);
    font-family: 'Orbitron', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}
.nl-model-discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: rgba(248,248,244,.9);
    background: transparent;
    font-family: 'Orbitron', sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s, transform .2s;
}
.nl-model-discover::after { content: "→"; color: var(--red-light); font-size: .82rem; }
.nl-model-discover:hover  { color: var(--white); transform: translateX(4px); }
.nl-model-compare__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--split);
    z-index: 6;
    width: 2px;
    padding: 0;
    border: 0;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--red-light), var(--red), transparent);
    box-shadow: 0 0 28px rgba(222,49,68,.34);
    cursor: ew-resize;
}
.nl-model-compare__handle::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 38px; height: 38px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(222,49,68,.72);
    background: linear-gradient(90deg, transparent 42%, rgba(222,49,68,.72) 42% 58%, transparent 58%), rgba(5,5,5,.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0,0,0,.46);
}
.nl-model-compare__hint {
    position: absolute;
    left: 28px; bottom: 28px;
    z-index: 9;
    pointer-events: none;
    max-width: 310px;
    margin: 0;
    color: rgba(248,248,244,.84);
    font-size: .9rem;
    font-weight: 600;
}
.nl-content-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(200,31,50,.32);
    background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(9,9,9,.94));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    padding: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform .24s ease, border-color .24s ease;
}
.nl-content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
    pointer-events: none;
}
.nl-content-card:hover { transform: translateY(-4px); border-color: rgba(222,49,68,.55); }
.nl-gold-line {
    display: block;
    width: 72px;
    height: 1px;
    margin-bottom: 26px;
    background: linear-gradient(to right, var(--red-light), transparent);
    opacity: .75;
}
.nl-intro {
    margin: 18px 0 30px;
    color: var(--silver);
    font-size: .98rem;
    font-weight: 500;
}
.nl-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    gap: 18px;
}
.nl-check-list li {
    display: flex;
    gap: 14px;
    color: var(--white);
    font-size: .96rem;
    font-weight: 600;
}
.nl-check-list li::before {
    content: "✓";
    flex: 0 0 24px;
    width: 24px; height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--red-light);
    background: rgba(200,31,50,.12);
    border: 1px solid rgba(200,31,50,.36);
    font-size: .78rem;
    font-weight: 900;
    margin-top: 1px;
}
.nl-journey-strip {
    margin-top: 26px;
    padding: 24px 28px;
    border: 1px solid rgba(200,31,50,.24);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18,18,18,.9), rgba(10,10,10,.86));
    box-shadow: 0 24px 64px rgba(0,0,0,.24);
}
.nl-journey-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.nl-journey-step {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(200,31,50,.18);
    border-radius: 20px;
    background: rgba(255,255,255,.02);
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.nl-journey-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%; right: -18px;
    transform: translateY(-50%);
    color: var(--red-light);
    font-family: 'Orbitron', sans-serif;
    font-size: .8rem;
    font-weight: 800;
}
.nl-journey-step:hover { transform: translateY(-4px); border-color: rgba(222,49,68,.44); background: rgba(255,255,255,.035); }
.nl-journey-step__index {
    display: block;
    margin-bottom: 10px;
    color: var(--red-light);
    font-family: 'Orbitron', sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.nl-journey-step strong {
    display: block;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}
.nl-journey-step p { margin: 8px 0 0; color: var(--silver); font-size: .87rem; line-height: 1.45; }
.nl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.nl-benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(200,31,50,.32);
    background: rgba(16,16,16,.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    min-height: 218px;
    padding: 26px 22px;
    transition: transform .24s ease, border-color .24s ease;
}
.nl-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
    pointer-events: none;
    z-index: 1;
}
.nl-benefit-card:hover { transform: translateY(-4px); border-color: rgba(222,49,68,.55); }
.nl-benefit-number {
    display: block;
    margin-bottom: 16px;
    color: var(--red-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    position: relative;
    z-index: 3;
}
.nl-benefit-card h3,
.nl-benefit-card p { position: relative; z-index: 3; }
.nl-benefit-card p { margin: 12px 0 0; color: var(--silver); font-size: .92rem; }
.nl-instagram-wrap { padding-bottom: 96px; }
.nl-instagram-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(200,31,50,.32);
    background: linear-gradient(180deg, rgba(18,18,18,.94), rgba(9,9,9,.92));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    transition: transform .24s ease, border-color .24s ease;
}
.nl-instagram-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
    pointer-events: none;
}
.nl-instagram-card > * { position: relative; z-index: 3; }
.nl-instagram-title { max-width: 720px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.nl-instagram-text { max-width: 720px; margin: 18px 0 0; color: var(--silver); font-size: 1rem; font-weight: 500; }
.nl-insta-btn { min-width: 210px; gap: 8px; }
.nl-icon { width: 18px; height: 18px; flex-shrink: 0; }
/* Gallery overlay */
.nl-gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.nl-gallery-overlay.is-open { opacity: 1; pointer-events: auto; }
.nl-gallery-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(200,31,50,.16), transparent 28rem), rgba(3,3,3,.88);
    backdrop-filter: blur(14px);
    cursor: pointer;
}
.nl-gallery-overlay__panel {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    min-height: min(88vh, 860px);
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(200,31,50,.3);
    background: linear-gradient(180deg, rgba(14,14,14,.98), rgba(7,7,7,.96));
    box-shadow: 0 40px 120px rgba(0,0,0,.56);
}
.nl-gallery-overlay__media {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #070707;
}
.nl-gallery-overlay__image { width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease; }
.nl-gallery-overlay__content {
    display: flex;
    flex-direction: column;
    padding: 34px 30px 28px;
    border-left: 1px solid rgba(200,31,50,.16);
}
.nl-gallery-overlay__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.nl-gallery-overlay__eyebrow {
    color: var(--red-light);
    font-family: 'Orbitron', sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.nl-gallery-close {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(200,31,50,.34);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.03);
    font-family: 'Orbitron', sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s, border-color .2s;
}
.nl-gallery-close:hover { transform: translateY(-2px); border-color: rgba(222,49,68,.62); }
.nl-gallery-overlay__title { margin: 0; font-size: clamp(2rem, 3vw, 3.3rem); }
.nl-gallery-overlay__text { margin: 18px 0 24px; color: var(--silver); font-size: .98rem; }
.nl-gallery-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 8px 14px;
    border: 1px solid rgba(200,31,50,.28);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.03);
    font-family: 'Orbitron', sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nl-gallery-copy { margin-bottom: 22px; }
.nl-gallery-nav { display: flex; gap: 12px; margin-top: auto; margin-bottom: 18px; }
.nl-gallery-nav-btn {
    min-width: 120px;
    min-height: 48px;
    border: 1px solid rgba(200,31,50,.34);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.03);
    font-family: 'Orbitron', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s, border-color .2s;
}
.nl-gallery-nav-btn:hover { transform: translateY(-2px); border-color: rgba(222,49,68,.62); }
.nl-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.nl-gallery-thumb {
    overflow: hidden;
    border: 1px solid rgba(200,31,50,.22);
    border-radius: 18px;
    padding: 0;
    color: inherit;
    background: rgba(255,255,255,.02);
    cursor: pointer;
    text-align: left;
    transition: transform .2s, border-color .2s;
}
.nl-gallery-thumb.is-active { border-color: rgba(222,49,68,.7); background: rgba(200,31,50,.1); }
.nl-gallery-thumb img { width: 100%; aspect-ratio: 1.2 / 1; object-fit: cover; }
.nl-gallery-thumb span { display: block; padding: 10px 12px 12px; font-size: .76rem; font-weight: 700; color: var(--silver); }
.nl-gallery-thumb:hover { transform: translateY(-2px); border-color: rgba(222,49,68,.5); }
/* Responsive noleggio */
@media (max-width: 1100px) {
    .nl-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .nl-service-grid { grid-template-columns: 1fr; }
    .nl-model-compare { min-height: 460px; }
    .nl-journey-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nl-journey-step:nth-child(2)::after { display: none; }
    .nl-gallery-overlay { padding: 18px; }
    .nl-gallery-overlay__panel { grid-template-columns: 1fr; grid-template-rows: minmax(260px, 46%) 1fr; height: min(88vh, 860px); min-height: unset; }
    .nl-gallery-overlay__media { min-height: unset; }
    .nl-gallery-overlay__content { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; border-left: 0; border-top: 1px solid rgba(200,31,50,.16); }
    .nl-instagram-card { grid-template-columns: 1fr; }
    .nl-insta-btn { width: 100%; min-width: unset; }
}
@media (max-width: 580px) {
    .page-noleggio h1 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
    .nl-content-card,
    .nl-instagram-card,
    .nl-benefit-card { padding: 24px; border-radius: 22px; }
    .nl-model-compare { min-height: 360px; border-radius: 22px; }
    .nl-journey-strip { padding: 18px; border-radius: 22px; }
    .nl-journey-track { grid-template-columns: 1fr; gap: 12px; }
    .nl-journey-step::after { display: none; }
    .nl-model-compare img { transition: none; }
    .nl-gallery-overlay { padding: 0; align-items: flex-start; justify-content: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-y: contain; background: rgba(5,5,5,.97); }
    .nl-gallery-overlay__backdrop { display: none; }
    .nl-gallery-overlay__panel { display: flex; flex-direction: column; width: 100%; min-height: 100vh; height: auto; border-radius: 0; overflow: visible; box-shadow: none; }
    .nl-gallery-overlay__media { flex-shrink: 0; width: 100%; height: 56vw; min-height: 200px; max-height: 280px; overflow: hidden; }
    .nl-gallery-overlay__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .nl-gallery-overlay__content { overflow: visible; padding: 18px 16px 36px; border-left: 0; border-top: 1px solid rgba(200,31,50,.16); }
    .nl-gallery-overlay__topbar { margin-bottom: 16px; }
    .nl-gallery-overlay__text { margin: 10px 0 14px; font-size: .9rem; }
    .nl-gallery-copy { margin-bottom: 14px; }
    .nl-gallery-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0; margin-bottom: 14px; }
    .nl-gallery-nav-btn { min-width: 0; width: 100%; min-height: 42px; font-size: .72rem; }
    .nl-gallery-thumbs { display: flex; overflow-x: auto; overflow-y: hidden; gap: 8px; scrollbar-width: none; padding-bottom: 4px; }
    .nl-gallery-thumbs::-webkit-scrollbar { display: none; }
    .nl-gallery-thumb { flex: 0 0 90px; min-width: 90px; }
    .nl-gallery-thumb img { aspect-ratio: 4 / 3; }
    .nl-gallery-thumb span { padding: 6px 8px 8px; font-size: .7rem; }
    .nl-benefits-grid { grid-template-columns: 1fr; }
    .nl-insta-btn { width: 100%; }
}
