/* =========================
   RESET / BASE
========================= */
:root {
    
  --color-accent: #e9521d;
  --color-accent-soft: #f59a6b;
  --color-accent-dark: #e9521d;
  --color-bg: #f3f3f1;
  --color-surface: #ffffff;
  --color-surface-muted: #ececeb;
  --color-text: #1f1f1f;
  --color-text-soft: #6f6f73;
  --color-border: #d9d9d7;
  --color-footer: #1d1d1f;
  --color-footer-border: rgba(255, 255, 255, 0.12);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.08);

  --container: 1180px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.body-shell {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

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

.text-accent {
  color: var(--color-accent);
}

/* =========================
   REUSABLE UI
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 34px;
  padding: 0.45rem 0.95rem;
  font-size: 0.84rem;
}

.btn-xs {
  min-height: 30px;
  padding: 0.35rem 0.8rem;
  font-size: 0.76rem;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}

.btn-outline-accent {
  border-color: rgba(240, 90, 31, 0.35);
  color: var(--color-accent);
  background: #fff;
}

.btn-light {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e7e7e5;
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section-title,
.section h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.section-label--on-image {
  margin-bottom: 1.5rem;
}

.section-label--no-margin {
  margin-bottom: 1rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #242424;
  color: #f58e63;
  font-size: 0.68rem;
  font-weight: 700;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  background: #ededeb;
  color: #434343;
  font-size: 0.78rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  color: currentColor;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.45rem;
  border-radius: 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  background: currentColor;
  color: #fff;
}

.inline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
  margin-inline: 0.15rem;
}

.inline-brand .brand-mark {
  font-size: 1.45rem;
  color: var(--color-accent);
}

.inline-brand .brand-text strong {
  color: var(--color-text);
  font-size: 0.95em;
}

.inline-brand .brand-text span {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72em;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--color-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .brand {
  color: #fff;
}

.site-header .brand-text strong {
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: #5d5d5d;
  font-size: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
}



.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  background: #e6e6e6;
  border-radius: 999px;
  padding: 4px;
  width: 90px;
  height: 40px;
}

.lang-option {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.lang-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* slider nero */
.lang-toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #1f1f1f;
  border-radius: 999px;
  transition: 0.3s;
  z-index: 1;
}

/* stato ENG */
.lang-switch.eng .lang-toggle-slider {
  transform: translateX(100%);
}

.slider {
  position:absolute;
  cursor:pointer;
  background:#ccc;
  border-radius:20px;
  top:0;
  left:0;
  right:0;
  bottom:0;
  transition:.3s;
}

.slider:before {
  position:absolute;
  content:"";
  height:16px;
  width:16px;
  left:3px;
  bottom:3px;
  background:white;
  border-radius:50%;
  transition:.3s;
}

input:checked + .slider {
  background:#ff4b00;
}

input:checked + .slider:before {
  transform:translateX(20px);
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  background: var(--color-accent);
  color: #fff;
  min-height: 720px;
  padding-top: 6.75rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.en{
  display:none;
}

body.eng .it{
  display:none;
}

body.eng .en{
  display:block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  min-height: 620px;
}

.hero-copy {
  max-width: 520px;
  padding-bottom: 2rem;
  z-index: 1;
}

.hero-eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0.8rem 1.25rem;
  border-radius: 1rem;
  background: rgba(19, 19, 19, 0.8);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: var(--shadow-soft);
}

.hero-supporting {
  max-width: 360px;
  margin: 1rem 0 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.hero h1 {
  max-width: 520px;
  margin: 0 0 2rem;
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-scroll {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2em;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;   /* centro verticale */
  justify-content: center; /* centro orizzontale */
}

.hero-circle {
  position: absolute;
  vertical-align: middle;
  bottom: -25em;
}

.hero-circle img {
  display: block;
}

.hero-truck {
  position: absolute;
  width: min(1240px, 100%);
  bottom: -15em;
}

.hero-truck img {
  display: block;
}

/* =========================
   ABOUT
========================= */
.section-about {
  padding-bottom: 5rem;
  background: var(--color-bg);
  background-image: url("../img/background-aboutus.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-lead {
  max-width: 1000px;
  margin-top: 5rem;
  margin-bottom: 5rem;
  font-size: clamp(1.8rem, 2vw, 3rem);
  line-height: 1.45;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.about-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* =========================
   SERVICES
========================= */
.section-services {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 3.75rem;
}

.section-services .section-title {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 2vw, 2.8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface-muted);
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem 1.25rem;
  min-height: 190px;
  overflow: hidden;
}

.service-card--featured {
  display: flex;
  flex-direction: column;
  background: var(--color-accent);
  color: #fff;
  grid-row: span 2;
  min-height: 390px;
  padding: 1.9rem 1.5rem 1.5rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.9rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.service-card:nth-child(1) h3 {
  font-size: 2.5rem;
  margin: 0 0 2.1rem;
}

.service-card:not(.service-card--featured) h3 {
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: inherit;
  max-width: 31ch;
}

.service-card:nth-child(1) p {
  font-size: 1.10rem;
}

.service-card:not(.service-card--featured) p {
  color: var(--color-text-soft);
}

.service-content {
  margin-top: auto;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 3.25rem;
  margin-left: auto;
}

.service-card:nth-child(1) .service-icon{
  width: 9rem;
}

/* =========================
   STEPS
========================= */
.section-steps {
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.steps-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.steps-intro p {
  max-width: 36ch;
  margin: 0 0 2rem;
  color: var(--color-text-soft);
}

.steps-image {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #ddd;
  height: 330px;
}

.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-list {
  display: grid;
}

.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.05rem 0 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.step-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.step-index {
  font-size: 0.9rem;
  color: #8a8a8f;
  padding-top: 0.25rem;
}

.step-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.step-item p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  max-width: 44ch;
}

/* =========================
   PARTNER CTA
========================= */
.section-partner {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-image: url(../img/background_partner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.section-partner .container {
  position: relative;
  min-height: 560px;
  z-index: 2;
}

.partner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card {
  position: relative;
  display: block;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: 760px;
  margin: 4rem auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
  padding: 4rem;
}

.partner-copy h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 2.1vw, 2.8rem);
  text-align: center;
}

.partner-copy a {
  display: block;
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

.partner-copy a.en {
  display: none;
}

body.eng .partner-copy a.en {
  display: block;
}

.partner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
}

.partner-bottom p {
  width: 80%;
  margin: 1.4rem 0 0;
  max-width: 42ch;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.partner-mark {
  width: 20%;
  font-size: 7rem;
  color: var(--color-accent);
  opacity: 0.9;
  line-height: 1;
  font-weight: 800;
}

/* =========================
   LANGUAGES
========================= */
.section-languages {
  padding: 0;
}

.languages-top {
  background: var(--color-accent);
  color: #fff;
  padding: 3rem 0 2.7rem;
}

.languages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.languages-top h2 {
  font-size: clamp(2rem, 2.2vw, 3rem);
  margin: 0;
  line-height: 1.1;
}

.languages-top p {
  margin: 3.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.lang-bar{
  overflow:hidden;
  background:#fff;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.lang-track{
  display:flex;
  gap:40px;
  white-space:nowrap;
  animation:scrollLang 20s linear infinite;
  padding:12px 0;
  margin: 0 auto;
}

.lang-track span{
  font-weight:500;
  font-size:14px;
}

@keyframes scrollLang{

  0%{
    transform:translateX(0);
  }

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

}




/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  background: var(--color-footer);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.brand--footer {
  color: #fff;
}

.footer-top {
  position: relative;
  padding-bottom: 4rem;
  min-height: 320px;
}

.footer-claim {
  max-width: 620px;
  margin: 4rem 0 0;
  font-size: clamp(2rem, 2.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.95);
}

.footer-road {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 180px;
}

.footer-road img {
  height: 100%;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-footer-border);
  border-bottom: 1px solid var(--color-footer-border);
}

.footer-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.footer-contact {
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.03em;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.footer-buttons {
  display: flex;
  gap: 0.5rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1120px) {
  .hero-grid,
  .steps-layout,
  .languages-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-circle {
    width: 480px;
    height: 480px;
    right: 50%;
    transform: translateX(50%);
    z-index: 0;
  }

  .hero-truck {
    right: 50%;
    transform: translateX(50%);
    width: min(540px, 100%);
  }

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

  .service-card--featured {
    grid-row: auto;
    min-height: 260px;
    grid-column: span 2;
  }

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

  .partner-mark {
    font-size: 4.5rem;
  }

  .footer-top {
    min-height: auto;
  }

  .footer-road {
    position: static;
    margin: 2rem 0 0 auto;
  }
}

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

  .site-header {
    position: relative;
    background: var(--color-accent);
    padding: 0.9rem 0 0;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .header-pill.is-phone {
    order: -1;
  }

  .hero {
    padding-top: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .hero-phone {
    font-size: 1.45rem;
    min-height: 52px;
  }

  .hero h1 {
    font-size: 2.45rem;
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 250px;
  }

  .about-lead {
    font-size: 1.55rem;
  }

  .about-cta {
    justify-content: flex-start;
  }

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

  .service-card--featured {
    grid-column: auto;
    min-height: 220px;
  }

  .service-card {
    min-height: 220px;
  }

  .service-card--featured {
    min-height: 260px;
  }

  .step-item {
    grid-template-columns: 40px 1fr;
  }

  .step-item h3 {
    font-size: 1.35rem;
  }

  .partner-bg {
    inset: 2rem 0 0 0;
    min-height: 460px;
  }

  .partner-card {
    margin-top: 5rem;
    padding: 1.5rem;
  }

  .languages-list {
    gap: 1rem 1.4rem;
    font-size: 0.88rem;
  }

  .footer-claim {
    margin-top: 2.5rem;
    font-size: 1.8rem;
  }

  .footer-contact {
    font-size: 1.15rem;
  }

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

/* ===== FIX LANG BAR INFINITE LOOP ===== */
.lang-bar {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.lang-track {
  display: flex;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  animation: scrollLang 22s linear infinite;
  padding: 0;
  margin: 0;
  will-change: transform;
}

.lang-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  flex-shrink: 0;
  padding: 12px 0;
}

.lang-group span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.5rem;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
}

.lang-group img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
}

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

  to {
    transform: translateX(-100vw);
  }
}

@media (max-width: 760px) {
  .lang-group {
    min-width: 180vw;
  }

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

    to {
      transform: translateX(-180vw);
    }
  }
}


/* =========================================================
   RESPONSIVE COMPLETE FIX + HAMBURGER MENU
========================================================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  z-index: 120;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.85rem 0;
    background: var(--color-accent);
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .brand img {
    max-width: 250px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 100;
  }

  body.menu-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-actions .btn,
  .header-actions .header-pill {
    width: 100%;
    justify-content: center;
    color: var(--color-text);
    border-color: rgba(0, 0, 0, 0.08);
    background: #f3f3f1;
  }

  .header-actions .lang-switch {
    align-self: center;
    margin-top: 0.25rem;
  }

  .hero {
    padding-top: 7.5rem;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .hero-phone {
    font-size: clamp(1.35rem, 6vw, 2rem);
    width: fit-content;
    max-width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-circle {
    width: min(420px, 90vw);
    right: 50%;
    transform: translateX(50%);
  }

  .hero-truck {
    width: min(520px, 110vw);
    right: 50%;
    transform: translateX(50%);
  }

  .about-lead {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

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

  .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

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

  .steps-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .section-partner .container {
    min-height: auto;
  }

  .partner-card {
    max-width: 100%;
    padding: 2.5rem;
  }

  .partner-bottom {
    align-items: center;
  }

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

  .languages-top p {
    margin-top: 1rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

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

  .section {
    padding: 3.25rem 0;
  }

  .site-header {
    position: fixed;
    padding: 0.8rem 0;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .header-actions {
    width: auto;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 7rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .hero-supporting {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 260px;
  }

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

  .service-card,
  .service-card--featured {
    min-height: 240px;
  }

  .service-card:nth-child(1) h3 {
    font-size: 2.15rem;
  }

  .step-item {
    grid-template-columns: 38px 1fr;
  }

  .section-partner {
    padding-top: 3rem;
    padding-bottom: 4rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }

  .partner-card {
    margin: 3rem auto 0;
    padding: 1.5rem;
    border-radius: 1.2rem;
  }

  .partner-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  .partner-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .partner-bottom p {
    width: 100%;
    max-width: none;
  }

  .partner-mark {
    width: 100%;
    max-width: 120px;
    align-self: flex-end;
  }

  .languages-top {
    padding: 2.5rem 0;
  }

  .languages-top h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-top {
    min-height: auto;
  }

  .footer-road {
    position: static;
    margin: 2rem 0 0 auto;
  }

  .footer-contact {
    font-size: 1.1rem;
  }

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

@media (max-width: 480px) {
  .site-header .brand img {
    max-width: 250px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    top: 66px;
  }

  .hero-phone {
    width: 100%;
    justify-content: center;
    font-size: 1.25rem;
  }

  .btn,
  .partner-copy a {
    width: 100%;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 5.5rem;
  }

  .partner-card {
    padding: 1.25rem;
  }

  .lang-switch {
    width: 82px;
    height: 38px;
  }
}


/* =========================================================
   HERO RESPONSIVE FIX DEFINITIVO
   Desktop: layout originale.
   Tablet: camion resta a destra e leggermente croppato.
   Mobile: camion tra testo e titolo, titolo con margini container.
========================================================= */

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

/* DESKTOP / LARGE */
@media (min-width: 1121px) {
  .hero {
    min-height: 720px;
    padding-top: 6.75rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    min-height: 620px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding-bottom: 2rem;
  }

  .hero-visual {
    position: relative;
    min-height: 620px;
    width: 100%;
  }

  .hero-circle {
    position: absolute;
    width: 560px;
    right: -90px;
    top: 50%;
    transform: translateY(-45%);
    z-index: 1;
  }

  .hero-truck {
    position: absolute;
    width: 760px;
    max-width: none;
    right: -170px;
    top: 50%;
    transform: translateY(-43%);
    z-index: 2;
  }
}

/* TABLET / SMALL DESKTOP: non mandare il camion sotto al testo */
@media (min-width: 761px) and (max-width: 1120px) {
  .hero {
    min-height: 680px;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    min-height: 560px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 500px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 5.6vw, 4rem);
  }

  .hero-phone {
    font-size: clamp(1.45rem, 3vw, 2rem);
  }

  .hero-visual {
    position: relative;
    min-height: 560px;
    width: 100%;
    overflow: visible;
  }

  .hero-circle {
    position: absolute;
    width: 500px;
    height: auto;
    right: -180px;
    top: 50%;
    transform: translateY(-45%);
    z-index: 1;
  }

  .hero-truck {
    position: absolute;
    width: 720px;
    max-width: none;
    right: -310px;
    top: 50%;
    transform: translateY(-42%);
    z-index: 2;
  }
}

/* MOBILE */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
    overflow: hidden;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }

  .hero-copy {
    display: contents;
  }

  .hero-eyebrow {
    order: 1;
  }

  .hero-phone {
    order: 2;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    min-height: 52px;
  }

  .hero-supporting {
    order: 3;
    max-width: 100%;
  }

  .hero-visual {
    order: 4;
    position: relative;
    width: 100%;
    height: 260px;
    min-height: 260px;
    margin-top: 1rem;
    overflow: visible;
  }

  .hero-circle {
    position: absolute;
    width: 310px;
    height: auto;
    right: -90px;
    bottom: 0;
    top: auto;
    transform: none;
    opacity: 0.45;
    z-index: 1;
  }

  .hero-truck {
    position: absolute;
    width: 520px;
    max-width: none;
    right: -185px;
    bottom: 0;
    top: auto;
    transform: none;
    z-index: 2;
  }

  .hero h1 {
    order: 5;
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0 1rem;
    padding: 0;
    font-size: clamp(2.25rem, 10.8vw, 3.2rem);
    position: relative;
    z-index: 3;
  }

  .hero-scroll {
    order: 6;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero-truck {
    width: 500px;
    right: -205px;
  }

  .hero-circle {
    width: 290px;
    right: -105px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
  }
}

@media (max-width: 760px) {
  .section-languages {
    padding: 0 !important;
  }

  .section-languages .languages-top {
    padding: 3rem 0 2.7rem;
  }
}