/* =========================================================
   VARIABILI GLOBALI
   Palette colori, ombre, raggi, container e transizioni
========================================================= */
:root {
    --color-primary: #FFD100;
    --color-black: #0A0A0A;
    --color-graphite: #1C1C1C;
    --color-light-grey: #F5F6F7;
    --color-divider: #E6E6E6;
    --color-white: #FFFFFF;
    --color-text-muted: #666666;

    --shadow-soft: 0 10px 30px rgba(10, 10, 10, 0.08);
    --shadow-soft-hover: 0 16px 38px rgba(10, 10, 10, 0.12);

    --radius-sm: 6px;
    --radius-md: 10px;

    --container-width: 1200px;
    --trustbar-height: 40px;
    --header-height: 76px;

    --transition-base: 0.24s ease;
}

/* =========================================================
   RESET BASE
   Normalizzazione elementi principali
========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--color-black);
    background: #fff;
}

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

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

h1,
h2,
h3,
p,
blockquote,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* =========================================================
   ACCESSIBILITÀ
   Testo visibile solo agli screen reader
========================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =========================================================
   LAYOUT GENERALE
========================================================= */
.site-wrapper {
    min-height: 100vh;
    overflow: clip;
}

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

.section {
    position: relative;
    padding: 64px 0;
}

/* =========================================================
   TITOLI DI SEZIONE
========================================================= */
.section-heading {
    margin-bottom: 28px;
}

.section-heading--centered {
    text-align: center;
}

.section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.section-heading h2,
.section-split__content h2 {
    font-size: clamp(2rem, 4vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* =========================================================
   TOP TRUST BAR
========================================================= */
.top-trustbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    min-height: var(--trustbar-height);
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-trustbar__list {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.top-trustbar__list::-webkit-scrollbar {
    display: none;
}

.top-trustbar__item {
    position: relative;
    flex: 0 0 auto;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.top-trustbar__item:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: sticky;
    top: var(--trustbar-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 16px;
}

/* Brand/logo */
.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-header__brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #0A0A0A;
    color: #FFD100;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-header__brand-text {
    display: grid;
    line-height: 1.15;
}

.site-header__brand-text strong {
    font-size: 0.98rem;
}

.site-header__brand-text span {
    font-size: 0.74rem;
    color: var(--color-text-muted);
}

/* Toggle menu mobile */
.site-header__toggle {
    justify-self: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-divider);
    background: #fff;
    border-radius: var(--radius-sm);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.site-header__toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: #0A0A0A;
}

/* Azioni header */
.site-header__actions {
    justify-self: end;
}

/* Navigazione mobile dropdown */
.site-header__nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-soft);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.site-header__nav.is-open {
    max-height: 360px;
    padding: 12px 20px 20px;
}

.site-header__menu {
    display: grid;
    gap: 10px;
}

.site-header__menu li {
    position: relative;
}

.site-header__menu a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    transition: color var(--transition-base);
}

/* Linea animata sotto i link menu */
.site-header__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition-base);
}

/* Stato hover/focus/current del menu */
.site-header__menu li:hover > a::after,
.site-header__menu li:focus-within > a::after,
.site-header__menu li.current-menu-item > a::after,
.site-header__menu li.current_page_item > a::after,
.site-header__menu li.current-menu-ancestor > a::after,
.site-header__menu li.current-page-ancestor > a::after,
.site-header__menu li.current-menu-parent > a::after,
.site-header__menu li.current_page_parent > a::after {
    transform: scaleX(1);
}

.site-header__menu li:hover > a,
.site-header__menu li:focus-within > a,
.site-header__menu li.current-menu-item > a,
.site-header__menu li.current_page_item > a,
.site-header__menu li.current-menu-ancestor > a,
.site-header__menu li.current-page-ancestor > a,
.site-header__menu li.current-menu-parent > a,
.site-header__menu li.current_page_parent > a {
    color: var(--color-black);
}

/* =========================================================
   BOTTONI
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background-color var(--transition-base),
        border-color var(--transition-base),
        color var(--transition-base);
}

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

.btn-primary {
    background: #FFD100;
    color: #000;
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border-color: rgba(10, 10, 10, 0.16);
}

.btn-secondary--light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
}

.btn-whatsapp {
    background: transparent;
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.6);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    background: #25D366;
    color: #000;
    border-color: #25D366;
}

/* =========================================================
   HERO GENERICO
========================================================= */
.section-hero {
    position: relative;
    padding: 0;
    color: #fff;
    background: #0A0A0A;
    height: 520px;
    overflow: hidden;
}

.section-hero__media,
.section-cta__media {
    position: absolute;
    inset: 0;
}

.section-hero__media img,
.section-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero__overlay,
.section-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.84) 0%, rgba(10, 10, 10, 0.64) 40%, rgba(10, 10, 10, 0.24) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.42) 100%);
}

.section-hero .container,
.section-cta .container {
    position: relative;
    z-index: 1;
}

.section-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.section-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 24px 0;
}

.section-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.section-hero__badge-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-hero__badge-logo-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.section-hero h1 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 24ch;
}

.section-hero__lead {
    margin-top: 14px;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.84);
}

.section-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.section-hero__actions,
.section-cta__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.section-hero__actions .btn,
.section-cta__actions .btn {
    min-width: 170px;
    text-align: center;
}

.section-cta__actions {
    justify-content: center;
    align-items: center;
}

/* =========================================================
   SEZIONE SERVIZI
========================================================= */
.section-services {
    background: #fff;
}

.section-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: transparent;
    transition: background-color var(--transition-base);
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-hover);
    border-color: rgba(10, 10, 10, 0.12);
}

.service-card:hover::before,
.service-card:focus-within::before {
    background: var(--color-primary);
}

.service-card__link {
    display: block;
    height: 100%;
    padding: 28px;
}

.service-card__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--color-light-grey);
    color: var(--color-black);
    transition:
        color var(--transition-base),
        background-color var(--transition-base);
}

.service-card__icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
    display: block;
}

.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon {
    background: rgba(255, 209, 0, 0.16);
    color: var(--color-black);
}

.service-card h3 {
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--color-text-muted);
}

/* =========================================================
   SEZIONE CERTIFICAZIONI
========================================================= */
.section-certifications {
    background: #1C1C1C;
    color: #fff;
}

.section-certifications .section-heading__eyebrow {
    color: rgba(255, 255, 255, 0.66);
}

.section-certifications__logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.certification-item {
    display: grid;
    place-items: center;
    min-height: 92px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* =========================================================
   SECTION SPLIT
========================================================= */
.section-split {
    display: grid;
    gap: 28px;
    align-items: center;
}

.section-split__media {
    position: relative;
    overflow: hidden;
    border-radius: 14px !important;
    border: 1px solid rgba(10, 10, 10, 0.12) !important;
    background: #fff !important;
    box-shadow: 0 18px 42px rgba(10, 10, 10, 0.14) !important;
}

.section-split__media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.section-split__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.section-split__content p + p {
    margin-top: 14px;
}

.section-experience__highlight {
    color: #0A0A0A;
    font-weight: 700;
}

/* =========================================================
   PREMIUM CAPABILITY
========================================================= */
.section-premium-capability {
    background: var(--color-light-grey);
}

/* =========================================================
   QUOTE SECTION
========================================================= */
.section-quote {
    border-top: 1px solid rgba(10, 10, 10, 0.06);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    background: #fff;
}

.section-quote__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-quote blockquote {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* =========================================================
   REVIEWS
========================================================= */
.section-reviews__summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.section-reviews__summary strong {
    font-size: 1.25rem;
}

.section-reviews__summary span {
    color: var(--color-text-muted);
}

.section-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.review-card {
    padding: 24px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.review-card__meta {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* =========================================================
   CTA GENERICA
========================================================= */
.section-cta {
    padding: 0;
    color: #fff;
    background: #0A0A0A;
}

.section-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 0;
    max-width: 760px;
    margin: 0 auto;
}

.section-cta__content .section-heading__eyebrow {
    color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0;
}

.site-footer__grid {
    display: grid;
    gap: 28px;
}

.site-footer__title {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1rem;
}

.site-footer__list {
    display: grid;
    gap: 8px;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */
.floating-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.96);
    color: #fff;
    box-shadow: 0 16px 38px rgba(10, 10, 10, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity var(--transition-base),
        visibility var(--transition-base),
        transform var(--transition-base);
}

.floating-whatsapp.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================================
   PAGINA DRIVER CENTER PIRELLI
========================================================= */

/* Hero dedicata pagina Driver Center Pirelli */
.page-hero.page-hero--driver-center {
    position: relative;
    padding: 140px 0 110px;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        url('../images/driver-center-pirelli/hero-driver-center.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.page-hero.page-hero--driver-center .page-hero.page-hero--driver-center__inner {
    max-width: 760px;
}

.page-hero.page-hero--driver-center .section-heading {
    margin-bottom: 28px;
}

.page-hero.page-hero--driver-center .section-heading span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f3c300;
}

.page-hero.page-hero--driver-center .section-heading h1 {
    margin: 0 0 18px;
    color: #ffffff;
}

.page-hero.page-hero--driver-center .section-heading p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero.page-hero--driver-center .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Sezione punti di forza */
.service-features.service-features--driver-center .section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.service-features.service-features--driver-center__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-features.service-features--driver-center .service-card {
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-features.service-features--driver-center .service-card h3 {
    margin: 0 0 14px;
}

.service-features.service-features--driver-center .service-card p {
    margin: 0;
}

/* CTA finale pagina Driver Center Pirelli */
.section-cta.section-cta--driver-center {
    position: relative;
    padding: 110px 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url('../images/driver-center-pirelli/cta-officina.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.section-cta.section-cta--driver-center .section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-cta.section-cta--driver-center .section-heading h2,
.section-cta.section-cta--driver-center .section-heading p,
.section-cta.section-cta--driver-center .section-heading span {
    color: #ffffff;
}

.section-cta.section-cta--driver-center .hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================================================
   RESPONSIVE - TABLET E MOBILE
========================================================= */
@media (max-width: 991px) {
    .page-hero.page-hero--driver-center {
        padding: 110px 0 90px;
    }

    .service-features.service-features--driver-center__grid {
        grid-template-columns: 1fr;
    }

    .section-cta.section-cta--driver-center {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .site-header__actions .btn {
        min-height: 44px;
        padding-inline: 14px;
        font-size: 0.88rem;
    }

    .section-hero__actions .btn,
    .section-cta__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .page-hero.page-hero--driver-center {
        padding: 90px 0 72px;
    }

    .section-cta.section-cta--driver-center {
        padding: 72px 0;
    }
}

@media (min-width: 768px) {
    .container {
        width: min(100% - 64px, var(--container-width));
    }

    .section {
        padding: 72px 0;
    }

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

    .site-header__toggle {
        order: 3;
    }

    .section-services__grid,
    .section-reviews__grid,
    .section-certifications__logos,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-split,
    .section-premium-capability .section-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 120px 0;
    }

    .site-header__toggle {
        display: none;
    }

    .site-header__nav {
        position: static;
        max-height: none;
        overflow: visible;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .site-header__menu {
        display: flex;
        justify-content: center;
        gap: 28px;
    }

    .site-header__menu a {
        padding: 0;
        border: 0;
        font-size: 0.95rem;
    }

    .section-services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .section-certifications__logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-reviews__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

/* =========================================================
   SERVICE PAGE REFINEMENT SYSTEM
   Rifiniture riusabili per pagine servizio come:
   Driver Center Pirelli, Tagliandi Auto, Noleggio Auto,
   Pneumatici e Cerchi
========================================================= */

/* =========================================================
   SECTION BACKGROUND VARIANTS
   Varianti leggere di sfondo per separare meglio i blocchi
   centrali senza alterare il layout generale
========================================================= */
.section--light {
    background: #f7f7f7;
}

.section--lighter {
    background: #fcfcfc;
}

/* =========================================================
   SERVICE SECTION SPACING
   Spaziatura dedicata ai blocchi centrali delle pagine
   servizio
========================================================= */
.section--service {
    padding: 84px 0;
}

@media (min-width: 1024px) {
    .section--service {
        padding: 104px 0;
    }
}

/* =========================================================
   SERVICE PAGE TYPOGRAPHY
   Rifinitura tipografica per eyebrow, titoli e paragrafi
   dei blocchi narrativi
========================================================= */
.section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7a400;
}

.section-split__content h2 {
    margin-bottom: 16px;
}

.section-split__content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.section-split__content p + p {
    margin-top: 14px;
}

/* =========================================================
   SERVICE HIGHLIGHT TEXT
   Riga conclusiva di rinforzo nei blocchi narrativi delle
   pagine servizio
========================================================= */
.section-service__highlight {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-black);
}

/* =========================================================
   SERVICE TRUST BAR
   Riga sintetica di punti di forza riusabile nelle pagine
   servizio
========================================================= */
.service-trustbar {
    padding: 26px 0;
    background: #ffffff;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.service-trustbar__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    text-align: center;
}

.service-trustbar__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-black);
}

.service-trustbar__item:not(:last-child)::after {
    content: "•";
    margin-left: 18px;
    color: rgba(10, 10, 10, 0.28);
}

@media (max-width: 767px) {
    .service-trustbar__list {
        gap: 8px 12px;
    }

    .service-trustbar__item {
        font-size: 11px;
        letter-spacing: 0.10em;
    }

    .service-trustbar__item:not(:last-child)::after {
        margin-left: 12px;
    }
}

/* =========================================================
   SERVICE CARDS REFINEMENT
   Migliora la resa visiva del blocco card centrale
========================================================= */
.section-services .section-heading,
.service-features.service-features--driver-center .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    text-align: center;
}

.section-services__grid,
.service-features.service-features--driver-center__grid {
    gap: 24px;
}

.service-card {
    position: relative;
    height: 100%;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(10, 10, 10, 0.04);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: transparent;
    transition: background-color var(--transition-base);
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 10, 10, 0.08);
    border-color: rgba(10, 10, 10, 0.10);
}

.service-card:hover::before,
.service-card:focus-within::before {
    background: var(--color-primary);
}

.service-card__link,
.service-features.service-features--driver-center .service-card {
    padding: 30px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.06rem;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* =========================================================
   SECTION SPLIT MEDIA REFINEMENT
   Rifinitura leggera delle immagini nei blocchi narrativi
========================================================= */
.section-split__media {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(10, 10, 10, 0.08);
}

.section-split__media img {
    transition: transform 0.4s ease;
}

.section-split__media:hover img {
    transform: scale(1.015);
}

/* =========================================================
   CTA FINAL SECTION TYPOGRAPHY
   Controllo larghezza titolo e testo descrittivo nella CTA
   finale
========================================================= */
.section-cta__content h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.section-cta__lead {
    margin-top: 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   CTA FINAL SECTION TITLE
   Titolo CTA finale su una sola riga desktop
========================================================= */
.section-cta__content h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .section-cta__content h2 {
        white-space: normal;
    }
}

.section-cta__content {
    text-align: center;
}

.section-cta__actions {
    margin-top: 26px;
}

/* =========================================================
   PREMIUM WOW EFFECTS
   Effetti sobri e professionali per aumentare percezione
   premium, profondità visiva e qualità del layout
========================================================= */

/* =========================================================
   CTA E BUTTONS
   Shine effect leggero e risposta hover più raffinata
========================================================= */
.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background-color var(--transition-base),
        border-color var(--transition-base),
        color var(--transition-base),
        filter var(--transition-base);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.14) 35%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0.14) 65%,
        transparent 100%
    );
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.btn:hover::after,
.btn:focus-visible::after {
    left: 155%;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.01);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 18px 36px rgba(255, 209, 0, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-secondary--light:hover,
.btn-secondary--light:focus-visible {
    box-shadow: 0 14px 28px rgba(255, 255, 255, 0.08);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.18);
}

/* =========================================================
   SECTION EYEBROW
   Micro-accent giallo elegante sotto le label di sezione
========================================================= */

.section:hover .section-heading__eyebrow::after,
.section:focus-within .section-heading__eyebrow::after {
    width: 62px;
}

/* =========================================================
   SECTION SPLIT MEDIA
   Hover cinematico leggero sulle immagini narrative
========================================================= */
.section-split__media {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.section-split__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.02) 28%,
            transparent 48%
        );
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.section-split__media img {
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
    transform-origin: center center;
}

.section-split__media:hover,
.section-split__media:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(10, 10, 10, 0.14);
    border-color: rgba(10, 10, 10, 0.12);
}

.section-split__media:hover::after,
.section-split__media:focus-within::after {
    opacity: 1;
}

.section-split__media:hover img,
.section-split__media:focus-within img {
    transform: scale(1.035);
    filter: contrast(1.03) brightness(1.02);
}

/* =========================================================
   SERVICE CARDS
   Glow tecnico soft e movimento leggero premium
========================================================= */
.service-card {
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base),
        background-color var(--transition-base);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 209, 0, 0.10) 0%,
        rgba(255, 209, 0, 0.04) 18%,
        transparent 48%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 10, 10, 0.10);
}

.service-card:hover::after,
.service-card:focus-within::after {
    opacity: 1;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:focus-within h3 {
    color: var(--color-black);
}

/* =========================================================
   TRUST BAR
   Maggiore percezione di sistema e precisione
========================================================= */
.service-trustbar {
    position: relative;
    overflow: hidden;
}

.service-trustbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 209, 0, 0.035) 18%,
            rgba(255, 209, 0, 0.05) 50%,
            rgba(255, 209, 0, 0.035) 82%,
            transparent 100%
        );
    pointer-events: none;
}

.service-trustbar__item {
    transition: transform 0.25s ease, color 0.25s ease;
}

.service-trustbar__item:hover {
    transform: translateY(-1px);
    color: var(--color-black);
}

/* =========================================================
   CTA FINAL SECTION
   Maggiore profondità e resa cinematica del blocco finale
========================================================= */
.section-cta {
    position: relative;
    overflow: hidden;
}

.section-cta__media img {
    transition: transform 0.8s ease, filter 0.8s ease;
}

.section-cta:hover .section-cta__media img,
.section-cta:focus-within .section-cta__media img {
    transform: scale(1.03);
    filter: contrast(1.04) brightness(1.02);
}

.section-cta__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.84) 0%,
            rgba(10, 10, 10, 0.68) 45%,
            rgba(10, 10, 10, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.24) 0%,
            rgba(10, 10, 10, 0.52) 100%
        );
}

.section-cta__content {
    position: relative;
}

.section-cta__content::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 209, 0, 0) 0%,
        rgba(255, 209, 0, 0.95) 50%,
        rgba(255, 209, 0, 0) 100%
    );
    opacity: 0.95;
}

/* =========================================================
   HERO
   Migliora profondità visiva della hero senza appesantire
========================================================= */
.page-hero.page-hero--driver-center {
    overflow: hidden;
}

.page-hero.page-hero--driver-center::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(255, 209, 0, 0.08) 0%,
            transparent 24%
        );
    pointer-events: none;
}

.page-hero.page-hero--driver-center .section-heading h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.page-hero.page-hero--driver-center .section-heading p {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
}

/* =========================================================
   REDUCED MOTION
   Rispetto preferenze utente per animazioni ridotte
========================================================= */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .btn::after,
    .section-heading__eyebrow::after,
    .section-split__media,
    .section-split__media::after,
    .section-split__media img,
    .service-card,
    .service-card::after,
    .service-trustbar__item,
    .section-cta__media img {
        transition: none !important;
    }

    .btn:hover,
    .btn:focus-visible,
    .section-split__media:hover,
    .section-split__media:focus-within,
    .service-card:hover,
    .service-card:focus-within,
    .service-trustbar__item:hover {
        transform: none !important;
    }
}

/* =========================================================
   EYEBROW SYSTEM REFACTOR
   Base neutra per tutte le eyebrow e variante accentata
   da usare solo nelle sezioni che devono avere il dettaglio
   grafico premium
========================================================= */

/* Base neutra */
.section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7a400;
    padding-bottom: 0;
    position: static;
}

/* Disattiva eventuali pseudo-elementi globali indesiderati */
.section-heading__eyebrow::after {
    content: none;
}

/* Variante accentata */
.section-heading__eyebrow--accent {
    position: relative;
    padding-bottom: 10px;
}

.section-heading__eyebrow--accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        rgba(255, 209, 0, 0.35) 100%
    );
    opacity: 0.95;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.section:hover .section-heading__eyebrow--accent::after,
.section:focus-within .section-heading__eyebrow--accent::after {
    width: 62px;
}

/* =========================================================
   EYEBROW ACCENT VARIANTS
   Varianti decorative per eyebrow:
   - left: linea laterale
   - center: linea centrata sotto il testo
========================================================= */

/* Base neutra */
.section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7a400;
    padding-bottom: 0;
    position: static;
}

/* Nessun pseudo-elemento di default */
.section-heading__eyebrow::after {
    content: none;
}

/* Variante laterale */
.section-heading__eyebrow--accent-left {
    position: relative;
    padding-bottom: 10px;
}

.section-heading__eyebrow--accent-left::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        rgba(255, 209, 0, 0.35) 100%
    );
    opacity: 0.95;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.section:hover .section-heading__eyebrow--accent-left::after,
.section:focus-within .section-heading__eyebrow--accent-left::after {
    width: 62px;
}

/* Variante centrata */
.section-heading__eyebrow--accent-center {
    position: relative;
    padding-bottom: 10px;
}

.section-heading__eyebrow--accent-center::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 209, 0, 0.35) 0%,
        var(--color-primary) 50%,
        rgba(255, 209, 0, 0.35) 100%
    );
    opacity: 0.95;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.section:hover .section-heading__eyebrow--accent-center::after,
.section:focus-within .section-heading__eyebrow--accent-center::after {
    width: 62px;
}

/* =========================================================
   EYEBROW ACCENT VARIANTS
   Varianti decorative per eyebrow:
   - left: linea laterale
   - center: linea centrata sotto il testo
========================================================= */

/* Base neutra */
.section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7a400;
    padding-bottom: 0;
    position: static;
}

/* Nessun pseudo-elemento di default */
.section-heading__eyebrow::after {
    content: none;
}

/* Variante laterale */
.section-heading__eyebrow--accent-left {
    position: relative;
    padding-bottom: 10px;
}

.section-heading__eyebrow--accent-left::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        rgba(255, 209, 0, 0.35) 100%
    );
    opacity: 0.95;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.section:hover .section-heading__eyebrow--accent-left::after,
.section:focus-within .section-heading__eyebrow--accent-left::after {
    width: 62px;
}

/* Variante centrata */
.section-heading__eyebrow--accent-center {
    position: relative;
    padding-bottom: 10px;
}

.section-heading__eyebrow--accent-center::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 209, 0, 0.35) 0%,
        var(--color-primary) 50%,
        rgba(255, 209, 0, 0.35) 100%
    );
    opacity: 0.95;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.section:hover .section-heading__eyebrow--accent-center::after,
.section:focus-within .section-heading__eyebrow--accent-center::after {
    width: 62px;
}

/* =========================================================
   HERO IMAGE SLOW ZOOM EFFECT
   Effetto cinematico lento e continuo
========================================================= */

.section-hero__media {
    overflow: hidden;
}

.section-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    animation: heroSlowZoom 18s ease-in-out infinite alternate;
}

/* Animazione zoom */
@keyframes heroSlowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

/* Fix rapido CTA finale: rimuove la linea decorativa sopra il contenuto */
.section-cta__content::before {
    content: none !important;
    display: none !important;
}

/* =========================================================
   PAGE HERO SYSTEM (compatibilità refactor servizi)
========================================================= */

.page-hero {
    position: relative;
    padding: 140px 0 110px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.page-hero__inner {
    max-width: 760px;
}

.page-hero .section-heading {
    margin-bottom: 28px;
}

.page-hero .section-heading span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f3c300;
}

.page-hero .section-heading h1 {
    margin: 0 0 18px;
    color: #ffffff;
}

.page-hero .section-heading p {
    margin: 0;
    max-width: 640px;
    color: rgba(255,255,255,0.88);
}

.page-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   SERVICE FEATURES GRID SYSTEM
========================================================= */

.service-features {
    padding-top: 60px;
    padding-bottom: 60px;
}

.service-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-features .service-card {
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-features .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.service-features .service-card h3 {
    margin: 0 0 14px;
}

.service-features .service-card p {
    margin: 0;
    color: var(--color-text-muted);
}


/* =========================================================
   DRIVER CENTER VARIANT (background CTA fix)
========================================================= */

.section-cta.section-cta--driver-center {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.section-cta.section-cta--driver-center .section-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.section-cta.section-cta--driver-center .section-cta__content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TRUST BAR FIX ALIGNMENT
========================================================= */

.service-trustbar {
    padding: 18px 0;
    background: #f6f7f8;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.service-trustbar__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
}


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

@media (max-width: 991px) {

    .page-hero {
        padding: 110px 0 90px;
    }

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

}

@media (max-width: 767px) {

    .page-hero {
        padding: 90px 0 72px;
    }

}

/* =========================================================
   SERVICE FEATURES ICONS – CARD TAGLIANDO AUTO

   Override dedicato per le icone SVG inline nella sezione
   "Controlli inclusi nel tagliando".

   Correzioni:
   - neutralizza il vecchio resize globale delle icone
   - aumenta dimensione reale degli SVG
   - alleggerisce lo stroke
   - migliora equilibrio tra cerchio e pittogramma
   ========================================================= */

.service-features--tagliandi-auto .service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #f6f0da;
    transition:
        transform var(--transition-base),
        background-color var(--transition-base);
    flex-shrink: 0;
}

.service-features--tagliandi-auto .service-card__icon svg {
    width: 46px !important;
    height: 46px !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
    overflow: visible;
}

.service-features--tagliandi-auto .service-card:hover .service-card__icon,
.service-features--tagliandi-auto .service-card:focus-within .service-card__icon {
    transform: translateY(-2px);
    background: #f3e7b8;
}

.service-features--tagliandi-auto .service-card .icon-circle {
    fill: transparent;
}

.service-features--tagliandi-auto .service-card .icon-stroke {
    stroke: #111111;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.service-features--tagliandi-auto .service-card .icon-stroke-light {
    stroke: #111111;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.service-features--tagliandi-auto .service-card .icon-accent-stroke {
    stroke: #f2c200;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.service-features--tagliandi-auto .service-card .icon-accent-stroke-light {
    stroke: #f2c200;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

/* =========================================================
   SERVICE FEATURES ICONS – CARD NOLEGGIO AUTO
   Override dedicato per mostrare correttamente gli SVG inline
   nella sezione card della pagina Noleggio Auto
========================================================= */

.service-features--noleggio-auto .service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #f6f0da;
    flex-shrink: 0;
}

.service-features--noleggio-auto .service-card__icon svg {
    width: 46px !important;
    height: 46px !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
    overflow: visible;
}

.service-features--noleggio-auto .service-card .icon-stroke {
    stroke: #111111;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vector-effect: non-scaling-stroke;
}

.service-features--noleggio-auto .service-card .icon-accent {
    stroke: #f2c200;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vector-effect: non-scaling-stroke;
}

.service-card svg {
    width: 30px;
    height: 30px;
}

/* =========================================================
   FORCE ICON SIZE – PNEUMATICI E CERCHI
   Override definitivo dimensione icone nelle card servizi
   ========================================================= */

/* Contenitore icona */
.service-features.service-features--pneumatici-cerchi .service-card__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    min-height: 78px !important;
    margin-bottom: 22px !important;
    border-radius: 999px !important;
    background: #f6f0da !important;
    flex-shrink: 0 !important;
}

/* SVG veri dentro il contenitore */
.service-features.service-features--pneumatici-cerchi .service-card__icon svg {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    display: block !important;
    overflow: visible !important;
    flex: 0 0 46px !important;
}

/* Cerchio guida SVG: invisibile */
.service-features.service-features--pneumatici-cerchi .icon-circle {
    fill: transparent !important;
    stroke: none !important;
}

/* Hover coerente */
.service-features.service-features--pneumatici-cerchi .service-card:hover .service-card__icon,
.service-features.service-features--pneumatici-cerchi .service-card:focus-within .service-card__icon {
    transform: translateY(-2px);
    background: #f3e7b8 !important;
}

/* Stroke principali */
.service-features.service-features--pneumatici-cerchi .icon-stroke {
    fill: none !important;
    stroke: #111111 !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Stroke secondari */
.service-features.service-features--pneumatici-cerchi .icon-stroke-light {
    fill: none !important;
    stroke: #111111 !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Accenti gialli */
.service-features.service-features--pneumatici-cerchi .icon-accent-stroke {
    fill: none !important;
    stroke: #f2c200 !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.service-features.service-features--pneumatici-cerchi .icon-accent-stroke-light {
    fill: none !important;
    stroke: #f2c200 !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* SVG veri dentro il contenitore */
.service-features.service-features--pneumatici-cerchi .service-card__icon svg {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    display: block !important;
    overflow: visible !important;
    flex: 0 0 46px !important;
}

/* Cerchio guida SVG: deve restare invisibile */
.service-features.service-features--pneumatici-cerchi .icon-circle {
    fill: transparent !important;
    stroke: none !important;
}

/* =========================================================
   PAGINA CONTATTI
   Layout info + form Contact Form 7
   ========================================================= */

/* Hero contatti */
.page-hero--contatti {
    background-position: center;
}


/* Intro centrata */
.section-intro__lead {
    max-width: 760px;
    margin: 0 auto;
}


/* Layout contatti */
.contact-section .container {
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}


/* Card base */
.contact-card {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.contact-card .section-heading {
    margin-bottom: 22px;
}


/* Colonna info */
.contact-info-list {
    display: grid;
    gap: 20px;
}

.contact-info-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
}

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

.contact-card__highlight {
    margin-top: 28px;
    font-weight: 600;
    color: var(--color-text);
}


/* Form Contact Form 7 */
.contact-form-wrapper .wpcf7 {
    width: 100%;
}

.contact-form-wrapper .wpcf7 form {
    display: grid;
    gap: 18px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: #f2c200;
    box-shadow: 0 0 0 3px rgba(242, 194, 0, 0.14);
}

.contact-form-wrapper input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #f2c200;
    color: #111111;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 12px 0 0;
}


/* Responsive */
@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 24px;
        border-radius: 20px;
    }
}

/* Spaziatura tra i campi Contact Form 7 */
.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 10px;
}

/* Spazio maggiore prima del bottone submit */
.contact-form-wrapper .wpcf7-form p:last-child {
    margin-top: 8px;
}

/* =========================================================

/* =========================================================
   PAGINA CONTATTI
   Layout hero, info, form e mappa finale
   ========================================================= */

/* Hero contatti */
.page-hero--contatti {
    background-position: center;
}

/* Intro centrata */
.section-intro__lead {
    max-width: 760px;
    margin: 0 auto;
}

/* Layout blocco contatti */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}

/* Card base */
.contact-card {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.contact-card .section-heading {
    margin-bottom: 22px;
}

/* Colonna info */
.contact-info-list {
    display: grid;
    gap: 20px;
}

.contact-info-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
}

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

.contact-card__highlight {
    margin-top: 28px;
    font-weight: 600;
    color: var(--color-text);
}

/* Form Contact Form 7 */
.contact-form-wrapper .wpcf7 {
    width: 100%;
}

.contact-form-wrapper .wpcf7 form {
    display: block;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0 0 18px;
}

.contact-form-wrapper .wpcf7-form p:last-child {
    margin-bottom: 0;
    margin-top: 10px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: #f2c200;
    box-shadow: 0 0 0 3px rgba(242, 194, 0, 0.14);
}

.contact-form-wrapper input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #f2c200;
    color: #111111;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 12px 0 0;
}

/* =========================================================
   DIVISORE ELEGANTE PRIMA DELLA MAPPA
   ========================================================= */

.contact-divider-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, #f6f7f8 0%, #ffffff 100%);
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.contact-divider__line {
    flex: 1 1 auto;
    max-width: 220px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.12) 20%,
        rgba(0,0,0,0.12) 80%,
        rgba(0,0,0,0) 100%
    );
}

.contact-divider__badge {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #f2c200;
    box-shadow: 0 0 0 6px rgba(242, 194, 0, 0.14);
    flex-shrink: 0;
}

/* =========================================================
   MAPPA FULL WIDTH
   ========================================================= */

.contact-map-section {
    padding: 0;
    margin: 0;
}

.contact-map-section__embed {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.contact-map-section__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(0.04);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-section__embed {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-map-section__embed {
        height: 340px;
    }

    .contact-divider__line {
        max-width: 90px;
    }
}

/* =========================================================
   FOOTER PREMIUM
   ========================================================= */

.site-footer {
    background: #050505;
    color: #ffffff;
    padding: 64px 0 0;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base), opacity var(--transition-base);
}

.site-footer a:hover {
    color: #f2c200;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.15fr .8fr;
    gap: 42px;
    align-items: start;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__title {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.site-footer__text {
    margin: 0;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
}

.site-footer__list,
.site-footer__features,
.site-footer__hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__list li,
.site-footer__features li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}

.site-footer__features {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.site-footer__features li {
    position: relative;
    padding-left: 18px;
}

.site-footer__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f2c200;
}

/* Orari premium: due colonne, senza andare a capo */
.site-footer__hours {
    display: grid;
    gap: 10px;
}

.site-footer__hours li {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 30px;
    color: rgba(255,255,255,0.82);
}

.site-footer__hours li span {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.site-footer__hours li strong {
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    white-space: nowrap;
}

/* Bottom bar */
.site-footer__bottom {
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0 24px;
}

.site-footer__copyright {
    margin: 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.58);
}

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

@media (max-width: 1180px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 48px;
    }

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

    .site-footer__title {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .site-footer__hours li {
        grid-template-columns: 96px 1fr;
        gap: 12px;
    }

    .site-footer__hours li strong {
        white-space: normal;
    }
}

/* =========================================================
   STICKY CALL BAR – SOLO MOBILE
   ========================================================= */

.sticky-callbar {
    display: none;
}

@media (max-width: 768px) {

    .sticky-callbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #111111;
        padding: 14px 18px;
        justify-content: center;
        z-index: 9999;
        box-shadow: 0 -4px 18px rgba(0,0,0,.35);
    }

    .sticky-callbar__button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 420px;
        background: #f2c200;
        color: #111111;
        font-weight: 700;
        font-size: 17px;
        padding: 16px 32px;
        border-radius: 12px;
        text-decoration: none;
        letter-spacing: .3px;
        animation: pulseCall 1.8s infinite;
    }

    @keyframes pulseCall {
        0% {
            box-shadow: 0 0 0 0 rgba(242,194,0,.65);
        }
        70% {
            box-shadow: 0 0 0 18px rgba(242,194,0,0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(242,194,0,0);
        }
    }

    body {
        padding-bottom: 82px;
    }
}

/* =========================================================
   GALLERY SUPERCAR – PNEUMATICI E CERCHI
   ========================================================= */

.supercar-gallery-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.supercar-gallery-section .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}

.supercar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.supercar-gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.06),
        0 2px 6px rgba(0,0,0,0.04);
    aspect-ratio: 4 / 3;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.supercar-gallery-card__link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.supercar-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform .6s cubic-bezier(.2,.6,.2,1);
}

.supercar-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.10),
        0 6px 14px rgba(0,0,0,0.06);
}

.supercar-gallery-card:hover img {
    transform: scale(1.04);
}

.supercar-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 65%,
        rgba(0,0,0,0.12)
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.supercar-gallery-card:hover::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .supercar-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .supercar-gallery-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .supercar-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .supercar-gallery-card {
        border-radius: 18px;
    }
}

/* =========================================================
   LIGHTBOX GALLERY
   ========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__content {
    position: relative;
    max-width: min(1200px, 88vw);
    max-height: 84vh;
}

.gallery-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 84vh;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    border: none;
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .2s ease, transform .2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    background: rgba(255,255,255,0.24);
}

.gallery-lightbox__close {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-size: 34px;
    line-height: 1;
}

.gallery-lightbox__nav--prev {
    left: 24px;
}

.gallery-lightbox__nav--next {
    right: 24px;
}

@media (max-width: 767px) {
    .gallery-lightbox {
        padding: 20px;
    }

    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .gallery-lightbox__nav--prev {
        left: 10px;
    }

    .gallery-lightbox__nav--next {
        right: 10px;
    }

    .gallery-lightbox__close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}

/* =========================================================
   DRIVER CENTER PAGE – CTA WHATSAPP DISABILITATA
   CTA WhatsApp nascosta volutamente nella hero per
   mantenere focus su prenotazione e contatto diretto.
   Il markup resta disponibile per eventuale riattivazione.
   ========================================================= */

.btn-whatsapp--hidden {
    display: none;
}

/* =========================================================
   PRIVACY POLICY + COOKIE POLICY
   ========================================================= */

.legal-page {
    padding: 72px 0 88px;
    background: #f5f5f5;
}

.legal-page__container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page__card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    padding: 48px 52px;
}

.legal-page__header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececec;
}

.legal-page__title {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.02em;
}

.legal-page__updated {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.legal-page__content {
    color: #222222;
    font-size: 17px;
    line-height: 1.85;
}

.legal-page__content > *:first-child {
    margin-top: 0;
}

.legal-page__content > *:last-child {
    margin-bottom: 0;
}

.legal-page__content p {
    margin: 0 0 18px;
    color: #2b2b2b;
}

.legal-page__content strong {
    color: #111111;
    font-weight: 700;
}

.legal-page__content h2 {
    margin: 42px 0 16px;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.02em;
}

.legal-page__content h3 {
    margin: 28px 0 12px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #1c1c1c;
}

.legal-page__content ul,
.legal-page__content ol {
    margin: 0 0 22px 24px;
    padding: 0;
}

.legal-page__content li {
    margin-bottom: 10px;
    color: #2b2b2b;
}

.legal-page__content a {
    color: #111111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.legal-page__content a:hover,
.legal-page__content a:focus {
    color: #d4a900;
}

.legal-page__content hr {
    border: 0;
    border-top: 1px solid #ececec;
    margin: 32px 0;
}

.legal-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

.legal-page__content table th,
.legal-page__content table td {
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.legal-page__content table th {
    background: #fafafa;
    font-weight: 700;
    color: #111111;
}

.legal-page__content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: #fafafa;
    border-left: 4px solid #f2c300;
    border-radius: 10px;
    color: #333333;
}

.legal-page__intro {
    font-size: 18px;
    color: #1f1f1f;
}

@media (max-width: 991px) {
    .legal-page {
        padding: 56px 0 72px;
    }

    .legal-page__card {
        padding: 38px 32px;
        border-radius: 16px;
    }

    .legal-page__title {
        font-size: 38px;
    }

    .legal-page__content {
        font-size: 16px;
        line-height: 1.8;
    }

    .legal-page__content h2 {
        font-size: 28px;
    }

    .legal-page__content h3 {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .legal-page {
        padding: 42px 0 56px;
    }

    .legal-page__container {
        padding: 0 16px;
    }

    .legal-page__card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .legal-page__header {
        margin-bottom: 28px;
        padding-bottom: 18px;
    }

    .legal-page__title {
        font-size: 31px;
        line-height: 1.12;
    }

    .legal-page__updated {
        font-size: 14px;
    }

    .legal-page__content {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-page__content h2 {
        margin: 32px 0 12px;
        font-size: 24px;
    }

    .legal-page__content h3 {
        margin: 22px 0 10px;
        font-size: 19px;
    }

    .legal-page__content ul,
    .legal-page__content ol {
        margin-left: 20px;
    }

    .legal-page__content table,
    .legal-page__content tbody,
    .legal-page__content tr,
    .legal-page__content td,
    .legal-page__content th {
        display: block;
        width: 100%;
    }

    .legal-page__content table thead {
        display: none;
    }

    .legal-page__content table tr {
        margin-bottom: 14px;
        border: 1px solid #e5e5e5;
    }

    .legal-page__content table td,
    .legal-page__content table th {
        border: 0;
        border-bottom: 1px solid #ededed;
    }

    .legal-page__content table td:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   NOLEGGIO AUTO – BRAND FLOTTE E NOLEGGIO
   Sezione loghi partner con card premium e bordo soft.
   Inserita tra gestione flotte e servizi inclusi.
   ========================================================= */

.rental-brands-section .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;
}

.rental-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.rental-brand-card {
    margin: 0;
    padding: 22px 20px;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

.rental-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(242, 194, 0, 0.45),
        rgba(242, 194, 0, 0.06)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.rental-brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 194, 0, 0.22);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

.rental-brand-card img {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.01);
}

/* Tablet */
@media (max-width: 1100px) {
    .rental-brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 767px) {
    .rental-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .rental-brand-card {
        min-height: 108px;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .rental-brand-card::before {
        border-radius: 18px;
    }

    .rental-brand-card img {
        max-height: 40px;
    }
}

/* =========================================================
   PNEUMATICI E CERCHI – BRAND CERCHI PREMIUM
   Layout ottimizzato con ultima riga centrata automaticamente
   ========================================================= */

.wheel-brands-section .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;
}

/* Layout principale */
.wheel-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* Card logo */
.wheel-brand-card {
    flex: 0 0 calc(25% - 14px);
    max-width: calc(25% - 14px);

    margin: 0;
    padding: 22px 20px;
    min-height: 128px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);

    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);

    position: relative;
    overflow: hidden;
}

/* bordo premium giallo soft */
.wheel-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(242, 194, 0, 0.45),
        rgba(242, 194, 0, 0.06)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* hover */
.wheel-brand-card:hover {
    transform: translateY(-4px);

    border-color: rgba(242, 194, 0, 0.22);

    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

/* immagini loghi */
.wheel-brand-card img {
    display: block;
    max-width: 100%;
    max-height: 48px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: saturate(1.02) contrast(1.01);
}

/* Tablet */
@media (max-width: 1100px) {

    .wheel-brand-card {
        flex: 0 0 calc(33.333% - 12px);
        max-width: calc(33.333% - 12px);
    }

}

/* Mobile */
@media (max-width: 767px) {

    .wheel-brands-grid {
        gap: 14px;
    }

    .wheel-brand-card {
        flex: 0 0 calc(50% - 7px);
        max-width: calc(50% - 7px);

        min-height: 108px;

        padding: 18px 16px;

        border-radius: 18px;
    }

    .wheel-brand-card::before {
        border-radius: 18px;
    }

    .wheel-brand-card img {
        max-height: 38px;
    }

}

/* Checkbox GDPR Contact Form 7 */
.wpcf7-acceptance {
    display: block;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
}

.wpcf7-acceptance input {
    margin-right: 8px;
    transform: translateY(1px);
}

/* =========================================================
   GOOGLE REVIEWS WIDGET
   Integrazione layout recensioni Google in homepage
========================================================= */
.section-reviews__widget {
    margin-top: 28px;
}

.section-reviews__widget iframe,
.section-reviews__widget .ti-widget {
    width: 100%;
}

.section-reviews__widget .ti-widget {
    max-width: 100%;
}